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

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