diff options
author | Nicolas Dichtel <nicolas.dichtel@6wind.com> | 2013-09-30 12:16:41 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-10-01 05:32:39 (GMT) |
commit | 45906723578f768d029ba7774cd97b435f2c5125 (patch) | |
tree | 3f26d65ccb4ab928b4d302f573754544f6bdbb47 /include | |
parent | d9a71f97d5ad4ac912e0bb60813ae992da1e18b2 (diff) | |
download | linux-fsl-qoriq-45906723578f768d029ba7774cd97b435f2c5125.tar.xz |
skbuff: size of hole is wrong in a comment
Since commit c93bdd0e03e8 ("netvm: allow skb allocation to use PFMEMALLOC
reserves"), hole size is one bit less than what is written in the comment.
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/skbuff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 2ddb48d..c2d8933 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -498,7 +498,7 @@ struct sk_buff { * headers if needed */ __u8 encapsulation:1; - /* 7/9 bit hole (depending on ndisc_nodetype presence) */ + /* 6/8 bit hole (depending on ndisc_nodetype presence) */ kmemcheck_bitfield_end(flags2); #if defined CONFIG_NET_DMA || defined CONFIG_NET_RX_BUSY_POLL |