Blame SOURCES/0044-fs-ntfs3.-Add-forward-declarations-for-structs-to-de.patch
|
Kmods SIG |
63c143 |
From cde81f13ef63d47c3f0742fbe6f17a5123cf6ca4 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:21 +0300
|
|
Kmods SIG |
63c143 |
Subject: [Backport cde81f13ef63] src. Add forward declarations for
|
|
Kmods SIG |
63c143 |
structs to debug.h
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
Add forward declarations for structs so that we can include this file
|
|
Kmods SIG |
63c143 |
without warnings even without linux/fs.h
|
|
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/debug.h | 3 +++
|
|
Kmods SIG |
63c143 |
1 file changed, 3 insertions(+)
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
diff --git a/src/debug.h b/src/debug.h
|
|
Kmods SIG |
63c143 |
index 31120569a87b9b07cf91f8e0b8c7291db059f4f3..53ef7489c75fd70f239d4e50af9a5e2f097c6bde 100644
|
|
Kmods SIG |
63c143 |
--- a/src/debug.h
|
|
Kmods SIG |
63c143 |
+++ b/src/debug.h
|
|
Kmods SIG |
63c143 |
@@ -11,6 +11,9 @@
|
|
Kmods SIG |
63c143 |
#ifndef _LINUX_NTFS3_DEBUG_H
|
|
Kmods SIG |
63c143 |
#define _LINUX_NTFS3_DEBUG_H
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
+struct super_block;
|
|
Kmods SIG |
63c143 |
+struct inode;
|
|
Kmods SIG |
63c143 |
+
|
|
Kmods SIG |
63c143 |
#ifndef Add2Ptr
|
|
Kmods SIG |
63c143 |
#define Add2Ptr(P, I) ((void *)((u8 *)(P) + (I)))
|
|
Kmods SIG |
63c143 |
#define PtrOffset(B, O) ((size_t)((size_t)(O) - (size_t)(B)))
|
|
Kmods SIG |
63c143 |
--
|
|
Kmods SIG |
63c143 |
2.31.1
|
|
Kmods SIG |
63c143 |
|