search for: 3c906a4

Displaying 5 results from an estimated 5 matches for "3c906a4".

Did you mean: 369064
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(-) --
2015 Feb 27
1
Re: [PATCH 3/4] New API: btrfstune_r
..._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 3c906a4..661ba9a 100644 > --- a/generator/actions.ml > +++ b/generator/actions.ml > @@ -12565,6 +12565,21 @@ so that you can use it tto build other filesystems." }; > Warning: This is dangerous, clearing the seeding flag > may cause the derived device not to be mountable!&quot...
2015 Feb 27
1
Re: [PATCH 2/4] New API: btrfstune_S_disable
...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 6dccb5c..3c906a4 100644 > --- a/generator/actions.ml > +++ b/generator/actions.ml > @@ -12547,6 +12547,24 @@ Get path on a btrfs filesystem for the logical address." }; > Enable seeding of a btrfs device, this will force a fs readonly > so that you can use it tto build other filesystems."...
2015 Feb 21
0
[PATCH 2/4] New API: btrfstune_S_disable
...f"); + 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 6dccb5c..3c906a4 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12547,6 +12547,24 @@ Get path on a btrfs filesystem for the logical address." }; Enable seeding of a btrfs device, this will force a fs readonly so that you can use it tto build other filesystems." }; + { defaults with...
2015 Feb 21
0
[PATCH 3/4] New API: btrfstune_r
..., "-r"); + 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 3c906a4..661ba9a 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12565,6 +12565,21 @@ so that you can use it tto build other filesystems." }; Warning: This is dangerous, clearing the seeding flag may cause the derived device not to be mountable!" }; + { defaults with...