devfs
[Top] [All Lists]

[PATCH] Make IDE and DevFS get along

To: dalecki@xxxxxxxxxxxxxxxxxxxx
Subject: [PATCH] Make IDE and DevFS get along
From: A Guy Called Tyketto <tyketto@xxxxxxxxxx>
Date: Mon, 10 Jun 2002 03:34:15 -0700
Cc: devfs@xxxxxxxxxxx, linux-kernel@xxxxxxxxxxxxxxx
Sender: owner-devfs@xxxxxxxxxxx
User-agent: Mutt/1.4i
        Martin,

        A feature/patch from one of the generic IDE patchsets was introduced 
into kernels >= 2.5.19 that, when DevFS is used, creates a directory called 
/dev/ata, and a symlink to /dev/ata, called /dev/ide. This setup breaks DevFS' 
use, as it does not follow the symlink when the IDE driver is initialised. 
DevFS uses /dev/ide, which is the published interface, to create the 
symlinks to /dev/hd*, which are created after reading /etc/fstab to get the 
partitions. When /dev/ata is used, DevFS doesn't know what it is, can't find 
/dev/ide/* for the /dev/hd* symlinks to be created, and drops into single user 
mode to fix. This will always happen for anyone with their root partition on 
an IDE drive, with DevFS used. The following patch fixes this problem.

                                                        BL.

        P.S. The only other way around this, would be to rewrite /etc/fstab to 
find the full patch to the /dev/ata/host*.../part1 partition for / . That 
really shouldn't have to be done.

-- 
Brad Littlejohn                         | Email:        tyketto@xxxxxxxxxx
Unix Systems Administrator,             |           tyketto@xxxxxxxxxxxxxx
Web + NewsMaster, BOFH.. Smeghead! :)   |   http://www.wizard.com/~tyketto
  PGP: 1024D/E319F0BF 6980 AAD6 7329 E9E6 D569  F620 C819 199A E319 F0BF


--- linux/drivers/ide/main.c.ata        Mon Jun 10 02:47:50 2002
+++ linux/drivers/ide/main.c    Mon Jun 10 02:49:03 2002
@@ -1290,8 +1290,7 @@
 {
        printk(KERN_INFO "ATA/ATAPI device driver v" VERSION "\n");
 
-       ide_devfs_handle = devfs_mk_dir(NULL, "ata", NULL);
-       devfs_mk_symlink(NULL, "ide", DEVFS_FL_DEFAULT, "ata", NULL, NULL);
+       ide_devfs_handle = devfs_mk_dir(NULL, "ide", NULL);
 
        /*
         * Because most of the ATA adapters represent the timings in unit of

<Prev in Thread] Current Thread [Next in Thread>
  • [PATCH] Make IDE and DevFS get along, A Guy Called Tyketto <=