[PATCH] fix cdroms with devfs

Jordan Breeding (jordan.breeding@attbi.com)
Thu, 03 Oct 2002 21:58:35 -0500


This is a multi-part message in MIME format.
--------------000905000009030706010503
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

Hello,

This patch fixes the case where devfs in 2.5.x currently makes a
/dev/cdroms/cdroms directory instead of a /dev/cdroms directory like it
used to. Thanks.

Jordan

--------------000905000009030706010503
Content-Type: text/plain;
name="patch-cdrom-fix-2.5.38-1"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="patch-cdrom-fix-2.5.38-1"

--- 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;

--------------000905000009030706010503--

-
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/