[PATCH] fix /dev/cdroms on 2.5.38-bk current

jordan.breeding@attbi.com
Wed, 25 Sep 2002 06:02:04 +0000


--NextPart_Webmail_9m3u9jl4l_23406_1032933724
Content-Type: text/plain
Content-Transfer-Encoding: 8bit

Hello,

Currently 2.5.38-bk ends up creating all devfs based
cdrom entries in /dev/cdroms/cdroms, this should actually
only be /dev/cdroms. This patch fixes it for me at least.

Jordan Breeding

--NextPart_Webmail_9m3u9jl4l_23406_1032933724
Content-Type: application/octet-stream; name="patch-cdrom-fix-2.5.38-1"
Content-Transfer-Encoding: 7bit

--- linux-2.5.38/fs/partitions/check.c 2002-09-23 21:55:43.000000000 -0500
+++ linux-2.5.38-bk/fs/partitions/check.c 2002-09-24 22:53:00.000000000 -0500
@@ -348,7 +348,7 @@
cdroms = devfs_mk_dir (NULL, "cdroms", NULL);

dev->number = devfs_alloc_unique_number(&cdrom_numspace);
- sprintf(vname, "cdroms/cdrom%d", dev->number);
+ sprintf(vname, "cdrom%d", dev->number);
if (dev->de) {
int pos;
devfs_handle_t slave;

--NextPart_Webmail_9m3u9jl4l_23406_1032933724--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/