Blame SOURCES/0051-fs-ntfs3-Remove-unneeded-header-files-from-c-files.patch

Kmods SIG d83023
From 9c2aadd0fdf88a7ebeebd1e97a9c66b07ad3e14a Mon Sep 17 00:00:00 2001
Kmods SIG d83023
From: Kari Argillander <kari.argillander@gmail.com>
Kmods SIG d83023
Date: Thu, 2 Sep 2021 19:15:28 +0300
Kmods SIG d83023
Subject: [Backport 9c2aadd0fdf8] src: Remove unneeded header files from c
Kmods SIG d83023
 files
Kmods SIG d83023
Kmods SIG d83023
We have lot of unnecessary headers in these files. Remove them so that
Kmods SIG d83023
we help compiler a little bit.
Kmods SIG d83023
Kmods SIG d83023
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
Kmods SIG d83023
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Kmods SIG d83023
---
Kmods SIG d83023
 src/attrib.c   | 5 -----
Kmods SIG d83023
 src/attrlist.c | 3 ---
Kmods SIG d83023
 src/bitmap.c   | 3 ---
Kmods SIG d83023
 src/dir.c      | 3 ---
Kmods SIG d83023
 src/file.c     | 1 -
Kmods SIG d83023
 src/frecord.c  | 3 ---
Kmods SIG d83023
 src/fslog.c    | 4 ----
Kmods SIG d83023
 src/fsntfs.c   | 1 -
Kmods SIG d83023
 src/index.c    | 1 -
Kmods SIG d83023
 src/inode.c    | 2 --
Kmods SIG d83023
 src/namei.c    | 4 ----
Kmods SIG d83023
 src/record.c   | 3 ---
Kmods SIG d83023
 src/run.c      | 2 --
Kmods SIG d83023
 src/super.c    | 2 --
Kmods SIG d83023
 src/xattr.c    | 3 ---
Kmods SIG d83023
 15 files changed, 40 deletions(-)
Kmods SIG d83023
Kmods SIG d83023
diff --git a/src/attrib.c b/src/attrib.c
Kmods SIG d83023
index b1055b284c60323168be99ce69b18e7dbd7bb969..12cff28f3e7155231e56864792dd764487297f37 100644
Kmods SIG d83023
--- a/src/attrib.c
Kmods SIG d83023
+++ b/src/attrib.c
Kmods SIG d83023
@@ -6,12 +6,7 @@
Kmods SIG d83023
  * TODO: Merge attr_set_size/attr_data_get_block/attr_allocate_frame?
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
-#include <linux/blkdev.h>
Kmods SIG d83023
-#include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/hash.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
-#include <linux/ratelimit.h>
Kmods SIG d83023
 #include <linux/slab.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
diff --git a/src/attrlist.c b/src/attrlist.c
Kmods SIG d83023
index fa32399eb5171ce25f037fbd1bd8e483a37b839c..b9da527b96aa2ab00bf43d439d8527b587946a9d 100644
Kmods SIG d83023
--- a/src/attrlist.c
Kmods SIG d83023
+++ b/src/attrlist.c
Kmods SIG d83023
@@ -5,10 +5,7 @@
Kmods SIG d83023
  *
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
-#include <linux/blkdev.h>
Kmods SIG d83023
-#include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
 #include "ntfs.h"
Kmods SIG d83023
diff --git a/src/bitmap.c b/src/bitmap.c
Kmods SIG d83023
index 831501555009533d8b3eac04b6258e7072bd6304..a03584674fea13c818f341f8f2a5147957507709 100644
Kmods SIG d83023
--- a/src/bitmap.c
Kmods SIG d83023
+++ b/src/bitmap.c
Kmods SIG d83023
@@ -10,12 +10,9 @@
Kmods SIG d83023
  *
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
-#include <linux/blkdev.h>
Kmods SIG d83023
 #include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
 
Kmods SIG d83023
-#include "debug.h"
Kmods SIG d83023
 #include "ntfs.h"
Kmods SIG d83023
 #include "ntfs_fs.h"
Kmods SIG d83023
 
Kmods SIG d83023
diff --git a/src/dir.c b/src/dir.c
Kmods SIG d83023
index 40440df021eff2a95a87ff7a2af38345a7c40793..785e72d4392e152ef6833721e887ed9ef056094b 100644
Kmods SIG d83023
--- a/src/dir.c
Kmods SIG d83023
+++ b/src/dir.c
Kmods SIG d83023
@@ -7,10 +7,7 @@
Kmods SIG d83023
  *
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
-#include <linux/blkdev.h>
Kmods SIG d83023
-#include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/iversion.h>
Kmods SIG d83023
 #include <linux/nls.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
diff --git a/src/file.c b/src/file.c
Kmods SIG d83023
index 0743d806c567409dd2845b6577f2ae3adf92b383..5fb3508e5422cc6654381897d6fdb4a204a543a4 100644
Kmods SIG d83023
--- a/src/file.c
Kmods SIG d83023
+++ b/src/file.c
Kmods SIG d83023
@@ -12,7 +12,6 @@
Kmods SIG d83023
 #include <linux/compat.h>
Kmods SIG d83023
 #include <linux/falloc.h>
Kmods SIG d83023
 #include <linux/fiemap.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
 #include "ntfs.h"
Kmods SIG d83023
diff --git a/src/frecord.c b/src/frecord.c
Kmods SIG d83023
index 938b12d56ca676308d2af82666a4f6f19cc8f122..080264ced9090a61825dbe00d96458c76538468b 100644
Kmods SIG d83023
--- a/src/frecord.c
Kmods SIG d83023
+++ b/src/frecord.c
Kmods SIG d83023
@@ -5,11 +5,8 @@
Kmods SIG d83023
  *
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
-#include <linux/blkdev.h>
Kmods SIG d83023
-#include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fiemap.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
 #include <linux/vmalloc.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
diff --git a/src/fslog.c b/src/fslog.c
Kmods SIG d83023
index b5853aed0e25bc6d93b3f6f667ae36feda3d980b..6e7f9b72792b354a6e588b506c7352b286ed58bd 100644
Kmods SIG d83023
--- a/src/fslog.c
Kmods SIG d83023
+++ b/src/fslog.c
Kmods SIG d83023
@@ -6,12 +6,8 @@
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
 #include <linux/blkdev.h>
Kmods SIG d83023
-#include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/hash.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
 #include <linux/random.h>
Kmods SIG d83023
-#include <linux/ratelimit.h>
Kmods SIG d83023
 #include <linux/slab.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
diff --git a/src/fsntfs.c b/src/fsntfs.c
Kmods SIG d83023
index 91e3743e1442f10cfc727eba0587a9ef0b20c039..9232a7f410c68bb0b1f3a5cedd2295b814372404 100644
Kmods SIG d83023
--- a/src/fsntfs.c
Kmods SIG d83023
+++ b/src/fsntfs.c
Kmods SIG d83023
@@ -8,7 +8,6 @@
Kmods SIG d83023
 #include <linux/blkdev.h>
Kmods SIG d83023
 #include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
 #include "ntfs.h"
Kmods SIG d83023
diff --git a/src/index.c b/src/index.c
Kmods SIG d83023
index b1175542d854c44550858ce7620df68b99ee7b86..35b77c92e96dc661baac0cc1ecaa3d0f130ef8e6 100644
Kmods SIG d83023
--- a/src/index.c
Kmods SIG d83023
+++ b/src/index.c
Kmods SIG d83023
@@ -8,7 +8,6 @@
Kmods SIG d83023
 #include <linux/blkdev.h>
Kmods SIG d83023
 #include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
 #include "ntfs.h"
Kmods SIG d83023
diff --git a/src/inode.c b/src/inode.c
Kmods SIG d83023
index 9f740fd301b24f2b1a67da0b78d091b3a3ae4705..33f278a0947ca23e103683b9daece8f539da355b 100644
Kmods SIG d83023
--- a/src/inode.c
Kmods SIG d83023
+++ b/src/inode.c
Kmods SIG d83023
@@ -5,10 +5,8 @@
Kmods SIG d83023
  *
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
-#include <linux/blkdev.h>
Kmods SIG d83023
 #include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/iversion.h>
Kmods SIG d83023
 #include <linux/mpage.h>
Kmods SIG d83023
 #include <linux/namei.h>
Kmods SIG d83023
 #include <linux/nls.h>
Kmods SIG d83023
diff --git a/src/namei.c b/src/namei.c
Kmods SIG d83023
index e58415d0713280297df1b7bac30eb17642431fa0..1c475da4e19d1158e3c11fcb749fb0825d2d7ae6 100644
Kmods SIG d83023
--- a/src/namei.c
Kmods SIG d83023
+++ b/src/namei.c
Kmods SIG d83023
@@ -5,11 +5,7 @@
Kmods SIG d83023
  *
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
-#include <linux/blkdev.h>
Kmods SIG d83023
-#include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/iversion.h>
Kmods SIG d83023
-#include <linux/namei.h>
Kmods SIG d83023
 #include <linux/nls.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
diff --git a/src/record.c b/src/record.c
Kmods SIG d83023
index 103705c86772f45a90227e6434449e99c4d7d94b..861e35791506e801dc446414d935d5463e64a1fb 100644
Kmods SIG d83023
--- a/src/record.c
Kmods SIG d83023
+++ b/src/record.c
Kmods SIG d83023
@@ -5,10 +5,7 @@
Kmods SIG d83023
  *
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
-#include <linux/blkdev.h>
Kmods SIG d83023
-#include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
 #include "ntfs.h"
Kmods SIG d83023
diff --git a/src/run.c b/src/run.c
Kmods SIG d83023
index 26ed2b64345e665a39c6b37d88b29c5b81592ecd..a8fec651f9732878ad871cc476d8a6fcf28f9312 100644
Kmods SIG d83023
--- a/src/run.c
Kmods SIG d83023
+++ b/src/run.c
Kmods SIG d83023
@@ -7,10 +7,8 @@
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
 #include <linux/blkdev.h>
Kmods SIG d83023
-#include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
 #include <linux/log2.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
 
Kmods SIG d83023
 #include "debug.h"
Kmods SIG d83023
 #include "ntfs.h"
Kmods SIG d83023
diff --git a/src/super.c b/src/super.c
Kmods SIG d83023
index 3cba0b5e7ac72c444a55de38b791faa87732049f..acfa00acf4dd1c94ebfc63a47270a86570e0073e 100644
Kmods SIG d83023
--- a/src/super.c
Kmods SIG d83023
+++ b/src/super.c
Kmods SIG d83023
@@ -23,14 +23,12 @@
Kmods SIG d83023
  *
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
-#include <linux/backing-dev.h>
Kmods SIG d83023
 #include <linux/blkdev.h>
Kmods SIG d83023
 #include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/exportfs.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
 #include <linux/fs_context.h>
Kmods SIG d83023
 #include <linux/fs_parser.h>
Kmods SIG d83023
-#include <linux/iversion.h>
Kmods SIG d83023
 #include <linux/log2.h>
Kmods SIG d83023
 #include <linux/module.h>
Kmods SIG d83023
 #include <linux/nls.h>
Kmods SIG d83023
diff --git a/src/xattr.c b/src/xattr.c
Kmods SIG d83023
index 6f88cb77a17f666fc7cdcdcdcd44b032ceca1c07..a8c5a899f0dd308fe5014bf3b384bc903ca0bf68 100644
Kmods SIG d83023
--- a/src/xattr.c
Kmods SIG d83023
+++ b/src/xattr.c
Kmods SIG d83023
@@ -5,10 +5,7 @@
Kmods SIG d83023
  *
Kmods SIG d83023
  */
Kmods SIG d83023
 
Kmods SIG d83023
-#include <linux/blkdev.h>
Kmods SIG d83023
-#include <linux/buffer_head.h>
Kmods SIG d83023
 #include <linux/fs.h>
Kmods SIG d83023
-#include <linux/nls.h>
Kmods SIG d83023
 #include <linux/posix_acl.h>
Kmods SIG d83023
 #include <linux/posix_acl_xattr.h>
Kmods SIG d83023
 #include <linux/xattr.h>
Kmods SIG d83023
-- 
Kmods SIG d83023
2.31.1
Kmods SIG d83023