mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-30 10:49:28 +00:00
net: core: fix spelling typo in flow_dissector.c
withing should be within. Signed-off-by: Wang Qing <wangqing@vivo.com> Link: https://lore.kernel.org/r/1604650310-30432-1-git-send-email-wangqing@vivo.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
2d152760a9
commit
75a5fb0cdb
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ void skb_flow_dissector_init(struct flow_dissector *flow_dissector,
|
||||||
memset(flow_dissector, 0, sizeof(*flow_dissector));
|
memset(flow_dissector, 0, sizeof(*flow_dissector));
|
||||||
|
|
||||||
for (i = 0; i < key_count; i++, key++) {
|
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.
|
* boundaries of unsigned short.
|
||||||
*/
|
*/
|
||||||
BUG_ON(key->offset > USHRT_MAX);
|
BUG_ON(key->offset > USHRT_MAX);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue