-
Notifications
You must be signed in to change notification settings - Fork 85
Open
Description
Incompatible PERFILE_DAX flag. I only noticed about this project as Vivek Goyal pointed me to it on the fsdevel list and I checked used flags because of this patch https://marc.info/?l=linux-fsdevel&m=165002361802294&w=2
And then noticed that PERFILE_DAX flag is conflicting with FUSE_INIT_EXT
Looks like you are on a non-upstream kernel with patches?
linux master include/uapi/linux/fuse.h
...
#define FUSE_INIT_EXT (1 << 30)
#define FUSE_INIT_RESERVED (1 << 31)
/* bits 32..63 get shifted down 32 bits into the flags2 field */
#define FUSE_SECURITY_CTX (1ULL << 32)
#define FUSE_HAS_INODE_DAX (1ULL << 33)
Btw, any reason you are not using 1 << number for the flags? In my personal opinion so much easier to read...
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels