Displaying 3 results from an estimated 3 matches for "9888f94".
2015 Feb 27
1
Re: [PATCH 4/4] New API: btrfstune_x
...v, i, NULL);
> +
> + r = commandv (&out, &err, argv);
> + if (r == -1) {
> + reply_with_error ("%s: %s", device, err);
> + return -1;
> + }
> +
> + return 0;
> +}
> diff --git a/generator/actions.ml b/generator/actions.ml
> index 661ba9a..9888f94 100644
> --- a/generator/actions.ml
> +++ b/generator/actions.ml
> @@ -12580,6 +12580,21 @@ so that you can use it tto build other filesystems." };
> longdesc = "\
> This will Enable extended inode refs." };
>
> + { defaults with
> + name = &qu...
2015 Feb 21
0
[PATCH 4/4] New API: btrfstune_x
...x");
+ ADD_ARG (argv, i, device);
+ ADD_ARG (argv, i, NULL);
+
+ r = commandv (&out, &err, argv);
+ if (r == -1) {
+ reply_with_error ("%s: %s", device, err);
+ return -1;
+ }
+
+ return 0;
+}
diff --git a/generator/actions.ml b/generator/actions.ml
index 661ba9a..9888f94 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -12580,6 +12580,21 @@ so that you can use it tto build other filesystems." };
longdesc = "\
This will Enable extended inode refs." };
+ { defaults with
+ name = "btrfstune_x";
+ style = RErr,...
2015 Feb 21
7
[PATCH 0/4] btrfs: add support to btrfstune
This series adds new APIs to support btrfstune.
Chen Hanxiao (4):
New API: btrfstune_S_enable
New API: btrfstune_S_disable
New API: btrfstune_r
New API: btrfstune_x
daemon/btrfs.c | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++
generator/actions.ml | 64 +++++++++++++++++++++++++++++++++
src/MAX_PROC_NR | 2 +-
3 files changed, 164 insertions(+), 1 deletion(-)
--