diff options
author | Tonghao Zhang <xiangxia.m.yue@gmail.com> | 2017-08-15 04:28:54 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-15 17:07:17 -0700 |
commit | b3dc8f772fab5b2d284b780830fd56494491e493 (patch) | |
tree | 4653c1a474cca8c86a0f73e68f078df3956fefd7 /include | |
parent | 12d94a804946af291e24b80fc53ec86264765781 (diff) | |
download | linux-b3dc8f772fab5b2d284b780830fd56494491e493.tar.bz2 |
net: Fix a typo in comment about sock flags.
Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/net.h b/include/linux/net.h index dda2cc939a53..ebeb48c92005 100644 --- a/include/linux/net.h +++ b/include/linux/net.h @@ -37,7 +37,7 @@ struct net; /* Historically, SOCKWQ_ASYNC_NOSPACE & SOCKWQ_ASYNC_WAITDATA were located * in sock->flags, but moved into sk->sk_wq->flags to be RCU protected. - * Eventually all flags will be in sk->sk_wq_flags. + * Eventually all flags will be in sk->sk_wq->flags. */ #define SOCKWQ_ASYNC_NOSPACE 0 #define SOCKWQ_ASYNC_WAITDATA 1 |