diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-02-23 00:40:54 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-02-23 00:40:54 +0000 |
commit | 529c593ece216e4aaffd36bd940cb94f1fa63129 (patch) | |
tree | 78f1c0b805f5656aa7b0417a043c5346f700a2cf /include/linux/sonet.h | |
parent | 0bd079751d25808d1972baee5c4eaa1db2227257 (diff) |
Merge with 2.3.43. I did ignore all modifications to the qlogicisp.c
driver due to the Origin A64 hacks.
Diffstat (limited to 'include/linux/sonet.h')
-rw-r--r-- | include/linux/sonet.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/include/linux/sonet.h b/include/linux/sonet.h index d4e12b8f1..c2307389c 100644 --- a/include/linux/sonet.h +++ b/include/linux/sonet.h @@ -1,22 +1,22 @@ /* sonet.h - SONET/SHD physical layer control */ -/* Written 1995 by Werner Almesberger, EPFL LRC */ +/* Written 1995-1999 by Werner Almesberger, EPFL LRC/ICA */ #ifndef LINUX_SONET_H #define LINUX_SONET_H struct sonet_stats { - long section_bip; /* section parity errors (B1) */ - long line_bip; /* line parity errors (B2) */ - long path_bip; /* path parity errors (B3) */ - long line_febe; /* line parity errors at remote */ - long path_febe; /* path parity errors at remote */ - long corr_hcs; /* correctable header errors */ - long uncorr_hcs; /* uncorrectable header errors */ - long tx_cells; /* cells sent */ - long rx_cells; /* cells received */ -}; + int section_bip; /* section parity errors (B1) */ + int line_bip; /* line parity errors (B2) */ + int path_bip; /* path parity errors (B3) */ + int line_febe; /* line parity errors at remote */ + int path_febe; /* path parity errors at remote */ + int corr_hcs; /* correctable header errors */ + int uncorr_hcs; /* uncorrectable header errors */ + int tx_cells; /* cells sent */ + int rx_cells; /* cells received */ +} __attribute__ ((packed)); #define SONET_GETSTAT _IOR('a',ATMIOC_PHYTYP,struct sonet_stats) /* get statistics */ |