aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorVegard Nossum <vegard.nossum@gmail.com>2008-10-18 11:37:51 -0400
committerVegard Nossum <vegard.nossum@gmail.com>2009-06-15 09:49:32 -0400
commit9e337b0fb3baa3c22490365b1bdee6f4741413d4 (patch)
treebba282e16e73c7e911e1a83ffe249a0ae05b4f1d /net/ipv4
parent96c25c81ecf452b778e2f432bd17c95de637d129 (diff)
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/ipv4')
-rw-r--r--net/ipv4/inet_timewait_sock.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ipv4/inet_timewait_sock.c b/net/ipv4/inet_timewait_sock.c
index 8554d0ea1719..03169fc84877 100644
--- a/net/ipv4/inet_timewait_sock.c
+++ b/net/ipv4/inet_timewait_sock.c
@@ -9,6 +9,7 @@
9 */ 9 */
10 10
11#include <linux/kernel.h> 11#include <linux/kernel.h>
12#include <linux/kmemcheck.h>
12#include <net/inet_hashtables.h> 13#include <net/inet_hashtables.h>
13#include <net/inet_timewait_sock.h> 14#include <net/inet_timewait_sock.h>
14#include <net/ip.h> 15#include <net/ip.h>
@@ -117,6 +118,8 @@ struct inet_timewait_sock *inet_twsk_alloc(const struct sock *sk, const int stat
117 if (tw != NULL) { 118 if (tw != NULL) {
118 const struct inet_sock *inet = inet_sk(sk); 119 const struct inet_sock *inet = inet_sk(sk);
119 120
121 kmemcheck_annotate_bitfield(tw, flags);
122
120 /* Give us an identity. */ 123 /* Give us an identity. */
121 tw->tw_daddr = inet->daddr; 124 tw->tw_daddr = inet->daddr;
122 tw->tw_rcv_saddr = inet->rcv_saddr; 125 tw->tw_rcv_saddr = inet->rcv_saddr;