aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDrew Fustini <drew@beagleboard.org>2021-03-03 21:55:49 -0800
committerDavid S. Miller <davem@davemloft.net>2021-03-04 13:48:32 -0800
commitd93ef301644ee82925bce1d57fdfe70475dc0bae (patch)
tree2df289b18ad9b7847d9a06c2a07f9d1d19e058b1
parente216674a5b5781694223ff3f0c4f2cc721a36ab0 (diff)
downloadsparc-d93ef301644ee82925bce1d57fdfe70475dc0bae.tar.gz
net: sctp: trivial: fix typo in comment
Fix typo of 'overflow' for comment in sctp_tsnmap_check(). Reported-by: Gustavo A. R. Silva <gustavoars@kernel.org> Signed-off-by: Drew Fustini <drew@beagleboard.org> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/sctp/tsnmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/tsnmap.c b/net/sctp/tsnmap.c
index a9c6af5795d81b..5ba456727f6318 100644
--- a/net/sctp/tsnmap.c
+++ b/net/sctp/tsnmap.c
@@ -75,7 +75,7 @@ int sctp_tsnmap_check(const struct sctp_tsnmap *map, __u32 tsn)
return 1;
/* Verify that we can hold this TSN and that it will not
- * overlfow our map
+ * overflow our map
*/
if (!TSN_lt(tsn, map->base_tsn + SCTP_TSN_MAP_SIZE))
return -1;