Displaying 14 results from an estimated 14 matches for "a04d".
Did you mean:
a04
2014 Nov 24
1
Re: [PATCH 6/6] New API: btrfs_subvolume_show
...volume, err);
> > > + return NULL;
> > > + }
> > > +
> > > + /* Output is:
> > > + *
> > > + * /
> > > + * Name: root
> > > + * uuid:
> > > c875169e-cf4e-a04d-9959-b667dec36234 + * Parent uuid:
> > > -
> > > + * Creation time: 2014-11-13 10:13:08
> > > + * Object ID: 256
> > > + * Generation (Gen): 6579
> > > + * Gen at cr...
2014 Nov 21
3
Re: [PATCH 6/6] New API: btrfs_subvolume_show
...ut, &err, argv);
> + if (r == -1) {
> + reply_with_error ("%s: %s", subvolume, err);
> + return NULL;
> + }
> +
> + /* Output is:
> + *
> + * /
> + * Name: root
> + * uuid: c875169e-cf4e-a04d-9959-b667dec36234
> + * Parent uuid: -
> + * Creation time: 2014-11-13 10:13:08
> + * Object ID: 256
> + * Generation (Gen): 6579
> + * Gen at creation: 5
> + * Parent:...
2014 Nov 21
0
[PATCH 6/6] New API: btrfs_subvolume_show
...ADD_ARG (argv, i, NULL);
+
+ r = commandv (&out, &err, argv);
+ if (r == -1) {
+ reply_with_error ("%s: %s", subvolume, err);
+ return NULL;
+ }
+
+ /* Output is:
+ *
+ * /
+ * Name: root
+ * uuid: c875169e-cf4e-a04d-9959-b667dec36234
+ * Parent uuid: -
+ * Creation time: 2014-11-13 10:13:08
+ * Object ID: 256
+ * Generation (Gen): 6579
+ * Gen at creation: 5
+ * Parent: 5
+ * Top...
2014 Dec 02
0
[PATCH 2/8] New API: btrfs_subvolume_show
...ADD_ARG (argv, i, NULL);
+
+ r = commandv (&out, &err, argv);
+ if (r == -1) {
+ reply_with_error ("%s: %s", subvolume, err);
+ return NULL;
+ }
+
+ /* Output is:
+ *
+ * /
+ * Name: root
+ * uuid: c875169e-cf4e-a04d-9959-b667dec36234
+ * Parent uuid: -
+ * Creation time: 2014-11-13 10:13:08
+ * Object ID: 256
+ * Generation (Gen): 6579
+ * Gen at creation: 5
+ * Parent: 5
+ * Top...
2014 Dec 05
1
Re: [PATCH 2/8] New API: btrfs_subvolume_show
...ut, &err, argv);
> + if (r == -1) {
> + reply_with_error ("%s: %s", subvolume, err);
> + return NULL;
> + }
> +
> + /* Output is:
> + *
> + * /
> + * Name: root
> + * uuid: c875169e-cf4e-a04d-9959-b667dec36234
> + * Parent uuid: -
> + * Creation time: 2014-11-13 10:13:08
> + * Object ID: 256
> + * Generation (Gen): 6579
> + * Gen at creation: 5
> + * Parent:...
2014 Nov 24
0
Re: [PATCH 6/6] New API: btrfs_subvolume_show
...gt; > + reply_with_error ("%s: %s", subvolume, err);
> > + return NULL;
> > + }
> > +
> > + /* Output is:
> > + *
> > + * /
> > + * Name: root
> > + * uuid: c875169e-cf4e-a04d-9959-b667dec36234
> > + * Parent uuid: -
> > + * Creation time: 2014-11-13 10:13:08
> > + * Object ID: 256
> > + * Generation (Gen): 6579
> > + * Gen at creation: 5
> >...
2014 Nov 21
13
[PATCH 0/6] btrfs support part1: subvolume commands
Hi,
This is the part1 of improving btrfs support. This series adds missing
parameters to btrfs_subvolume_snapshot and btrfs_subvolume_create, and
adds two new API btrfs_subvolume_get_default and btrfs_subvolume_show.
Other parts will follow.
Regards,
Hu
Hu Tao (6):
btrfs: correct words about subvolume and snapshot
btrfs: add optional parameter `ro' to btrfs_subvolume_snapshot
btrfs:
2014 Nov 26
7
[PATCH v2 0/5] btrfs support part1: subvolume commands
Hi,
This is the part1 of improving btrfs support. This series adds missing
parameters to btrfs_subvolume_snapshot and btrfs_subvolume_create, and
adds two new API btrfs_subvolume_get_default and btrfs_subvolume_show.
Other parts will follow.
Regards,
Hu
changes:
v2:
- add 'once_had_no_optargs = true' for btrfs_subvolume_snapshot and
btrfs_subvolume_create
- improved documents
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:
2014 Dec 12
15
[PATCH v3 00/11] btrfs support part2: qgroup/quota commands
Hi,
This is v3 series to add support to btrfs qgroup related commands, inclduing
quota commands, and two leftover of subvolume commands.
Regards,
Hu
changes:
v3:
- don't intialize fs_buf (patch 1)
- check the return value of sysroot_path (patch 1)
- check fs_buf rather than fs (patch 1)
- fprintf (stderr,...) -> reply_with_error()
v2:
- add tests for new APIs
- combine
2014 Dec 11
14
[PATCH v2 00/11] btrfs support part2: qgroup/quota commands
Hi,
This is v2 series to add support to btrfs qgroup related commands, inclduing
quota commands, and two leftover of subvolume commands.
Regards,
Hu
changes:
v2:
- add tests for new APIs
- combine btrfs_quota_enable and btrfs_quota_disable
- following APIs changed to operate on Mountable_or_Path:
btrfs_subvolume_get_default, btrfs_quota_enable, btrfs_quota_rescan.
Hu Tao (11):
2017 Oct 26
0
not healing one file
Hey Richard,
Could you share the following informations please?
1. gluster volume info <volname>
2. getfattr output of that file from all the bricks
getfattr -d -e hex -m . <brickpath/filepath>
3. glustershd & glfsheal logs
Regards,
Karthik
On Thu, Oct 26, 2017 at 10:21 AM, Amar Tumballi <atumball at redhat.com> wrote:
> On a side note, try recently released health
2017 Oct 26
3
not healing one file
On a side note, try recently released health report tool, and see if it
does diagnose any issues in setup. Currently you may have to run it in all
the three machines.
On 26-Oct-2017 6:50 AM, "Amar Tumballi" <atumball at redhat.com> wrote:
> Thanks for this report. This week many of the developers are at Gluster
> Summit in Prague, will be checking this and respond next
2017 Oct 26
2
not healing one file
...heal-common.c:1327:afr_log_selfheal] 0-home-replicate-0: Completed metadata selfheal on cc28e293-9b7c-4e42-923a-05c358e55b06. sources=0 [2] sinks=1
[2017-10-25 10:40:19.569274] I [MSGID: 108026] [afr-self-heal-common.c:1327:afr_log_selfheal] 0-home-replicate-0: Completed data selfheal on 318570de-a04d-4123-8862-f002b767df27. sources=0 [2] sinks=1
[2017-10-25 10:40:19.571007] I [MSGID: 108026] [afr-self-heal-metadata.c:52:__afr_selfheal_metadata_do] 0-home-replicate-0: performing metadata selfheal on 318570de-a04d-4123-8862-f002b767df27
[2017-10-25 10:40:19.574605] I [MSGID: 108026] [afr-self-h...