|
@@ -13,10 +13,12 @@
|
|
|
enum ovl_path_type {
|
|
|
__OVL_PATH_UPPER = (1 << 0),
|
|
|
__OVL_PATH_MERGE = (1 << 1),
|
|
|
+ __OVL_PATH_ORIGIN = (1 << 2),
|
|
|
};
|
|
|
|
|
|
#define OVL_TYPE_UPPER(type) ((type) & __OVL_PATH_UPPER)
|
|
|
#define OVL_TYPE_MERGE(type) ((type) & __OVL_PATH_MERGE)
|
|
|
+#define OVL_TYPE_ORIGIN(type) ((type) & __OVL_PATH_ORIGIN)
|
|
|
|
|
|
#define OVL_XATTR_PREFIX XATTR_TRUSTED_PREFIX "overlay."
|
|
|
#define OVL_XATTR_OPAQUE OVL_XATTR_PREFIX "opaque"
|