diff options
author | Theodore Ts'o <tytso@mit.edu> | 2022-03-12 21:39:35 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2022-03-15 17:45:36 -0400 |
commit | 919adbfec29d5b89b3e45620653cbeeb0d42e6fd (patch) | |
tree | dfdb44f20ae9877ce49dfe3e8cf96a18bc581937 /fs/ext4/ioctl.c | |
parent | 163f11b8b3489fbf04be8d8d0e029f1dcd6546d1 (diff) | |
download | linux-919adbfec29d5b89b3e45620653cbeeb0d42e6fd.tar.gz linux-919adbfec29d5b89b3e45620653cbeeb0d42e6fd.tar.bz2 linux-919adbfec29d5b89b3e45620653cbeeb0d42e6fd.zip |
ext4: fix kernel doc warnings
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ioctl.c')
-rw-r--r-- | fs/ext4/ioctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c index a8022c2c6a58..992229ca2d83 100644 --- a/fs/ext4/ioctl.c +++ b/fs/ext4/ioctl.c @@ -269,7 +269,7 @@ out: return err ? err : 0; } -/** +/* * Swap memory between @a and @b for @len bytes. * * @a: pointer to first memory area @@ -290,7 +290,7 @@ static void memswap(void *a, void *b, size_t len) } } -/** +/* * Swap i_data and associated attributes between @inode1 and @inode2. * This function is used for the primary swap between inode1 and inode2 * and also to revert this primary swap in case of errors. @@ -344,7 +344,7 @@ void ext4_reset_inode_seed(struct inode *inode) ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, sizeof(gen)); } -/** +/* * Swap the information from the given @inode and the inode * EXT4_BOOT_LOADER_INO. It will basically swap i_data and all other * important fields of the inodes. |