[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20180516182717.5240-1-sabin.rapan@gmail.com>
Date: Wed, 16 May 2018 20:27:17 +0200
From: Sabin Mihai Rapan <sabin.rapan@...il.com>
To: gregkh@...uxfoundation.org, jsimmons@...radead.org,
andreas.dilger@...el.com, oleg.drokin@...el.com,
lustre-devel@...ts.lustre.org
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org,
Sabin Mihai Rapan <sabin.rapan@...il.com>
Subject: [PATCH 3/5] staging: lustre: Fix "unsigned"->"unsigned int"
This patch fixes the checkpatch.pl warning:
WARNING:UNSPECIFIED_INT: Prefer 'unsigned int' to bare use of 'unsigned'
Signed-off-by: Sabin Mihai Rapan <sabin.rapan@...il.com>
---
.../staging/lustre/include/uapi/linux/lustre/lustre_fiemap.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/lustre/include/uapi/linux/lustre/lustre_fiemap.h b/drivers/staging/lustre/include/uapi/linux/lustre/lustre_fiemap.h
index f5214dc33c60..d375a476f5ea 100644
--- a/drivers/staging/lustre/include/uapi/linux/lustre/lustre_fiemap.h
+++ b/drivers/staging/lustre/include/uapi/linux/lustre/lustre_fiemap.h
@@ -51,7 +51,7 @@ static inline size_t fiemap_count_to_size(size_t extent_count)
sizeof(struct fiemap_extent);
}
-static inline unsigned fiemap_size_to_count(size_t array_size)
+static inline unsigned int fiemap_size_to_count(size_t array_size)
{
return (array_size - sizeof(struct fiemap)) /
sizeof(struct fiemap_extent);
--
2.17.0
Powered by blists - more mailing lists