diff options
author | Vegard Nossum <vegard.nossum@gmail.com> | 2008-10-18 17:37:51 +0200 |
---|---|---|
committer | Vegard Nossum <vegard.nossum@gmail.com> | 2009-06-15 15:49:32 +0200 |
commit | 9e337b0fb3baa3c22490365b1bdee6f4741413d4 (patch) | |
tree | bba282e16e73c7e911e1a83ffe249a0ae05b4f1d /net | |
parent | 96c25c81ecf452b778e2f432bd17c95de637d129 (diff) | |
download | linux-3.10-9e337b0fb3baa3c22490365b1bdee6f4741413d4.tar.gz linux-3.10-9e337b0fb3baa3c22490365b1bdee6f4741413d4.tar.bz2 linux-3.10-9e337b0fb3baa3c22490365b1bdee6f4741413d4.zip |
net: annotate inet_timewait_sock bitfields
The use of bitfields here would lead to false positive warnings with
kmemcheck. Silence them.
(Additionally, one erroneous comment related to the bitfield was also
fixed.)
Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/inet_timewait_sock.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ipv4/inet_timewait_sock.c b/net/ipv4/inet_timewait_sock.c index 8554d0ea171..03169fc8487 100644 --- a/net/ipv4/inet_timewait_sock.c +++ b/net/ipv4/inet_timewait_sock.c @@ -9,6 +9,7 @@ */ #include <linux/kernel.h> +#include <linux/kmemcheck.h> #include <net/inet_hashtables.h> #include <net/inet_timewait_sock.h> #include <net/ip.h> @@ -117,6 +118,8 @@ struct inet_timewait_sock *inet_twsk_alloc(const struct sock *sk, const int stat if (tw != NULL) { const struct inet_sock *inet = inet_sk(sk); + kmemcheck_annotate_bitfield(tw, flags); + /* Give us an identity. */ tw->tw_daddr = inet->daddr; tw->tw_rcv_saddr = inet->rcv_saddr; |