aboutsummaryrefslogtreecommitdiffstats
path: root/udev.c
diff options
context:
space:
mode:
authorsjoerd@spring.luon.net <sjoerd@spring.luon.net>2004-11-23 07:49:55 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 22:42:36 -0700
commit67aca2c50984d0b463c714eba142f33bb07f45a2 (patch)
treea44e84cec1b347afc20be45482c860f6a6d5a898 /udev.c
parent0d1ecb44a0b8c00b0fc6314d19e1bc8efd0f32bb (diff)
downloadudev-67aca2c50984d0b463c714eba142f33bb07f45a2.tar.gz
[PATCH] DEVNAME on device removal
I just noticed that the DEVNAME enviroment variable isn't being set anymore in udev 0.046 on device removal, while it was being set in 0.042. We're using the property tto do umount -l <devices> when a block device is removed. Afaik there is no other way to associate a device with it's DEVNAME on removal ? Also are there cases where doing umount -l on the removed devices is wrong? I guess the device is gone, so there is no sense in keeping it mounted (it's not like the filesystem is gonna come back in a sane state again).. Attached (trivial) patch brings back the DEVNAME variable on device removal.
Diffstat (limited to 'udev.c')
-rw-r--r--udev.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/udev.c b/udev.c
index dad64288..efeb1b50 100644
--- a/udev.c
+++ b/udev.c
@@ -192,6 +192,10 @@ int main(int argc, char *argv[], char *envp[])
/* get node from db, remove db-entry, delete created node */
retval = udev_remove_device(&udev);
+ /* Set the DEVNAME if known */
+ if (udev.devname[0] != '\0') {
+ setenv("DEVNAME", udev.devname, 1);
+ }
/* run dev.d/ scripts if we're not instructed to ignore the event */
if (udev.devname[0] != '\0') {
setenv("DEVNAME", udev.devname, 1);