From: Tyler Hicks Date: Fri, 27 May 2022 00:00:03 +0000 (-0500) Subject: 9p: Fix minor typo in code comment X-Git-Tag: v6.1-rc5~675^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b296d05746b7fa0d663e3b11abf0e03eab6e03e6;p=platform%2Fkernel%2Flinux-starfive.git 9p: Fix minor typo in code comment Fix s/patch/path/ typo and make it clear that we're talking about multiple path components. Link: https://lkml.kernel.org/r/20220527000003.355812-6-tyhicks@linux.microsoft.com Signed-off-by: Tyler Hicks Signed-off-by: Dominique Martinet --- diff --git a/fs/9p/fid.c b/fs/9p/fid.c index 7ddfed9..e8fad28 100644 --- a/fs/9p/fid.c +++ b/fs/9p/fid.c @@ -219,7 +219,7 @@ static struct p9_fid *v9fs_fid_lookup_with_uid(struct dentry *dentry, l = min(n - i, P9_MAXWELEM); /* * We need to hold rename lock when doing a multipath - * walk to ensure none of the patch component change + * walk to ensure none of the path components change */ fid = p9_client_walk(old_fid, l, &wnames[i], old_fid == root_fid /* clone */);