linux-hotplug.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* advice needed for gentoo bug involving lvm2/udev
@ 2011-10-03 16:41 William Hubbs
  2011-10-04  1:09 ` Kay Sievers
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: William Hubbs @ 2011-10-03 16:41 UTC (permalink / raw)
  To: linux-hotplug

[-- Attachment #1: Type: text/plain, Size: 488 bytes --]

All,

we have the following bug posted in gentoo's bugzilla:

http://bugs.gentoo.org/show_bug.cgi?id=365227.

The reporter is telling me that we should use --action=change instead of
--action=add in the cold boot sequence when dev is devtmpfs. However,
this doesn't seem to be the correct fix based on earlier discussions on
this list.

Does anyone else have any suggestions for fixing this? My thought is
that the rules for lvm2 should be fixed. What does everyone else think?

William


[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: advice needed for gentoo bug involving lvm2/udev
  2011-10-03 16:41 advice needed for gentoo bug involving lvm2/udev William Hubbs
@ 2011-10-04  1:09 ` Kay Sievers
  2011-12-06 22:10 ` William Hubbs
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Kay Sievers @ 2011-10-04  1:09 UTC (permalink / raw)
  To: linux-hotplug

On Mon, Oct 3, 2011 at 18:41, William Hubbs <w.d.hubbs@gmail.com> wrote:
> we have the following bug posted in gentoo's bugzilla:
>
> http://bugs.gentoo.org/show_bug.cgi?id65227.
>
> The reporter is telling me that we should use --action=change instead of
> --action­d in the cold boot sequence when dev is devtmpfs. However,
> this doesn't seem to be the correct fix based on earlier discussions on
> this list.
>
> Does anyone else have any suggestions for fixing this? My thought is
> that the rules for lvm2 should be fixed. What does everyone else think?

--action­d is still the recommended and default way of doing coldplug.

It should only be done once after udevd is started though, and never
again. All later triggers should be change only.

Devtmpfs does not really matter here, it's the replay of the missed
events, which should be add and not change.

Kay

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: advice needed for gentoo bug involving lvm2/udev
  2011-10-03 16:41 advice needed for gentoo bug involving lvm2/udev William Hubbs
  2011-10-04  1:09 ` Kay Sievers
@ 2011-12-06 22:10 ` William Hubbs
  2011-12-12 21:45 ` William Hubbs
  2011-12-12 23:22 ` Kay Sievers
  3 siblings, 0 replies; 5+ messages in thread
From: William Hubbs @ 2011-12-06 22:10 UTC (permalink / raw)
  To: linux-hotplug

[-- Attachment #1: Type: text/plain, Size: 1345 bytes --]

On Tue, Oct 04, 2011 at 03:09:34AM +0200, Kay Sievers wrote:
> On Mon, Oct 3, 2011 at 18:41, William Hubbs <w.d.hubbs@gmail.com> wrote:
> > we have the following bug posted in gentoo's bugzilla:
> >
> > http://bugs.gentoo.org/show_bug.cgi?id=365227.
> >
> > The reporter is telling me that we should use --action=change instead of
> > --action=add in the cold boot sequence when dev is devtmpfs. However,
> > this doesn't seem to be the correct fix based on earlier discussions on
> > this list.
> >
> > Does anyone else have any suggestions for fixing this? My thought is
> > that the rules for lvm2 should be fixed. What does everyone else think?
> 
> --action=add is still the recommended and default way of doing coldplug.
> 
> It should only be done once after udevd is started though, and never
> again. All later triggers should be change only.

The reporter is now saying that --action=add does not touch nodes that
are already in the file system, so, for example, if you mount devtmpfs
on /dev then call udevadm trigger --action=add, the permissions,
ownership, etc, of nodes that already exist are not touched. So, he is
suggesting that we add another udevadm trigger call with --action=change
to the cold boot sequence.

Is this a bug in udev, or should we add this extra udevadm trigger call?

William


[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: advice needed for gentoo bug involving lvm2/udev
  2011-10-03 16:41 advice needed for gentoo bug involving lvm2/udev William Hubbs
  2011-10-04  1:09 ` Kay Sievers
  2011-12-06 22:10 ` William Hubbs
@ 2011-12-12 21:45 ` William Hubbs
  2011-12-12 23:22 ` Kay Sievers
  3 siblings, 0 replies; 5+ messages in thread
From: William Hubbs @ 2011-12-12 21:45 UTC (permalink / raw)
  To: linux-hotplug

[-- Attachment #1: Type: text/plain, Size: 1763 bytes --]

On Tue, Dec 06, 2011 at 04:10:13PM -0600, William Hubbs wrote:
> On Tue, Oct 04, 2011 at 03:09:34AM +0200, Kay Sievers wrote:
> > On Mon, Oct 3, 2011 at 18:41, William Hubbs <w.d.hubbs@gmail.com> wrote:
> > > we have the following bug posted in gentoo's bugzilla:
> > >
> > > http://bugs.gentoo.org/show_bug.cgi?id=365227.
> > >
> > > The reporter is telling me that we should use --action=change instead of
> > > --action=add in the cold boot sequence when dev is devtmpfs. However,
> > > this doesn't seem to be the correct fix based on earlier discussions on
> > > this list.
> > >
> > > Does anyone else have any suggestions for fixing this? My thought is
> > > that the rules for lvm2 should be fixed. What does everyone else think?
> > 
> > --action=add is still the recommended and default way of doing coldplug.
> > 
> > It should only be done once after udevd is started though, and never
> > again. All later triggers should be change only.
> 
> The reporter is now saying that --action=add does not touch nodes that
> are already in the file system, so, for example, if you mount devtmpfs
> on /dev then call udevadm trigger --action=add, the permissions,
> ownership, etc, of nodes that already exist are not touched. So, he is
> suggesting that we add another udevadm trigger call with --action=change
> to the cold boot sequence.
> 
> Is this a bug in udev, or should we add this extra udevadm trigger call?

Hi Kay,

I am re-sending this in case you didn't get it before.

Basically, the reporter is now saying that the udevadm trigger
--action=add is correct, but that the coldplug sequence should include
udevadm trigger --action=change after the --action=add call.

Is this correct?

Thanks,

William


[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: advice needed for gentoo bug involving lvm2/udev
  2011-10-03 16:41 advice needed for gentoo bug involving lvm2/udev William Hubbs
                   ` (2 preceding siblings ...)
  2011-12-12 21:45 ` William Hubbs
@ 2011-12-12 23:22 ` Kay Sievers
  3 siblings, 0 replies; 5+ messages in thread
From: Kay Sievers @ 2011-12-12 23:22 UTC (permalink / raw)
  To: linux-hotplug

On Mon, Dec 12, 2011 at 22:45, William Hubbs <w.d.hubbs@gmail.com> wrote:
> On Tue, Dec 06, 2011 at 04:10:13PM -0600, William Hubbs wrote:
>> On Tue, Oct 04, 2011 at 03:09:34AM +0200, Kay Sievers wrote:
>> > On Mon, Oct 3, 2011 at 18:41, William Hubbs <w.d.hubbs@gmail.com> wrote:
>> > > we have the following bug posted in gentoo's bugzilla:
>> > >
>> > > http://bugs.gentoo.org/show_bug.cgi?id65227.
>> > >
>> > > The reporter is telling me that we should use --action=change instead of
>> > > --action­d in the cold boot sequence when dev is devtmpfs. However,
>> > > this doesn't seem to be the correct fix based on earlier discussions on
>> > > this list.
>> > >
>> > > Does anyone else have any suggestions for fixing this? My thought is
>> > > that the rules for lvm2 should be fixed. What does everyone else think?
>> >
>> > --action­d is still the recommended and default way of doing coldplug.
>> >
>> > It should only be done once after udevd is started though, and never
>> > again. All later triggers should be change only.
>>
>> The reporter is now saying that --action­d does not touch nodes that
>> are already in the file system, so, for example, if you mount devtmpfs
>> on /dev then call udevadm trigger --action­d, the permissions,
>> ownership, etc, of nodes that already exist are not touched. So, he is
>> suggesting that we add another udevadm trigger call with --action=change
>> to the cold boot sequence.
>>
>> Is this a bug in udev, or should we add this extra udevadm trigger call?
>
> Hi Kay,
>
> I am re-sending this in case you didn't get it before.
>
> Basically, the reporter is now saying that the udevadm trigger
> --action­d is correct, but that the coldplug sequence should include
> udevadm trigger --action=change after the --action­d call.
>
> Is this correct?

No, udev should not trigger any 'change' event during bootup, it
should only trigger 'add' events once and very early during
bootup.

Any other issues need to be fixed by/in the tools, not hacked around in udev.

Kay

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-12-12 23:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-03 16:41 advice needed for gentoo bug involving lvm2/udev William Hubbs
2011-10-04  1:09 ` Kay Sievers
2011-12-06 22:10 ` William Hubbs
2011-12-12 21:45 ` William Hubbs
2011-12-12 23:22 ` Kay Sievers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).