search for: btrfs_fs

Displaying 3 results from an estimated 3 matches for "btrfs_fs".

2010 Apr 03
1
[PATCH] btrfs support
Hi, As I use btrfs as root FS, I wanted fstype to be able to recognize it. The following patch add support for this FS. Regards, benjamin Signed-off-by: Benjamin Cama <benoar at free.fr> --- diff --git a/usr/kinit/fstype/btrfs_fs.h b/usr/kinit/fstype/btrfs_fs.h new file mode 100644 index 0000000..e1f933e --- /dev/null +++ b/usr/kinit/fstype/btrfs_fs.h @@ -0,0 +1,51 @@ +#ifndef __BTRFS_FS_H +#define __BTRFS_FS_H + +/* Extracted from fs/btrfs/ctree.h and shortened a bit */ + +#define BTRFS_MAGIC "_BHRfS_M" + +#defin...
2009 Feb 04
1
[PATCH] New fs-specific Kconfig options should go in fs/$FS/Kconfig, not fs/Kconfig.
...ions(+), 13 deletions(-) diff --git a/fs/Kconfig b/fs/Kconfig index 6198082..ef81718 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -51,19 +51,6 @@ source "fs/xfs/Kconfig" source "fs/gfs2/Kconfig" source "fs/ocfs2/Kconfig" source "fs/btrfs/Kconfig" - -config BTRFS_FS_POSIX_ACL - bool "Btrfs POSIX Access Control Lists" - select FS_POSIX_ACL - help - POSIX Access Control Lists (ACLs) support permissions for users and - groups beyond the owner/group/world scheme. - - To learn more about Access Control Lists, visit the POSIX ACLs for - Linux websi...
2013 Mar 15
0
[PATCH] Btrfs: add some free space cache tests
...+++++++++++++++++++ fs/btrfs/free-space-cache.h | 5 + fs/btrfs/super.c | 5 + 4 files changed, 540 insertions(+), 0 deletions(-) diff --git a/fs/btrfs/Kconfig b/fs/btrfs/Kconfig index 5f583c8..4b3ac45 100644 --- a/fs/btrfs/Kconfig +++ b/fs/btrfs/Kconfig @@ -53,3 +53,14 @@ config BTRFS_FS_CHECK_INTEGRITY In most cases, unless you are a btrfs developer who needs to verify the integrity of (super)-block write requests during the run of a regression test, say N + +config BTRFS_FS_RUN_SANITY_TESTS + bool "Btrfs will run sanity tests upon loading" + depends on BTRFS...