PATCH 2.5.2.6: fix umsdos build

Jeff Garzik (jgarzik@mandrakesoft.com)
Tue, 01 Jan 2002 20:19:41 -0500


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

add two calls to kdev_same

-- 
Jeff Garzik      | Only so many songs can be sung
Building 1024    | with two lips, two lungs, and one tongue.
MandrakeSoft     |         - nomeansno
--------------04C128F80ED75A82C741EE1C
Content-Type: text/plain; charset=us-ascii;
 name="umsdos-2.5.2.6.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="umsdos-2.5.2.6.patch"

Index: fs/umsdos/inode.c =================================================================== RCS file: /cvsroot/gkernel/linux_2_5/fs/umsdos/inode.c,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 inode.c --- fs/umsdos/inode.c 2001/09/30 19:26:08 1.1.1.1 +++ fs/umsdos/inode.c 2002/01/02 01:16:13 @@ -49,7 +49,7 @@ void UMSDOS_put_super (struct super_block *sb) { Printk ((KERN_DEBUG "UMSDOS_put_super: entering\n")); - if (saved_root && pseudo_root && sb->s_dev == ROOT_DEV) { + if (saved_root && pseudo_root && kdev_same(sb->s_dev, ROOT_DEV)) { shrink_dcache_parent(saved_root); dput(saved_root); saved_root = NULL; @@ -414,7 +414,7 @@ * must check like this, because we can be used with initrd */ - if (sb->s_dev != ROOT_DEV) + if (!kdev_same(sb->s_dev, ROOT_DEV)) goto out_noroot; /*

--------------04C128F80ED75A82C741EE1C--

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