Displaying 3 results from an estimated 3 matches for "guestfs_btrfs_quota".
2014 Dec 05
2
Re: [PATCH 4/8] New API: btrfs_quota_disable
...le only in guestfish.
> diff --git a/src/MAX_PROC_NR b/src/MAX_PROC_NR
> index d2a1e59..43d371a 100644
> --- a/src/MAX_PROC_NR
> +++ b/src/MAX_PROC_NR
> @@ -1 +1 @@
> -427
> +428
ACK.
Could do with a test.
How about combining this with the previous API, so you'd have:
guestfs_btrfs_quota (guestfs_h *g, int enable);
?
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
libguestfs lets you edit virtual machines. Supports shell scripting,
bindings from many languages. http:/...
2014 Dec 09
0
Re: [PATCH 4/8] New API: btrfs_quota_disable
..._NR
> > index d2a1e59..43d371a 100644
> > --- a/src/MAX_PROC_NR
> > +++ b/src/MAX_PROC_NR
> > @@ -1 +1 @@
> > -427
> > +428
>
> ACK.
>
> Could do with a test.
>
> How about combining this with the previous API, so you'd have:
>
> guestfs_btrfs_quota (guestfs_h *g, int enable);
>
> ?
Okay, it's more neat. But I changed it into
guestfs_btrfs_quota_enable (guestfs_h *g, const char *path, int enable)
BTW, why not generate bool for c from ocaml Bool?
Regards,
Hu
>
> Rich.
>
> --
> Richard Jones, Virtualization Gr...
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: