Commit ff713698 authored by Chia-Liang Wang's avatar Chia-Liang Wang Committed by Andrew Morton
Browse files

lib: ratelimit: fix spelling mistake 'seperately'

Corrects a spelling mistake in a comment in ratelimit.c where 'seperately'
was used instead of 'separately'.

Link: https://lkml.kernel.org/r/20251119101144.3175-1-a0979625527@icloud.com


Signed-off-by: default avatarChia-Liang Wang <a0979652527@icloud.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 2fe869ec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
int ___ratelimit(struct ratelimit_state *rs, const char *func)
{
	/* Paired with WRITE_ONCE() in .proc_handler().
	 * Changing two values seperately could be inconsistent
	 * Changing two values separately could be inconsistent
	 * and some message could be lost.  (See: net_ratelimit_state).
	 */
	int interval = READ_ONCE(rs->interval);