This is a note to let you know that I've just added the patch titled NFSD: A semicolon is not needed after a switch statement. to the 5.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: nfsd-a-semicolon-is-not-needed-after-a-switch-statem.patch and it can be found in the queue-5.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit e5b2440600972f029bb7dc7262519d54773e2e2b Author: Tom Rix <trix@xxxxxxxxxx> Date: Sun Nov 1 07:32:34 2020 -0800 NFSD: A semicolon is not needed after a switch statement. [ Upstream commit 25fef48bdbe7cac5ba5577eab6a750e1caea43bc ] Signed-off-by: Tom Rix <trix@xxxxxxxxxx> Signed-off-by: Chuck Lever <chuck.lever@xxxxxxxxxx> Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index 4b3344296ed0e..fd9107332a20f 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -2558,7 +2558,7 @@ static u32 nfs4_file_type(umode_t mode) case S_IFREG: return NF4REG; case S_IFSOCK: return NF4SOCK; default: return NF4BAD; - }; + } } static inline __be32