From c61dcc4c6db8778e5c821b7ff5518e53eb55d6fe Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Fri, 28 Aug 2026 12:44:09 -0700 Subject: [PATCH] scoutfs: fix minor comment typos Fix a few comment typos. Signed-off-by: Zach Brown --- kmod/src/net.c | 2 +- kmod/src/server.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kmod/src/net.c b/kmod/src/net.c index 8ff4a22d..2a5003d0 100644 --- a/kmod/src/net.c +++ b/kmod/src/net.c @@ -344,7 +344,7 @@ static inline u8 net_err_from_host(struct super_block *sb, int error) /* * Shutdown the connection. This is called by many contexts including - * work that most complete to finish shutting down. We queue specific + * work that must complete to finish shutting down. We queue specific * shutdown work that can wait on all the connection's other work. * We're sure to only queue the shutdown work once. */ diff --git a/kmod/src/server.c b/kmod/src/server.c index 73a8bfa7..8e809ac8 100644 --- a/kmod/src/server.c +++ b/kmod/src/server.c @@ -3897,7 +3897,7 @@ static void queue_farewell_work(struct server_info *server) * response shuts down the connection. * * If a client reconnects they'll send their previously received - * serer_term in their greeting request. + * server_term in their greeting request. * * XXX The logic of this has gotten convoluted. The lock server can * send a recovery request so it needs to be called after the core net