search for: a69c512

Displaying 5 results from an estimated 5 matches for "a69c512".

Did you mean: 369512
2015 Jun 26
3
Re: [PATCH v3.1 1/9] uuid: add support to change uuid of btrfs partition
...++++++++++++++++++++ > daemon/daemon.h | 1 + > daemon/uuids.c | 6 ++--- > tests/btrfs/test-btrfs-misc.pl | 17 ++++++++++++ > 4 files changed, 80 insertions(+), 4 deletions(-) > > diff --git a/daemon/btrfs.c b/daemon/btrfs.c > index 20e5e6b..a69c512 100644 > --- a/daemon/btrfs.c > +++ b/daemon/btrfs.c > @@ -790,6 +790,44 @@ do_btrfs_device_delete (char *const *devices, const char *fs) > return 0; > } > > + > +/* btrfstune command add two new options > + * -U UUID change fsid to UUID > + * -u c...
2015 Jun 29
1
Re: [PATCH v3.1 1/9] uuid: add support to change uuid of btrfs partition
...1 + > > > daemon/uuids.c | 6 ++--- > > > tests/btrfs/test-btrfs-misc.pl | 17 ++++++++++++ > > > 4 files changed, 80 insertions(+), 4 deletions(-) > > > > > > diff --git a/daemon/btrfs.c b/daemon/btrfs.c > > > index 20e5e6b..a69c512 100644 > > > --- a/daemon/btrfs.c > > > +++ b/daemon/btrfs.c > > > @@ -790,6 +790,44 @@ do_btrfs_device_delete (char *const *devices, const char > > *fs) > > > return 0; > > > } > > > > > > + > > > +/* btrfstune comma...
2015 Jun 29
0
Re: [PATCH v3.1 1/9] uuid: add support to change uuid of btrfs partition
...emon/daemon.h | 1 + > > daemon/uuids.c | 6 ++--- > > tests/btrfs/test-btrfs-misc.pl | 17 ++++++++++++ > > 4 files changed, 80 insertions(+), 4 deletions(-) > > > > diff --git a/daemon/btrfs.c b/daemon/btrfs.c > > index 20e5e6b..a69c512 100644 > > --- a/daemon/btrfs.c > > +++ b/daemon/btrfs.c > > @@ -790,6 +790,44 @@ do_btrfs_device_delete (char *const *devices, const char > *fs) > > return 0; > > } > > > > + > > +/* btrfstune command add two new options > > + * -U UUID...
2015 Jun 26
0
[PATCH v3.1 1/9] uuid: add support to change uuid of btrfs partition
...| 60 ++++++++++++++++++++++++++++++++++++++++++ daemon/daemon.h | 1 + daemon/uuids.c | 6 ++--- tests/btrfs/test-btrfs-misc.pl | 17 ++++++++++++ 4 files changed, 80 insertions(+), 4 deletions(-) diff --git a/daemon/btrfs.c b/daemon/btrfs.c index 20e5e6b..a69c512 100644 --- a/daemon/btrfs.c +++ b/daemon/btrfs.c @@ -790,6 +790,44 @@ do_btrfs_device_delete (char *const *devices, const char *fs) return 0; } + +/* btrfstune command add two new options + * -U UUID change fsid to UUID + * -u change fsid, use a random one + * since v4.1 + * We...
2015 Jun 26
14
[PATCH v3.1 0/9] uuid: add btrfs uuid change support and set_uuid_random
- Btrfs-progs v4.1 introduced new feature of changing uuid of btrfs partition. This patch add support of this. - Introduce set_uuid_random - uuids.c did a lot of deplicated work for changing uuid of fs. Use existing functions. v3.1: fix typos v3: set errno if feature is not available. Chen Hanxiao (9): uuid: add support to change uuid of btrfs partition uuid: use existing function of