mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
FROMLIST: fuse: Fix colliding FUSE_PASSTHROUGH flag
The FUSE_PASSTHROUGH flag has a conflict with linux-next, in which this id
has been reserved for other purposes.
Update FUSE_PASSTHROUGH bit id to one that has not been reserved upstream
yet.
Bug: 168023149
Fixes: 314603f83d ("FROMLIST: fuse: Definitions and ioctl() for passthrough")
Link: https://lore.kernel.org/lkml/20201026125016.1905945-2-balsini@android.com/
Signed-off-by: Alessio Balsini <balsini@google.com>
Change-Id: Ida0097fd2f9adee3bc85526dc6c78c7a87ac8f13
This commit is contained in:
@@ -349,7 +349,7 @@ struct fuse_file_lock {
|
||||
#define FUSE_EXPLICIT_INVAL_DATA (1 << 25)
|
||||
#define FUSE_MAP_ALIGNMENT (1 << 26)
|
||||
#define FUSE_SUBMOUNTS (1 << 27)
|
||||
#define FUSE_PASSTHROUGH (1 << 28)
|
||||
#define FUSE_PASSTHROUGH (1 << 31)
|
||||
|
||||
/**
|
||||
* CUSE INIT request/reply flags
|
||||
|
||||
Reference in New Issue
Block a user