linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs/ntfs3: Remove unused including <linux/version.h>
@ 2021-08-19  8:23 Jiapeng Chong
  2021-08-19 11:05 ` Kari Argillander
  2021-08-27 16:31 ` Konstantin Komarov
  0 siblings, 2 replies; 3+ messages in thread
From: Jiapeng Chong @ 2021-08-19  8:23 UTC (permalink / raw)
  To: almaz.alexandrovich
  Cc: nathan, ndesaulniers, ntfs3, linux-kernel, clang-built-linux,
	Jiapeng Chong

Eliminate the follow versioncheck warning:

./fs/ntfs3/inode.c: 16 linux/version.h not needed.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Fixes: 82cae269cfa9 ("fs/ntfs3: Add initialization of super block")
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
---
 fs/ntfs3/inode.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/fs/ntfs3/inode.c b/fs/ntfs3/inode.c
index bf51e29..bb01f1b 100644
--- a/fs/ntfs3/inode.c
+++ b/fs/ntfs3/inode.c
@@ -13,7 +13,6 @@
 #include <linux/namei.h>
 #include <linux/nls.h>
 #include <linux/uio.h>
-#include <linux/version.h>
 #include <linux/writeback.h>
 
 #include "debug.h"
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] fs/ntfs3: Remove unused including <linux/version.h>
  2021-08-19  8:23 [PATCH] fs/ntfs3: Remove unused including <linux/version.h> Jiapeng Chong
@ 2021-08-19 11:05 ` Kari Argillander
  2021-08-27 16:31 ` Konstantin Komarov
  1 sibling, 0 replies; 3+ messages in thread
From: Kari Argillander @ 2021-08-19 11:05 UTC (permalink / raw)
  To: Jiapeng Chong
  Cc: almaz.alexandrovich, nathan, ndesaulniers, ntfs3, linux-kernel,
	clang-built-linux

On Thu, Aug 19, 2021 at 04:23:37PM +0800, Jiapeng Chong wrote:
> Eliminate the follow versioncheck warning:
> 
> ./fs/ntfs3/inode.c: 16 linux/version.h not needed.
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Fixes: 82cae269cfa9 ("fs/ntfs3: Add initialization of super block")
> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>

Reviewed-by: Kari Argillander <kari.argillander@gmail.com>

> ---
>  fs/ntfs3/inode.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/fs/ntfs3/inode.c b/fs/ntfs3/inode.c
> index bf51e29..bb01f1b 100644
> --- a/fs/ntfs3/inode.c
> +++ b/fs/ntfs3/inode.c
> @@ -13,7 +13,6 @@
>  #include <linux/namei.h>
>  #include <linux/nls.h>
>  #include <linux/uio.h>
> -#include <linux/version.h>
>  #include <linux/writeback.h>
>  
>  #include "debug.h"
> -- 
> 1.8.3.1
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] fs/ntfs3: Remove unused including <linux/version.h>
  2021-08-19  8:23 [PATCH] fs/ntfs3: Remove unused including <linux/version.h> Jiapeng Chong
  2021-08-19 11:05 ` Kari Argillander
@ 2021-08-27 16:31 ` Konstantin Komarov
  1 sibling, 0 replies; 3+ messages in thread
From: Konstantin Komarov @ 2021-08-27 16:31 UTC (permalink / raw)
  To: Jiapeng Chong
  Cc: nathan, ndesaulniers, ntfs3, linux-kernel, clang-built-linux

> From: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
> Sent: Thursday, August 19, 2021 11:24 AM
> To: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
> Cc: nathan@kernel.org; ndesaulniers@google.com; ntfs3@lists.linux.dev; linux-kernel@vger.kernel.org; clang-built-
> linux@googlegroups.com; Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
> Subject: [PATCH] fs/ntfs3: Remove unused including <linux/version.h>
> 
> Eliminate the follow versioncheck warning:
> 
> ./fs/ntfs3/inode.c: 16 linux/version.h not needed.
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Fixes: 82cae269cfa9 ("fs/ntfs3: Add initialization of super block")
> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
> ---
>  fs/ntfs3/inode.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/fs/ntfs3/inode.c b/fs/ntfs3/inode.c
> index bf51e29..bb01f1b 100644
> --- a/fs/ntfs3/inode.c
> +++ b/fs/ntfs3/inode.c
> @@ -13,7 +13,6 @@
>  #include <linux/namei.h>
>  #include <linux/nls.h>
>  #include <linux/uio.h>
> -#include <linux/version.h>
>  #include <linux/writeback.h>
> 
>  #include "debug.h"
> --
> 1.8.3.1
Hi Jiapeng! Applied, thanks.
Best regards.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-08-27 16:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-19  8:23 [PATCH] fs/ntfs3: Remove unused including <linux/version.h> Jiapeng Chong
2021-08-19 11:05 ` Kari Argillander
2021-08-27 16:31 ` Konstantin Komarov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).