diff options
author | Ying Xue <ying.xue@windriver.com> | 2014-06-26 15:56:31 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-01 14:20:32 -0700 |
commit | 9bf2b8c280b5c02ca8a9e75263bf3ca998fed144 (patch) | |
tree | 01ac45486bf89161dfa55f543847692a4b21ad40 /net/core | |
parent | d93331965729850303f6111381c1a4a9e9b8ae5a (diff) | |
download | linux-9bf2b8c280b5c02ca8a9e75263bf3ca998fed144.tar.bz2 |
net: fix some typos in comment
In commit 371121057607e3127e19b3fa094330181b5b031e("net:
QDISC_STATE_RUNNING dont need atomic bit ops") the
__QDISC_STATE_RUNNING is renamed to __QDISC___STATE_RUNNING,
but the old names existing in comment are not replaced with
the new name completely.
Signed-off-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index a04b12f31e18..de9774119541 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -2738,8 +2738,8 @@ static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q, /* * Heuristic to force contended enqueues to serialize on a * separate lock before trying to get qdisc main lock. - * This permits __QDISC_STATE_RUNNING owner to get the lock more often - * and dequeue packets faster. + * This permits __QDISC___STATE_RUNNING owner to get the lock more + * often and dequeue packets faster. */ contended = qdisc_is_running(q); if (unlikely(contended)) |