|
@@ -81,6 +81,13 @@ static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
|
|
iflags |= FS_NOATIME_FL;
|
|
iflags |= FS_NOATIME_FL;
|
|
if (flags & BTRFS_INODE_DIRSYNC)
|
|
if (flags & BTRFS_INODE_DIRSYNC)
|
|
iflags |= FS_DIRSYNC_FL;
|
|
iflags |= FS_DIRSYNC_FL;
|
|
|
|
+ if (flags & BTRFS_INODE_NODATACOW)
|
|
|
|
+ iflags |= FS_NOCOW_FL;
|
|
|
|
+
|
|
|
|
+ if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
|
|
|
|
+ iflags |= FS_COMPR_FL;
|
|
|
|
+ else if (flags & BTRFS_INODE_NOCOMPRESS)
|
|
|
|
+ iflags |= FS_NOCOMP_FL;
|
|
|
|
|
|
return iflags;
|
|
return iflags;
|
|
}
|
|
}
|