[PATCH] fuse: make fuse_valid_size static

From: Jiapeng Chong
Date: Wed Aug 16 2023 - 22:26:05 EST


The fuse_valid_size are not used outside the file dir.c, so the
modification is defined as static.

fs/fuse/dir.c:353:6: warning: no previous prototype for ‘fuse_valid_size’.

Reported-by: Abaci Robot <abaci@xxxxxxxxxxxxxxxxx>
Signed-off-by: Jiapeng Chong <jiapeng.chong@xxxxxxxxxxxxxxxxx>
---
fs/fuse/dir.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c
index fb505c1fba02..0cf7c3dbd578 100644
--- a/fs/fuse/dir.c
+++ b/fs/fuse/dir.c
@@ -350,7 +350,7 @@ int fuse_valid_type(int m)
S_ISBLK(m) || S_ISFIFO(m) || S_ISSOCK(m);
}

-bool fuse_valid_size(u64 size)
+static bool fuse_valid_size(u64 size)
{
return size <= LLONG_MAX;
}
--
2.20.1.7.g153144c