aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWang Qing <[email protected]>2020-11-06 16:11:49 +0800
committerJakub Kicinski <[email protected]>2020-11-07 15:52:21 -0800
commit75a5fb0cdbb7f2529743dfbae3ea6d1971d0734f (patch)
treefb97d38d7df73e7f7ef4d7e2220b94c749419596
parent2d152760a9e024c5a639529e85fc05a3d198e2ce (diff)
net: core: fix spelling typo in flow_dissector.c
withing should be within. Signed-off-by: Wang Qing <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
-rw-r--r--net/core/flow_dissector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/flow_dissector.c b/net/core/flow_dissector.c
index e21950a2c897..6f1adba6695f 100644
--- a/net/core/flow_dissector.c
+++ b/net/core/flow_dissector.c
@@ -48,7 +48,7 @@ void skb_flow_dissector_init(struct flow_dissector *flow_dissector,
memset(flow_dissector, 0, sizeof(*flow_dissector));
for (i = 0; i < key_count; i++, key++) {
- /* User should make sure that every key target offset is withing
+ /* User should make sure that every key target offset is within
* boundaries of unsigned short.
*/
BUG_ON(key->offset > USHRT_MAX);