* [PATCH 1/2] fs/fuse: Change 'unsigned's to 'unsigned int's.
@ 2024-11-20 8:30 Jiale Yang
2025-04-14 13:49 ` Miklos Szeredi
0 siblings, 1 reply; 2+ messages in thread
From: Jiale Yang @ 2024-11-20 8:30 UTC (permalink / raw)
To: miklos; +Cc: linux-fsdevel, linux-kernel, Jiale Yang
Prefer 'unsigned int' to bare 'unsigned', as reported by checkpatch.pl:
WARNING: Prefer 'unsigned int' to bare use of 'unsigned'.
Signed-off-by: Jiale Yang <295107659@qq.com>
---
fs/fuse/inode.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index 3ce4f4e81..78d049990 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -37,7 +37,7 @@ static int set_global_limit(const char *val, const struct kernel_param *kp);
unsigned int fuse_max_pages_limit = 256;
-unsigned max_user_bgreq;
+unsigned int max_user_bgreq;
module_param_call(max_user_bgreq, set_global_limit, param_get_uint,
&max_user_bgreq, 0644);
__MODULE_PARM_TYPE(max_user_bgreq, "uint");
@@ -45,7 +45,7 @@ MODULE_PARM_DESC(max_user_bgreq,
"Global limit for the maximum number of backgrounded requests an "
"unprivileged user can set");
-unsigned max_user_congthresh;
+unsigned int max_user_congthresh;
module_param_call(max_user_congthresh, set_global_limit, param_get_uint,
&max_user_congthresh, 0644);
__MODULE_PARM_TYPE(max_user_congthresh, "uint");
@@ -1026,7 +1026,7 @@ struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
}
EXPORT_SYMBOL_GPL(fuse_conn_get);
-static struct inode *fuse_get_root_inode(struct super_block *sb, unsigned mode)
+static struct inode *fuse_get_root_inode(struct super_block *sb, unsigned int mode)
{
struct fuse_attr attr;
memset(&attr, 0, sizeof(attr));
@@ -1201,7 +1201,7 @@ static const struct super_operations fuse_super_operations = {
.show_options = fuse_show_options,
};
-static void sanitize_global_limit(unsigned *limit)
+static void sanitize_global_limit(unsigned int *limit)
{
/*
* The default maximum number of async requests is calculated to consume
@@ -1222,7 +1222,7 @@ static int set_global_limit(const char *val, const struct kernel_param *kp)
if (rv)
return rv;
- sanitize_global_limit((unsigned *)kp->arg);
+ sanitize_global_limit((unsigned int *)kp->arg);
return 0;
}
--
2.47.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 1/2] fs/fuse: Change 'unsigned's to 'unsigned int's.
2024-11-20 8:30 [PATCH 1/2] fs/fuse: Change 'unsigned's to 'unsigned int's Jiale Yang
@ 2025-04-14 13:49 ` Miklos Szeredi
0 siblings, 0 replies; 2+ messages in thread
From: Miklos Szeredi @ 2025-04-14 13:49 UTC (permalink / raw)
To: Jiale Yang; +Cc: linux-fsdevel, linux-kernel
On Wed, 20 Nov 2024 at 09:30, Jiale Yang <295107659@qq.com> wrote:
>
> Prefer 'unsigned int' to bare 'unsigned', as reported by checkpatch.pl:
> WARNING: Prefer 'unsigned int' to bare use of 'unsigned'.
>
> Signed-off-by: Jiale Yang <295107659@qq.com>
Applied, thanks.
Miklos
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-04-14 13:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-20 8:30 [PATCH 1/2] fs/fuse: Change 'unsigned's to 'unsigned int's Jiale Yang
2025-04-14 13:49 ` Miklos Szeredi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox