Blame SOURCES/0050-fs-ntfs3-Change-right-headers-to-lznt.c.patch

Kmods SIG 63c143
From 977d0558e310113767feed91fdcc618691dd2835 Mon Sep 17 00:00:00 2001
Kmods SIG 63c143
From: Kari Argillander <kari.argillander@gmail.com>
Kmods SIG 63c143
Date: Thu, 2 Sep 2021 19:15:27 +0300
Kmods SIG 63c143
Subject: [Backport 977d0558e310] src: Change right headers to lznt.c
Kmods SIG 63c143
Kmods SIG 63c143
There is lot of headers which we do not need in this file. Delete them
Kmods SIG 63c143
and add what we really need. Here is list which identify why we need
Kmods SIG 63c143
this header.
Kmods SIG 63c143
Kmods SIG 63c143
<linux/kernel.h> // min()
Kmods SIG 63c143
<linux/slab.h> // kzalloc()
Kmods SIG 63c143
<linux/stddef.h> // offsetof()
Kmods SIG 63c143
<linux/string.h> // memcpy(), memset()
Kmods SIG 63c143
<linux/types.h> // u8, size_t, etc.
Kmods SIG 63c143
Kmods SIG 63c143
"debug.h" // PtrOffset()
Kmods SIG 63c143
Kmods SIG 63c143
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
Kmods SIG 63c143
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Kmods SIG 63c143
---
Kmods SIG 63c143
 src/lznt.c | 10 +++++-----
Kmods SIG 63c143
 1 file changed, 5 insertions(+), 5 deletions(-)
Kmods SIG 63c143
Kmods SIG 63c143
diff --git a/src/lznt.c b/src/lznt.c
Kmods SIG 63c143
index f1f691a67cc490254957f062cfc38ec12ac7e834..12ba42518efea5a6f3198499b75b3023d0032be5 100644
Kmods SIG 63c143
--- a/src/lznt.c
Kmods SIG 63c143
+++ b/src/lznt.c
Kmods SIG 63c143
@@ -5,13 +5,13 @@
Kmods SIG 63c143
  *
Kmods SIG 63c143
  */
Kmods SIG 63c143
 
Kmods SIG 63c143
-#include <linux/blkdev.h>
Kmods SIG 63c143
-#include <linux/buffer_head.h>
Kmods SIG 63c143
-#include <linux/fs.h>
Kmods SIG 63c143
-#include <linux/nls.h>
Kmods SIG 63c143
+#include <linux/kernel.h>
Kmods SIG 63c143
+#include <linux/slab.h>
Kmods SIG 63c143
+#include <linux/stddef.h>
Kmods SIG 63c143
+#include <linux/string.h>
Kmods SIG 63c143
+#include <linux/types.h>
Kmods SIG 63c143
 
Kmods SIG 63c143
 #include "debug.h"
Kmods SIG 63c143
-#include "ntfs.h"
Kmods SIG 63c143
 #include "ntfs_fs.h"
Kmods SIG 63c143
 
Kmods SIG 63c143
 // clang-format off
Kmods SIG 63c143
-- 
Kmods SIG 63c143
2.31.1
Kmods SIG 63c143