diff options
author | Simon Horman <simon.horman@netronome.com> | 2015-04-01 22:20:23 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-01 22:52:29 -0400 |
commit | 05e8bb860b55acc2646b59cd5746c6b4189fa29e (patch) | |
tree | 698b6f4b8985f9169afef4b9c54f93fe31007ebc | |
parent | c4b495128c5d941607179f18ec07c36bd2a3fc38 (diff) |
pkt_sched: fq: correct spelling of locally
Correct spelling of locally.
Also remove extra space before tab character in struct fq_flow.
Signed-off-by: Simon Horman <simon.horman@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/sched/sch_fq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/sch_fq.c b/net/sched/sch_fq.c index dfcea20e3171..f377702d4b91 100644 --- a/net/sched/sch_fq.c +++ b/net/sched/sch_fq.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * as published by the Free Software Foundation; either version | 8 | * as published by the Free Software Foundation; either version |
9 | * 2 of the License, or (at your option) any later version. | 9 | * 2 of the License, or (at your option) any later version. |
10 | * | 10 | * |
11 | * Meant to be mostly used for localy generated traffic : | 11 | * Meant to be mostly used for locally generated traffic : |
12 | * Fast classification depends on skb->sk being set before reaching us. | 12 | * Fast classification depends on skb->sk being set before reaching us. |
13 | * If not, (router workload), we use rxhash as fallback, with 32 bits wide hash. | 13 | * If not, (router workload), we use rxhash as fallback, with 32 bits wide hash. |
14 | * All packets belonging to a socket are considered as a 'flow'. | 14 | * All packets belonging to a socket are considered as a 'flow'. |
@@ -63,7 +63,7 @@ struct fq_flow { | |||
63 | struct sk_buff *tail; /* last skb in the list */ | 63 | struct sk_buff *tail; /* last skb in the list */ |
64 | unsigned long age; /* jiffies when flow was emptied, for gc */ | 64 | unsigned long age; /* jiffies when flow was emptied, for gc */ |
65 | }; | 65 | }; |
66 | struct rb_node fq_node; /* anchor in fq_root[] trees */ | 66 | struct rb_node fq_node; /* anchor in fq_root[] trees */ |
67 | struct sock *sk; | 67 | struct sock *sk; |
68 | int qlen; /* number of packets in flow queue */ | 68 | int qlen; /* number of packets in flow queue */ |
69 | int credit; | 69 | int credit; |