diff mbox series

[04/11] utils: add missing global.h include

Message ID 20220428151559.947144-5-brauner@kernel.org (mailing list archive)
State New, archived
Headers show
Series rename & split tests | expand

Commit Message

Christian Brauner April 28, 2022, 3:15 p.m. UTC
Make sure that utils.{c,h} have access to the necessary defines created
during the configure stage when building xfstests.

Cc: Dave Chinner <david@fromorbit.com>
Cc: Amir Goldstein <amir73il@gmail.com>
Cc: Eryu Guan <guaneryu@gmail.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Zorro Lang <zlang@redhat.com>
Cc: "Darrick J. Wong" <djwong@kernel.org>
Cc: fstests <fstests@vger.kernel.org>
Signed-off-by: Christian Brauner (Microsoft) <brauner@kernel.org>
---
 src/vfs/utils.h | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/src/vfs/utils.h b/src/vfs/utils.h
index 06247ec7..ccf2cefb 100644
--- a/src/vfs/utils.h
+++ b/src/vfs/utils.h
@@ -3,6 +3,8 @@ 
 #ifndef __IDMAP_UTILS_H
 #define __IDMAP_UTILS_H
 
+#include "../global.h"
+
 #ifndef _GNU_SOURCE
 #define _GNU_SOURCE
 #endif