diff options
author | Luca Ceresoli <luca.ceresoli@bootlin.com> | 2023-01-26 16:22:05 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-02-02 22:50:07 -0800 |
commit | 1b381f6fe495fffbbdace1ee530afb74287c809d (patch) | |
tree | 18d0c12d30a338869aa7e78879858315b319586a /net/openvswitch | |
parent | bf470202dd9f9f5a29dab007fd2cd6c671aecbed (diff) | |
download | linux-stable-1b381f6fe495fffbbdace1ee530afb74287c809d.tar.gz linux-stable-1b381f6fe495fffbbdace1ee530afb74287c809d.tar.bz2 linux-stable-1b381f6fe495fffbbdace1ee530afb74287c809d.zip |
scripts/spelling.txt: add "exsits" pattern and fix typo instances
Fix typos and add the following to the scripts/spelling.txt:
exsits||exists
Link: https://lkml.kernel.org/r/20230126152205.959277-1-luca.ceresoli@bootlin.com
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'net/openvswitch')
-rw-r--r-- | net/openvswitch/flow_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/flow_table.c b/net/openvswitch/flow_table.c index 0a0e4c283f02..cfac54cbafdf 100644 --- a/net/openvswitch/flow_table.c +++ b/net/openvswitch/flow_table.c @@ -1012,7 +1012,7 @@ static int flow_mask_insert(struct flow_table *tbl, struct sw_flow *flow, mask = flow_mask_find(tbl, new); if (!mask) { - /* Allocate a new mask if none exsits. */ + /* Allocate a new mask if none exists. */ mask = mask_alloc(); if (!mask) return -ENOMEM; |