Skip to content

Commit 623fa18

Browse files
rpembrymartinetd
authored andcommitted
9p: clean up comment typos
Fix a few minor typos in comments (e.g. "trasnport" → "transport"). Signed-off-by: Randall P. Embry <rpembry@gmail.com> Message-ID: <20250926-v9fs_misc-v1-1-a8b3907fc04d@codewreck.org> Signed-off-by: Dominique Martinet <asmadeus@codewreck.org>
1 parent e8fe3f0 commit 623fa18

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

fs/9p/v9fs.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -438,8 +438,7 @@ struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses,
438438
v9ses->flags &= ~V9FS_ACCESS_MASK;
439439
v9ses->flags |= V9FS_ACCESS_USER;
440440
}
441-
/*FIXME !! */
442-
/* for legacy mode, fall back to V9FS_ACCESS_ANY */
441+
/* FIXME: for legacy mode, fall back to V9FS_ACCESS_ANY */
443442
if (!(v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses)) &&
444443
((v9ses->flags&V9FS_ACCESS_MASK) == V9FS_ACCESS_USER)) {
445444

@@ -450,7 +449,7 @@ struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses,
450449
if (!v9fs_proto_dotl(v9ses) ||
451450
!((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) {
452451
/*
453-
* We support ACL checks on clinet only if the protocol is
452+
* We support ACL checks on client only if the protocol is
454453
* 9P2000.L and access is V9FS_ACCESS_CLIENT.
455454
*/
456455
v9ses->flags &= ~V9FS_ACL_MASK;
@@ -669,7 +668,7 @@ static int __init init_v9fs(void)
669668
int err;
670669

671670
pr_info("Installing v9fs 9p2000 file system support\n");
672-
/* TODO: Setup list of registered trasnport modules */
671+
/* TODO: Setup list of registered transport modules */
673672

674673
err = v9fs_init_inode_cache();
675674
if (err < 0) {

0 commit comments

Comments
 (0)