mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:20:37 +02:00
3537e1d856
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff_plain;h=79b5dc0c64d88cda3da23b2e22a5cec0964372ac (thank you hauke) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24012 3c298f89-4303-0410-b956-a3cf2f4a3e73
26 lines
748 B
Diff
26 lines
748 B
Diff
--- a/include/linux/if_ppp.h
|
|
+++ b/include/linux/if_ppp.h
|
|
@@ -114,14 +114,14 @@ struct pppol2tp_ioc_stats {
|
|
__u16 tunnel_id; /* redundant */
|
|
__u16 session_id; /* if zero, get tunnel stats */
|
|
__u32 using_ipsec:1; /* valid only for session_id == 0 */
|
|
- aligned_u64 tx_packets;
|
|
- aligned_u64 tx_bytes;
|
|
- aligned_u64 tx_errors;
|
|
- aligned_u64 rx_packets;
|
|
- aligned_u64 rx_bytes;
|
|
- aligned_u64 rx_seq_discards;
|
|
- aligned_u64 rx_oos_packets;
|
|
- aligned_u64 rx_errors;
|
|
+ __aligned_u64 tx_packets;
|
|
+ __aligned_u64 tx_bytes;
|
|
+ __aligned_u64 tx_errors;
|
|
+ __aligned_u64 rx_packets;
|
|
+ __aligned_u64 rx_bytes;
|
|
+ __aligned_u64 rx_seq_discards;
|
|
+ __aligned_u64 rx_oos_packets;
|
|
+ __aligned_u64 rx_errors;
|
|
};
|
|
|
|
#define ifr__name b.ifr_ifrn.ifrn_name
|