diff options
author | Alex Shi <alex.shi@linux.alibaba.com> | 2020-11-13 16:58:13 +0800 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2020-11-14 10:22:45 +0100 |
commit | 65cdb4a214c0015c19fc1876896746c05396f45d (patch) | |
tree | 24e3955591b9160b25279e4ba0fbd2d86ef10766 /fs/configfs | |
parent | f01c30de86f1047e9bae1b1b1417b0ce8dcd15b1 (diff) | |
download | linux-65cdb4a214c0015c19fc1876896746c05396f45d.tar.bz2 |
configfs: fix kernel-doc markup issue
Add explanation for 'frag' parameter to avoid kernel-doc issue:
fs/configfs/dir.c:277: warning: Function parameter or member 'frag' not
described in 'configfs_create_dir'
Signed-off-by: Alex Shi <alex.shi@linux.alibaba.com>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/configfs')
-rw-r--r-- | fs/configfs/dir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/configfs/dir.c b/fs/configfs/dir.c index b0983e2a4e2c..b839dd1b459f 100644 --- a/fs/configfs/dir.c +++ b/fs/configfs/dir.c @@ -267,6 +267,7 @@ static void configfs_remove_dirent(struct dentry *dentry) * configfs_create_dir - create a directory for an config_item. * @item: config_itemwe're creating directory for. * @dentry: config_item's dentry. + * @frag: config_item's fragment. * * Note: user-created entries won't be allowed under this new directory * until it is validated by configfs_dir_set_ready() |