search for: btrfstune_seeding

Displaying 11 results from an estimated 11 matches for "btrfstune_seeding".

2015 Mar 01
0
[PATCH v2 1/3] New API: btrfstune_seeding
Use btrfstune_seeding to enable or disable seeding. Signed-off-by: Chen Hanxiao <chenhanxiao at cn.fujitsu.com> --- daemon/btrfs.c | 28 ++++++++++++++++++++++++++++ generator/actions.ml | 17 +++++++++++++++++ src/MAX_PROC_NR | 2 +- 3 files changed, 46 insertions(+), 1 deletion(-) diff --git a/dae...
2015 Mar 01
5
[PATCH v2 0/3] btrfs: add support to btrfstune
This series adds new APIs to support btrfstune. v2: - merge btrfstune_S_[enable|disable] together - fix naming issue Chen Hanxiao (3): New API: btrfstune_seeding New API: btrfstune_enable_extended_inode_refs New API: btrfstune_enable_skinny_metadata_extent_refs daemon/btrfs.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++ generator/actions.ml | 47 ++++++++++++++++++++++++++++++++ src/MAX_PROC_NR | 2 +- 3 files changed, 124 in...
2015 May 19
2
libguestfs error: mkfs_btrfs
..._0 4/515 test_btrfstune_enable_extended_inode_refs_0 libguestfs: error: btrfstune_enable_extended_inode_refs: /dev/vda1: btrfstune: invalid option -- 'r' usage: btrfstune [options] device -S value enable/disable seeding FAIL: test_btrfstune_enable_extended_inode_refs_0 5/515 test_btrfstune_seeding_0 libguestfs: error: btrfstune_seeding: /dev/vda1: btrfstune: invalid option -- 'f' I found two patch https://www.redhat.com/archives/libguestfs/2012-May/msg00018.htmlvirt-make-fs Fix estimation when making btrfs (but there is no virt-make-fs under tools) https://www.redhat.com/archives...
2015 Feb 27
1
Re: [PATCH 2/4] New API: btrfstune_S_disable
...a btrfs device. > + Warning: This is dangerous, clearing the seeding flag > + may cause the derived device not to be mountable!" }; > + Sorry for the delayed reply. How do you feel about combining btrfstune_S_enable & btrfstune_S_disable into a single call: name = "btrfstune_seeding"; style = RErr, [Device "device", Bool "enable"], []; where you can enable or disable by setting the boolean? The two patches look otherwise fine to me. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and vir...
2015 Mar 01
0
Re: [PATCH v2 0/3] btrfs: add support to btrfstune
On Sun, Mar 01, 2015 at 02:20:46AM -0500, Chen Hanxiao wrote: > This series adds new APIs to support btrfstune. > > v2: > - merge btrfstune_S_[enable|disable] together > - fix naming issue > > Chen Hanxiao (3): > New API: btrfstune_seeding > New API: btrfstune_enable_extended_inode_refs > New API: btrfstune_enable_skinny_metadata_extent_refs > > daemon/btrfs.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++ > generator/actions.ml | 47 ++++++++++++++++++++++++++++++++ > src/MAX_PROC_NR |...
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(-) --
2017 Feb 21
1
[PATCH] generator: Put all the daemon procedure numbers (proc_nr)
This is a follow-up to the other generator changes in: https://www.redhat.com/archives/libguestfs/2017-February/msg00217.html Rich.
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...me, "path")], []; optional = Some "btrfs"; camel_name = "BTRFSScrubStatus"; tests = [ InitPartition, Always, TestRun ( @@ -9301,7 +9301,7 @@ Show status of running or finished scrub on a btrfs filesystem." }; { defaults with name = "btrfstune_seeding"; added = (1, 29, 29); - style = RErr, [Device "device"; Bool "seeding"], []; + style = RErr, [String (Device, "device"); Bool "seeding"], []; optional = Some "btrfs"; camel_name = "BTRFSTuneSeeding"; tests = [...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of local disk. Rich.