Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fs/ntfs3: make ntfs_writeback_ops static

Fix below sparse warnings:
fs/ntfs3/inode.c:972:34: sparse: sparse: symbol 'ntfs_writeback_ops' was not declared.
Should it be static?

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202601061424.nbKLNwC5-lkp@intel.com/
Signed-off-by: sunliming <sunliming@kylinos.cn>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>

authored by

sunliming and committed by
Konstantin Komarov
1dad2fff 08ce2fee

+1 -1
+1 -1
fs/ntfs3/inode.c
··· 969 969 } 970 970 971 971 972 - const struct iomap_writeback_ops ntfs_writeback_ops = { 972 + static const struct iomap_writeback_ops ntfs_writeback_ops = { 973 973 .writeback_range = ntfs_writeback_range, 974 974 .writeback_submit = iomap_ioend_writeback_submit, 975 975 };