search for: 5301a29

Displaying 7 results from an estimated 7 matches for "5301a29".

Did you mean: 53.129
2015 Feb 13
1
[PATCH] actions.ml: fix a typo
s/scannning/scanning Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com> --- generator/actions.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/actions.ml b/generator/actions.ml index 5301a29..6c6849d 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12397,7 +12397,7 @@ Defragment a file or directory on a btrfs filesystem. compress is one of zlib or ]; shortdesc = "recover the chunk tree of btrfs filesystem"; longdesc = "\ -Recover the chunk...
2015 Feb 13
3
[PATCH v4 0/2] add btrfs_balance_status and btrfs_scrub_status
v4: - add reply_with_error when nlines < 1 - remove `i == X' tests. v3: - rebase on upstream - fix some comments v2: - add check for the length of lines[] - the code parsing 'btrfs scrub -R status' output is changed into a loop Hu Tao (2): New API: btrfs_balance_status New API: btfs_scrub_status daemon/btrfs.c | 268
2015 Feb 11
4
[PATCH v3 0/2] add btrfs_balance_status and btrfs_scrub_status
v3: - rebase on upstream - fix some comments v2: - add check for the length of lines[] - the code parsing 'btrfs scrub -R status' output is changed into a loop Hu Tao (2): New API: btrfs_balance_status New API: btfs_scrub_status daemon/btrfs.c | 263 +++++++++++++++++++++++++++++++ generator/actions.ml | 26 +++
2015 Feb 11
0
[PATCH v3 1/2] New API: btrfs_balance_status
...alance_left) != 4) { + reply_with_perror ("sscanf"); + goto error; + } + + pcre_free (re); + return ret; + +error: + free (ret->btrfsbalance_status); + free (ret); + pcre_free (re); + + return NULL; +} diff --git a/generator/actions.ml b/generator/actions.ml index 6b37712..5301a29 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12449,6 +12449,16 @@ valid GUID." }; longdesc = "\ Return the GUID of numbered GPT partition C<partnum>." }; +{ defaults with + name = "btrfs_balance_status"; + style = RStruct ("statu...
2015 Feb 13
0
[PATCH v4 1/2] New API: btrfs_balance_status
...alance_left) != 4) { + reply_with_perror ("sscanf"); + goto error; + } + + pcre_free (re); + return ret; + +error: + free (ret->btrfsbalance_status); + free (ret); + pcre_free (re); + + return NULL; +} diff --git a/generator/actions.ml b/generator/actions.ml index 6b37712..5301a29 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12449,6 +12449,16 @@ valid GUID." }; longdesc = "\ Return the GUID of numbered GPT partition C<partnum>." }; +{ defaults with + name = "btrfs_balance_status"; + style = RStruct ("statu...
2015 Feb 11
0
[PATCH v3 2/2] New API: btfs_scrub_status
...om 'btrfs scrub status -R' command"); + free (ret); + return NULL; + } + + return ret; + +error: + reply_with_error ("%s: could not parse btrfs scrub status.", lines[i]); + free (ret); + return NULL; +} diff --git a/generator/actions.ml b/generator/actions.ml index 5301a29..f82ac32 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12459,6 +12459,22 @@ Return the GUID of numbered GPT partition C<partnum>." }; longdesc = "\ Show the status of a running or paused balance on a btrfs filesystem." }; + { defaults with + name...
2015 Feb 13
1
Re: [PATCH v4 1/2] New API: btrfs_balance_status
...goto error; > + } > + > + pcre_free (re); > + return ret; > + > +error: > + free (ret->btrfsbalance_status); > + free (ret); > + pcre_free (re); > + > + return NULL; > +} > diff --git a/generator/actions.ml b/generator/actions.ml > index 6b37712..5301a29 100644 > --- a/generator/actions.ml > +++ b/generator/actions.ml > @@ -12449,6 +12449,16 @@ valid GUID." }; > longdesc = "\ > Return the GUID of numbered GPT partition C<partnum>." }; > > +{ defaults with > + name = "btrfs_balance_status&...