Displaying 1 result from an estimated 1 matches for "btrfs_mount_nodatacow".
2012 Sep 18
3
R: [PATCH 2/2] Btrfs-progs: add mount-option command
...ux-btrfs@vger.kernel.org>
>Ogg: [PATCH 2/2] Btrfs-progs: add mount-option command
>
[...]
>+/*
>+ * Flags for mount options.
>+ *
>+ * Note: don''t forget to add new options to btrfs_show_options()
>+ */
>+#define BTRFS_MOUNT_NODATASUM (1 << 0)
>+#define BTRFS_MOUNT_NODATACOW (1 << 1)
>+#define BTRFS_MOUNT_NOBARRIER (1 << 2)
>+#define BTRFS_MOUNT_SSD (1 << 3)
>+#define BTRFS_MOUNT_DEGRADED (1 << 4)
>+#define BTRFS_MOUNT_COMPRESS (1 << 5)
>+#define BTRFS_MOUNT_NOTREELOG (1 << 6)
>+#define BTRFS_MOUNT_F...