From: Pavel Roskin , via Christoph Hellwig It's already the second time that I encounter a kernel panic in the same place. When devfs_remove() is called on a non-existent file entry, the kernel panics and I have to reboot the system. First time it was unregistering of pseudoterminals. This time it's ide-floppy module that doesn't register devfs entries if the media is absent but still tries to unregister them. The bug in ide-floppy will be reported separately. The point of this message is that the failure in devfs_remove() is possible, especially with rarely used drivers. Secondly, is not fatal enough to justify an immediate panic and reboot. Thirdly, devfs misses a chance to tell the user what's going wrong. 25-akpm/fs/devfs/base.c | 7 +++++++ 1 files changed, 7 insertions(+) diff -puN fs/devfs/base.c~devfs_remove-fix fs/devfs/base.c --- 25/fs/devfs/base.c~devfs_remove-fix Tue Jun 3 13:26:10 2003 +++ 25-akpm/fs/devfs/base.c Tue Jun 3 13:34:16 2003 @@ -1710,6 +1710,13 @@ void devfs_remove(const char *fmt, ...) if (n < 64 && buf[0]) { devfs_handle_t de = _devfs_find_entry(NULL, buf, 0); + if (!de) { + printk(KERN_ERR "%s: %s not found, cannot remove\n", + __FUNCTION__, buf); + dump_stack(); + return; + } + write_lock(&de->parent->u.dir.lock); _devfs_unregister(de->parent, de); devfs_put(de); _