diff options
author | Amir Goldstein <amir73il@gmail.com> | 2017-10-30 13:33:11 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2017-11-09 10:23:27 +0100 |
commit | ee023c30d7d6bc21d3a85f3625a30209bdcc41e6 (patch) | |
tree | 18e934c910e91e9fd72b9f6bb1ee2d652c310163 /fs/overlayfs/overlayfs.h | |
parent | 07f6fff148364ad7c0174d6536a124a0679177a2 (diff) | |
download | op-kernel-dev-ee023c30d7d6bc21d3a85f3625a30209bdcc41e6.zip op-kernel-dev-ee023c30d7d6bc21d3a85f3625a30209bdcc41e6.tar.gz |
ovl: move include of ovl_entry.h into overlayfs.h
Most overlayfs c files already explicitly include ovl_entry.h
to use overlay entry struct definitions and upcoming changes
are going to require even more c files to include this header.
All overlayfs c files include overlayfs.h and overlayfs.h itself
refers to some structs defined in ovl_entry.h, so it seems more
logic to include ovl_entry.h from overlayfs.h than from c files.
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/overlayfs/overlayfs.h')
-rw-r--r-- | fs/overlayfs/overlayfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/overlayfs/overlayfs.h b/fs/overlayfs/overlayfs.h index d53157c..1cf3bdd 100644 --- a/fs/overlayfs/overlayfs.h +++ b/fs/overlayfs/overlayfs.h @@ -9,6 +9,7 @@ #include <linux/kernel.h> #include <linux/uuid.h> +#include "ovl_entry.h" enum ovl_path_type { __OVL_PATH_UPPER = (1 << 0), |