Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Mar 2023 17:47:40 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: fa3ea81b77e4 - main - fdescfs: remove useless XXX comment, unwrap line
Message-ID:  <202303241747.32OHleTC075453@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=fa3ea81b77e41e3f33a611e51fd8bcbb2f4c8a95

commit fa3ea81b77e41e3f33a611e51fd8bcbb2f4c8a95
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-03-21 21:28:16 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-03-24 17:46:47 +0000

    fdescfs: remove useless XXX comment, unwrap line
    
    Reviewed by:    markj
    Tested by:      pho
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
    Differential revision:  https://reviews.freebsd.org/D39207
---
 sys/fs/fdescfs/fdesc_vfsops.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys/fs/fdescfs/fdesc_vfsops.c b/sys/fs/fdescfs/fdesc_vfsops.c
index 9d8fdda47cbf..edc2cdd61847 100644
--- a/sys/fs/fdescfs/fdesc_vfsops.c
+++ b/sys/fs/fdescfs/fdesc_vfsops.c
@@ -90,8 +90,7 @@ fdesc_mount(struct mount *mp)
 	if (mp->mnt_flag & (MNT_UPDATE | MNT_ROOTFS))
 		return (EOPNOTSUPP);
 
-	fmp = malloc(sizeof(struct fdescmount),
-				M_FDESCMNT, M_WAITOK);	/* XXX */
+	fmp = malloc(sizeof(struct fdescmount), M_FDESCMNT, M_WAITOK);
 
 	/*
 	 * We need to initialize a few bits of our local mount point struct to



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202303241747.32OHleTC075453>