summaryrefslogtreecommitdiffstats
path: root/fs/overlayfs/overlayfs.h
diff options
context:
space:
mode:
authorAmir Goldstein <amir73il@gmail.com>2017-07-12 07:17:16 -0400
committerMiklos Szeredi <mszeredi@redhat.com>2018-01-24 05:25:59 -0500
commit8ed5eec9d6c4c013aa657ebefbd10a1a0d15893d (patch)
tree634ea6f80f9212f0d81c846145a8b260f2c6d34a /fs/overlayfs/overlayfs.h
parenta01f64b5c06ca1130b0b72ceb5e2a25e4d37ab08 (diff)
ovl: encode pure upper file handles
Encode overlay file handles as struct ovl_fh containing the file handle encoding of the real upper inode. 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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/overlayfs/overlayfs.h b/fs/overlayfs/overlayfs.h
index 2dddcd257eb3..f2baa2ccaacd 100644
--- a/fs/overlayfs/overlayfs.h
+++ b/fs/overlayfs/overlayfs.h
@@ -68,6 +68,9 @@ enum ovl_entry_flag {
68#error Endianness not defined 68#error Endianness not defined
69#endif 69#endif
70 70
71/* The type returned by overlay exportfs ops when encoding an ovl_fh handle */
72#define OVL_FILEID 0xfb
73
71/* On-disk and in-memeory format for redirect by file handle */ 74/* On-disk and in-memeory format for redirect by file handle */
72struct ovl_fh { 75struct ovl_fh {
73 u8 version; /* 0 */ 76 u8 version; /* 0 */
@@ -351,3 +354,6 @@ int ovl_set_attr(struct dentry *upper, struct kstat *stat);
351struct ovl_fh *ovl_encode_fh(struct dentry *real, bool is_upper); 354struct ovl_fh *ovl_encode_fh(struct dentry *real, bool is_upper);
352int ovl_set_origin(struct dentry *dentry, struct dentry *lower, 355int ovl_set_origin(struct dentry *dentry, struct dentry *lower,
353 struct dentry *upper); 356 struct dentry *upper);
357
358/* export.c */
359extern const struct export_operations ovl_export_operations;