Unverified Commit 1dad2fff authored by sunliming's avatar sunliming Committed by Konstantin Komarov
Browse files

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: default avatarkernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202601061424.nbKLNwC5-lkp@intel.com/


Signed-off-by: default avatarsunliming <sunliming@kylinos.cn>
Signed-off-by: default avatarKonstantin Komarov <almaz.alexandrovich@paragon-software.com>
parent 08ce2fee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -969,7 +969,7 @@ static ssize_t ntfs_writeback_range(struct iomap_writepage_ctx *wpc,
}


const struct iomap_writeback_ops ntfs_writeback_ops = {
static const struct iomap_writeback_ops ntfs_writeback_ops = {
	.writeback_range = ntfs_writeback_range,
	.writeback_submit = iomap_ioend_writeback_submit,
};