diff options
Diffstat (limited to 'include/net/inet_sock.h')
-rw-r--r-- | include/net/inet_sock.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/net/inet_sock.h b/include/net/inet_sock.h index b1edf17bec01..a829b77523cf 100644 --- a/include/net/inet_sock.h +++ b/include/net/inet_sock.h | |||
@@ -88,8 +88,10 @@ struct inet_request_sock { | |||
88 | acked : 1, | 88 | acked : 1, |
89 | no_srccheck: 1; | 89 | no_srccheck: 1; |
90 | kmemcheck_bitfield_end(flags); | 90 | kmemcheck_bitfield_end(flags); |
91 | struct ip_options_rcu *opt; | 91 | union { |
92 | struct sk_buff *pktopts; | 92 | struct ip_options_rcu *opt; |
93 | struct sk_buff *pktopts; | ||
94 | }; | ||
93 | u32 ir_mark; | 95 | u32 ir_mark; |
94 | }; | 96 | }; |
95 | 97 | ||