All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bill Davidsen <davidsen@tmr.com>
To: Neil Brown <neilb@suse.de>
Cc: Linux Raid List <linux-raid@vger.kernel.org>
Subject: Re: Relabeling UUID
Date: Wed, 13 Dec 2006 16:37:26 -0500	[thread overview]
Message-ID: <45807296.2040601@tmr.com> (raw)
In-Reply-To: <17791.56072.269281.604820@cse.unsw.edu.au>

Neil Brown wrote:
> On Wednesday December 13, davidsen@tmr.com wrote:
>   
>> Before I tell you that doesn't work, could you provide a complete 
>> command line you expect to work rather than just one argument? Showing 
>> the array designator and the location of the actual new UUID to use? We 
>> think we have tried every combination of array name or array components 
>> in every order, and other than a fine collection of error messages have 
>> not had any luck.
>>
>> We would look at the example but found none.
>>     
>
> Hmmm.... yes ..... well.....
>
> # mdadm -V
> mdadm - v2.5.6 - 9 November 2006
> # mdadm -Dvb /dev/md1
> ARRAY /dev/md1 level=raid5 num-devices=3 UUID=9f148061:9b31aaf3:1727f0dc:460ad0c5
>    devices=/dev/sdc,/dev/sdd,/dev/sde
> # mdadm -S /dev/md1
> mdadm: stopped /dev/md1
> # mdadm -Aamd /dev/md1 --update=uuid --uuid=12345678:9abcdef0:fedcba98:76543210 /dev/sdc /dev/sdd /dev/sde
> mdadm: Could not update uuid on /dev/sdc.
> mdadm: Could not update uuid on /dev/sdd.
> mdadm: Could not update uuid on /dev/sde.
> mdadm: /dev/md1 has been started with 3 drives.
> # mdadm -Dvb /dev/md1
> ARRAY /dev/md1 level=raid5 num-devices=3 UUID=12345678:9abcdef0:fedcba98:76543210
>    devices=/dev/sdc,/dev/sdd,/dev/sde
>
> Ok, so there is an error message, but it does actually change the
> uuid.
>   
I guess that in testing I should have checked to see if it worked, 
but... I don't feel so dumb for not finding that now. Thanks!
> In Assemble.c, 
> 			if (strcmp(update, "uuid")==0 &&
> 			    ident->bitmap_fd)
> 				if (bitmap_update_uuid(ident->bitmap_fd, info.uuid) != 0)
> 					fprintf(stderr, Name ": Could not update uuid on %s.\n",
> 						devname);
>
> should be
> 			if (strcmp(update, "uuid")==0 &&
> 			    ident->bitmap_fd >= 0)
> 				if (bitmap_update_uuid(ident->bitmap_fd, info.uuid) != 0)
> 					fprintf(stderr, Name ": Could not update uuid on %s.\n",
> 						devname);
>
> That will get rid of the error message.
> I guess I should add '--update=uuid' to the regression test suite.
>   
Prevents PITA users like me from whining. ;-)
> Note that you need to use something other than the uuid to identify
> the array.  A list of devices is the most obvious choice.
>   
For something few people do that's certainly acceptable.

That said, it certainly would be the most convenient solution to allow 
the uuid= option on the create in the first place. But this is a corner 
case, so unless I find that I want to code it myself (may) other 
solutions are fine.
> Patches to the man page to add useful examples are always welcome.
Hint taken.

Thanks again for clarifying this, I assumed the error message meant I 
had it wrong, and didn't check to see if it actually worked.

-- 
bill davidsen <davidsen@tmr.com>
  CTO TMR Associates, Inc
  Doing interesting things with small computers since 1979


      parent reply	other threads:[~2006-12-13 21:37 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-12-12 23:30 Relabeling UUID Bill Davidsen
2006-12-13  0:29 ` Neil Brown
2006-12-13  5:42   ` Bill Davidsen
2006-12-13 10:50     ` Neil Brown
2006-12-13 14:30       ` David Greaves
2006-12-13 21:37       ` Bill Davidsen [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=45807296.2040601@tmr.com \
    --to=davidsen@tmr.com \
    --cc=linux-raid@vger.kernel.org \
    --cc=neilb@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.