The patch titled KEVENT: add new uevent has been added to the -mm tree. Its filename is kevent-add-new-uevent.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: KEVENT: add new uevent From: Kristen Accardi <kristen.c.accardi@xxxxxxxxx> Add dock uevents so that userspace can be notified of dock and undock events. Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/kobject.h | 2 ++ lib/kobject_uevent.c | 4 ++++ 2 files changed, 6 insertions(+) diff -puN include/linux/kobject.h~kevent-add-new-uevent include/linux/kobject.h --- devel/include/linux/kobject.h~kevent-add-new-uevent 2006-06-03 17:34:41.000000000 -0700 +++ devel-akpm/include/linux/kobject.h 2006-06-03 17:34:41.000000000 -0700 @@ -46,6 +46,8 @@ enum kobject_action { KOBJ_UMOUNT = (__force kobject_action_t) 0x05, /* umount event for block devices (broken) */ KOBJ_OFFLINE = (__force kobject_action_t) 0x06, /* device offline */ KOBJ_ONLINE = (__force kobject_action_t) 0x07, /* device online */ + KOBJ_UNDOCK = (__force kobject_action_t) 0x08, /* undocking */ + KOBJ_DOCK = (__force kobject_action_t) 0x09, /* dock */ }; struct kobject { diff -puN lib/kobject_uevent.c~kevent-add-new-uevent lib/kobject_uevent.c --- devel/lib/kobject_uevent.c~kevent-add-new-uevent 2006-06-03 17:34:41.000000000 -0700 +++ devel-akpm/lib/kobject_uevent.c 2006-06-03 17:34:41.000000000 -0700 @@ -50,6 +50,10 @@ static char *action_to_string(enum kobje return "offline"; case KOBJ_ONLINE: return "online"; + case KOBJ_DOCK: + return "dock"; + case KOBJ_UNDOCK: + return "undock"; default: return NULL; } _ Patches currently in -mm which might be from kristen.c.accardi@xxxxxxxxx are acpi-dock-driver.patch kevent-add-new-uevent.patch acpiphp-use-new-dock-driver.patch acpiphp-prevent-duplicate-slot-numbers-when-no-_sun.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html