* udev/modprobe issue
@ 2005-09-29 7:41 Nico Schottelius
2005-09-30 17:12 ` Kay Sievers
2005-10-02 22:05 ` Nico -telmich- Schottelius
0 siblings, 2 replies; 3+ messages in thread
From: Nico Schottelius @ 2005-09-29 7:41 UTC (permalink / raw)
To: LKML; +Cc: linux-hotplug-devel
[-- Attachment #1: Type: text/plain, Size: 2255 bytes --]
Good morning everybody!
I've a small problem with loading the sata_sil module, but it could be a
general issue: We use this sata-kontroller with sata-harddisks to backup
our systems. The harddisk is exchanged (while the system is running) every
day. So we load/unload sata_sil in our backup scripts, so 'hotplugging' is possible.
My problem is, that modprobe returns earlier than the attached device is usable:
----------------------------------------------------------------------
srwali01:/# modprobe sata_sil; mount /dev/sda1 /mnt/hdbackup/
mount: you must specify the filesystem type
srwali01:/# rmmod sata_sil
srwali01:/# modprobe sata_sil; ls -l /dev/sda1
ls: /dev/sda1: No such file or directory
----------------------------------------------------------------------
So I have to do
----------------------------------------------------------------------
srwali01:/# modprobe sata_sil
srwali01:/# sleep 2
srwali01:/# mount /dev/sda1 /mnt/hdbackup
----------------------------------------------------------------------
The problem is most likely that udev is too slow or that modprobe does not
know/wait for udev:
----------------------------------------------------------------------
srwali01:/# mount | grep tmpfs | grep -v /dev/shm
tmpfs on /dev type tmpfs (rw,size=10M,mode=0755)
srwali01:/# cat /proc/sys/kernel/hotplug
/sbin/udevsend
----------------------------------------------------------------------
My questions:
- Should modprobe wait for whatever current hotplug is so that
the system can definitly use the device after modprobe?
- Or should there be a command-line switch to modprobe to tell it to wait
for hotplug?
- Is the 'wait for hotplug'-idea possible to do or would it have to be a dirty
hack in the kernel?
- Is there clean solution to wait exactly as long as
it needs to load sata_sil and create /dev/sda*?
Using while+ls monitoring /dev/sda* is not a solution imho.
Greetings,
Nico
P.S.: Sorry for crossposting, I am not really sure which list would have been
the correct one to ask.
--
Latest project: cconfig (http://nico.schotteli.us/papers/linux/cconfig/)
Open Source nutures open minds and free, creative developers.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 827 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: udev/modprobe issue
2005-09-29 7:41 udev/modprobe issue Nico Schottelius
@ 2005-09-30 17:12 ` Kay Sievers
2005-10-02 22:05 ` Nico -telmich- Schottelius
1 sibling, 0 replies; 3+ messages in thread
From: Kay Sievers @ 2005-09-30 17:12 UTC (permalink / raw)
To: linux-hotplug
On Thu, Sep 29, 2005 at 09:41:40AM +0200, Nico Schottelius wrote:
> Good morning everybody!
>
> I've a small problem with loading the sata_sil module, but it could be a
> general issue: We use this sata-kontroller with sata-harddisks to backup
> our systems. The harddisk is exchanged (while the system is running) every
> day. So we load/unload sata_sil in our backup scripts, so 'hotplugging' is possible.
>
> My problem is, that modprobe returns earlier than the attached device is usable:
>
> ----------------------------------------------------------------------
> srwali01:/# modprobe sata_sil; mount /dev/sda1 /mnt/hdbackup/
> mount: you must specify the filesystem type
> srwali01:/# rmmod sata_sil
> srwali01:/# modprobe sata_sil; ls -l /dev/sda1
> ls: /dev/sda1: No such file or directory
> ----------------------------------------------------------------------
>
> So I have to do
>
> ----------------------------------------------------------------------
> srwali01:/# modprobe sata_sil
> srwali01:/# sleep 2
> srwali01:/# mount /dev/sda1 /mnt/hdbackup
> ----------------------------------------------------------------------
>
> The problem is most likely that udev is too slow or that modprobe does not
> know/wait for udev:
>
> ----------------------------------------------------------------------
> srwali01:/# mount | grep tmpfs | grep -v /dev/shm
> tmpfs on /dev type tmpfs (rw,size\x10M,mode\a55)
> srwali01:/# cat /proc/sys/kernel/hotplug
> /sbin/udevsend
> ----------------------------------------------------------------------
>
> My questions:
>
> - Should modprobe wait for whatever current hotplug is so that
> the system can definitly use the device after modprobe?
No.
> - Or should there be a command-line switch to modprobe to tell it to wait
> for hotplug?
No.
> - Is the 'wait for hotplug'-idea possible to do or would it have to be a dirty
> hack in the kernel?
Not possible.
> - Is there clean solution to wait exactly as long as
> it needs to load sata_sil and create /dev/sda*?
> Using while+ls monitoring /dev/sda* is not a solution imho.
Wait for the node, or use the device event the kernel generates for the device
you're looking for. You can catch it with a udev rule.
Kay
-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
Linux-hotplug-devel mailing list http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: udev/modprobe issue
2005-09-29 7:41 udev/modprobe issue Nico Schottelius
2005-09-30 17:12 ` Kay Sievers
@ 2005-10-02 22:05 ` Nico -telmich- Schottelius
1 sibling, 0 replies; 3+ messages in thread
From: Nico -telmich- Schottelius @ 2005-10-02 22:05 UTC (permalink / raw)
To: linux-hotplug
[-- Attachment #1: Type: text/plain, Size: 656 bytes --]
Kay Sievers [Fri, Sep 30, 2005 at 07:12:26PM +0200]:
> [...]
> > - Is there clean solution to wait exactly as long as
> > it needs to load sata_sil and create /dev/sda*?
> > Using while+ls monitoring /dev/sda* is not a solution imho.
>
> Wait for the node, or use the device event the kernel generates for the device
> you're looking for. You can catch it with a udev rule.
Could you throw some RTFM to me so I know which device to listen to
and howto implement that in a shell script?
Nico
--
Latest project: cconfig (http://nico.schotteli.us/papers/linux/cconfig/)
Open Source nutures open minds and free, creative developers.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 827 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-10-02 22:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-29 7:41 udev/modprobe issue Nico Schottelius
2005-09-30 17:12 ` Kay Sievers
2005-10-02 22:05 ` Nico -telmich- Schottelius
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).