Displaying 5 results from an estimated 5 matches for "3af8380".
Did you mean:
3378380
2014 Dec 05
2
Re: [PATCH 4/8] New API: btrfs_quota_disable
...DD_ARG (argv, i, NULL);
> +
> + r = commandv (&out, &err, argv);
> + if (r == -1) {
> + reply_with_error ("%s: %s", path, err);
> + return -1;
> + }
> +
> + return 0;
> +}
> diff --git a/generator/actions.ml b/generator/actions.ml
> index 3af8380..ab1a07a 100644
> --- a/generator/actions.ml
> +++ b/generator/actions.ml
> @@ -12054,6 +12054,15 @@ Return detailed information of the subvolume." };
> longdesc = "\
> Enable subvolume quota support for filesystem which contains C<path>." };
>
> +...
2014 Dec 02
0
[PATCH 3/8] New API: btrfs_quota_enable
...e");
+ ADD_ARG (argv, i, path_buf);
+ ADD_ARG (argv, i, NULL);
+
+ r = commandv (&out, &err, argv);
+ if (r == -1) {
+ reply_with_error ("%s: %s", path, err);
+ return -1;
+ }
+
+ return 0;
+}
diff --git a/generator/actions.ml b/generator/actions.ml
index d5ec528..3af8380 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -12045,6 +12045,15 @@ Get the default subvolume or snapshot of a filesystem mounted at C<mountpoint>."
longdesc = "\
Return detailed information of the subvolume." };
+ { defaults with
+ name = "bt...
2014 Dec 02
0
[PATCH 4/8] New API: btrfs_quota_disable
...ot;disable");
+ ADD_ARG (argv, i, path_buf);
+ ADD_ARG (argv, i, NULL);
+
+ r = commandv (&out, &err, argv);
+ if (r == -1) {
+ reply_with_error ("%s: %s", path, err);
+ return -1;
+ }
+
+ return 0;
+}
diff --git a/generator/actions.ml b/generator/actions.ml
index 3af8380..ab1a07a 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -12054,6 +12054,15 @@ Return detailed information of the subvolume." };
longdesc = "\
Enable subvolume quota support for filesystem which contains C<path>." };
+ { defaults with
+ name = "...
2014 Dec 09
0
Re: [PATCH 4/8] New API: btrfs_quota_disable
...mmandv (&out, &err, argv);
> > + if (r == -1) {
> > + reply_with_error ("%s: %s", path, err);
> > + return -1;
> > + }
> > +
> > + return 0;
> > +}
> > diff --git a/generator/actions.ml b/generator/actions.ml
> > index 3af8380..ab1a07a 100644
> > --- a/generator/actions.ml
> > +++ b/generator/actions.ml
> > @@ -12054,6 +12054,15 @@ Return detailed information of the subvolume." };
> > longdesc = "\
> > Enable subvolume quota support for filesystem which contains C<path>...
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: