aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/skbuff.c
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@infradead.org>2020-02-15 13:41:12 -0800
committerDavid S. Miller <davem@davemloft.net>2020-02-16 19:49:51 -0800
commit8955b4357d6fc98734b53855b76ee37014a7e492 (patch)
tree42d3f6a3fa533b11e9f9c8f6ec1dd70ee6cc7b14 /net/core/skbuff.c
parentnet/sock.h: fix all kernel-doc warnings (diff)
downloadlinux-dev-8955b4357d6fc98734b53855b76ee37014a7e492.tar.xz
linux-dev-8955b4357d6fc98734b53855b76ee37014a7e492.zip
skbuff: remove stale bit mask comments
Remove stale comments since this flag is no longer a bit mask but is a bit field. Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/core/skbuff.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 864cb9e9622f..1365a556152c 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -467,7 +467,6 @@ struct sk_buff *__netdev_alloc_skb(struct net_device *dev, unsigned int len,
return NULL;
}
- /* use OR instead of assignment to avoid clearing of bits in mask */
if (pfmemalloc)
skb->pfmemalloc = 1;
skb->head_frag = 1;
@@ -527,7 +526,6 @@ struct sk_buff *__napi_alloc_skb(struct napi_struct *napi, unsigned int len,
return NULL;
}
- /* use OR instead of assignment to avoid clearing of bits in mask */
if (nc->page.pfmemalloc)
skb->pfmemalloc = 1;
skb->head_frag = 1;