From nobody Tue Apr 7 02:36:21 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 70ECF3016F1; Mon, 16 Mar 2026 18:25:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773685518; cv=none; b=J0fT/harKKm4/mpwl6BFkcjDSZHJSE9DOq5InR6fwQIDbimsjtPqt9wyozwvkxVHHzjfWOUfwQPUHkhWBCMYaa81wIPrbTDPiUAc3dQ4E0wNJuKcnvbSnqcCh9VHvd49ceD/jQJ4qZSz4hdhnHEF5/0vgpPz31A5JFJAQwxHuOI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773685518; c=relaxed/simple; bh=efGJWkE8U3TCx9phHcaMg7PMxqk0si0nap9W0C6sESQ=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=KlBnFrdL+lUKADVaurKwjAhHrqt4w5GYHQ++6qlMIylvlG0bwmbtiT2xoDqtlvX7ZXOo1stajnrgKhI43C5WBfF1pfIwDbO/fBzx6IAxv4j2iNoMQ5tnBGGCQnJRxTBYHLlq+2u0/+WowfZVEzPGq9a4WQWa0zL2WYUDJhzddSk= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id EE220C19421; Mon, 16 Mar 2026 18:25:17 +0000 (UTC) From: Joseph Salisbury To: Chuck Lever , Jeff Layton Cc: NeilBrown , Olga Kornievskaia , Dai Ngo , Tom Talpey , linux-nfs@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] nfsd: fix comment typo in nfs3xdr Date: Mon, 16 Mar 2026 14:25:16 -0400 Message-ID: <20260316182516.153940-1-joseph.salisbury@oracle.com> X-Mailer: git-send-email 2.47.3 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The file contains a spelling error in a source comment (occured). Typos in comments reduce readability and make text searches less reliable for developers and maintainers. Replace 'occured' with 'occurred' in the affected comment. This is a comment-only cleanup and does not change behavior. Fixes: 7f87fc2d34d4 ("NFSD: Update NFSv3 READDIR entry encoders to use stru= ct xdr_stream") Cc: stable@vger.kernel.org Signed-off-by: Joseph Salisbury --- fs/nfsd/nfs3xdr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/nfsd/nfs3xdr.c b/fs/nfsd/nfs3xdr.c index ef4971d71ac4..2ff9a991a8fb 100644 --- a/fs/nfsd/nfs3xdr.c +++ b/fs/nfsd/nfs3xdr.c @@ -1069,7 +1069,7 @@ svcxdr_encode_entry3_common(struct nfsd3_readdirres *= resp, const char *name, * * Return values: * %0: Entry was successfully encoded. - * %-EINVAL: An encoding problem occured, secondary status code in resp-= >common.err + * %-EINVAL: An encoding problem occurred, secondary status code in resp= ->common.err * * On exit, the following fields are updated: * - resp->xdr @@ -1144,7 +1144,7 @@ svcxdr_encode_entry3_plus(struct nfsd3_readdirres *re= sp, const char *name, * * Return values: * %0: Entry was successfully encoded. - * %-EINVAL: An encoding problem occured, secondary status code in resp-= >common.err + * %-EINVAL: An encoding problem occurred, secondary status code in resp= ->common.err * * On exit, the following fields are updated: * - resp->xdr --=20 2.47.3