search for: btrfs_mount_ssd

Displaying 1 result from an estimated 1 matches for "btrfs_mount_ssd".

Did you mean: btrfs_mount_nossd
2012 Sep 18
3
R: [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_FLUSHONCOMMIT (1 << 7) >+#define BTRFS_MOUNT_SSD_SPREAD (1 << 8) >+#defi...