diff mbox series

[-next] xfs: change xfs_iomap_page_ops to static

Message ID 20221229091859.4156792-1-yangyingliang@huawei.com (mailing list archive)
State Deferred, archived
Headers show
Series [-next] xfs: change xfs_iomap_page_ops to static | expand

Commit Message

Yang Yingliang Dec. 29, 2022, 9:18 a.m. UTC
xfs_iomap_page_ops is only used in xfs_iomap.c now,
change it to static.

Fixes: 304a68b9c63b ("xfs: use iomap_valid method to detect stale cached iomaps")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 fs/xfs/xfs_iomap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/fs/xfs/xfs_iomap.c b/fs/xfs/xfs_iomap.c
index 669c1bc5c3a7..fc1946f80a4a 100644
--- a/fs/xfs/xfs_iomap.c
+++ b/fs/xfs/xfs_iomap.c
@@ -83,7 +83,7 @@  xfs_iomap_valid(
 	return true;
 }
 
-const struct iomap_page_ops xfs_iomap_page_ops = {
+static const struct iomap_page_ops xfs_iomap_page_ops = {
 	.iomap_valid		= xfs_iomap_valid,
 };