Displaying 5 results from an estimated 5 matches for "5fcb85b".
2014 Dec 05
2
Re: [PATCH 4/8] New API: btrfs_quota_disable
...cn.fujitsu.com>
> ---
> daemon/btrfs.c | 31 +++++++++++++++++++++++++++++++
> generator/actions.ml | 9 +++++++++
> src/MAX_PROC_NR | 2 +-
> 3 files changed, 41 insertions(+), 1 deletion(-)
>
> diff --git a/daemon/btrfs.c b/daemon/btrfs.c
> index 31dd806..5fcb85b 100644
> --- a/daemon/btrfs.c
> +++ b/daemon/btrfs.c
> @@ -1026,3 +1026,34 @@ int do_btrfs_quota_enable (const char *path)
>
> return 0;
> }
> +
> +int do_btrfs_quota_disable (const char *path)
> +{
> + const size_t MAX_ARGS = 64;
> + const char *argv[MAX_AR...
2014 Dec 02
0
[PATCH 4/8] New API: btrfs_quota_disable
...lumes.
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
daemon/btrfs.c | 31 +++++++++++++++++++++++++++++++
generator/actions.ml | 9 +++++++++
src/MAX_PROC_NR | 2 +-
3 files changed, 41 insertions(+), 1 deletion(-)
diff --git a/daemon/btrfs.c b/daemon/btrfs.c
index 31dd806..5fcb85b 100644
--- a/daemon/btrfs.c
+++ b/daemon/btrfs.c
@@ -1026,3 +1026,34 @@ int do_btrfs_quota_enable (const char *path)
return 0;
}
+
+int do_btrfs_quota_disable (const char *path)
+{
+ const size_t MAX_ARGS = 64;
+ const char *argv[MAX_ARGS];
+ size_t i = 0;
+ CLEANUP_FREE char *path_buf =...
2014 Dec 02
0
[PATCH 5/8] New API: btrfs_quota_rescan
...current config.
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
daemon/btrfs.c | 31 +++++++++++++++++++++++++++++++
generator/actions.ml | 9 +++++++++
src/MAX_PROC_NR | 2 +-
3 files changed, 41 insertions(+), 1 deletion(-)
diff --git a/daemon/btrfs.c b/daemon/btrfs.c
index 5fcb85b..6918d4f 100644
--- a/daemon/btrfs.c
+++ b/daemon/btrfs.c
@@ -1057,3 +1057,34 @@ int do_btrfs_quota_disable (const char *path)
return 0;
}
+
+int do_btrfs_quota_rescan (const char *path)
+{
+ const size_t MAX_ARGS = 64;
+ const char *argv[MAX_ARGS];
+ size_t i = 0;
+ CLEANUP_FREE char *pa...
2014 Dec 09
0
Re: [PATCH 4/8] New API: btrfs_quota_disable
...t; daemon/btrfs.c | 31 +++++++++++++++++++++++++++++++
> > generator/actions.ml | 9 +++++++++
> > src/MAX_PROC_NR | 2 +-
> > 3 files changed, 41 insertions(+), 1 deletion(-)
> >
> > diff --git a/daemon/btrfs.c b/daemon/btrfs.c
> > index 31dd806..5fcb85b 100644
> > --- a/daemon/btrfs.c
> > +++ b/daemon/btrfs.c
> > @@ -1026,3 +1026,34 @@ int do_btrfs_quota_enable (const char *path)
> >
> > return 0;
> > }
> > +
> > +int do_btrfs_quota_disable (const char *path)
> > +{
> > + const siz...
2014 Dec 02
21
[PATCH 0/8] btrfs support part2: qgroup commands
Hi,
This series adds support to btrfs qgroup related commands, inclduing
quota commands, and two leftover of subvolume commands.
Regards,
Hu
Hu Tao (8):
New API: btrfs_subvolume_get_default
New API: btrfs_subvolume_show
New API: btrfs_quota_enable
New API: btrfs_quota_disable
New API: btrfs_quota_rescan
New API: btrfs_qgroup_limit
New API: btrfs_qgroup_create
New API: