diff options
author | Sebastian Ott <sebott@linux.vnet.ibm.com> | 2016-04-08 17:55:19 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2018-07-04 08:35:58 +0200 |
commit | 0ac942826b3d900b7054f71bb6a15428441458d2 (patch) | |
tree | 23fb1c886c4bc60ca7721129fcc6a6ed4621203d /arch/s390/include/asm/pci.h | |
parent | s390/decompressor: support extra debug flags (diff) | |
download | linux-0ac942826b3d900b7054f71bb6a15428441458d2.tar.xz linux-0ac942826b3d900b7054f71bb6a15428441458d2.zip |
s390/pci: add fmt3 fmb
Add support for format 3 function measurement blocks.
Signed-off-by: Sebastian Ott <sebott@linux.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/pci.h')
-rw-r--r-- | arch/s390/include/asm/pci.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/s390/include/asm/pci.h b/arch/s390/include/asm/pci.h index 94f8db468c9b..10fe982f2b4b 100644 --- a/arch/s390/include/asm/pci.h +++ b/arch/s390/include/asm/pci.h @@ -51,6 +51,10 @@ struct zpci_fmb_fmt2 { u64 max_work_units; }; +struct zpci_fmb_fmt3 { + u64 tx_bytes; +}; + struct zpci_fmb { u32 format : 8; u32 fmt_ind : 24; @@ -66,6 +70,7 @@ struct zpci_fmb { struct zpci_fmb_fmt0 fmt0; struct zpci_fmb_fmt1 fmt1; struct zpci_fmb_fmt2 fmt2; + struct zpci_fmb_fmt3 fmt3; }; } __packed __aligned(128); |