From 334c8b07f4e6ec3280022bf226c814c2c1c1b330 Mon Sep 17 00:00:00 2001 From: Alexander Viro Date: Tue, 11 Jun 2002 00:55:44 -0700 Subject: [PATCH] (7/14) resync ROOT_DEV converted to dev_t. There's no reason for it to be kdev_t - it's both used as a number and set as a number. --- include/linux/fs.h | 2 -- include/linux/root_dev.h | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 include/linux/root_dev.h (limited to 'include/linux') diff --git a/include/linux/fs.h b/include/linux/fs.h index 271dc4972582..5ba335793100 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1257,8 +1257,6 @@ extern int vfs_fstat(unsigned int, struct kstat *); extern struct file_system_type *get_fs_type(const char *name); extern struct super_block *get_super(kdev_t); extern void drop_super(struct super_block *sb); -extern kdev_t ROOT_DEV; -extern char root_device_name[]; extern int dcache_dir_open(struct inode *, struct file *); extern int dcache_dir_close(struct inode *, struct file *); diff --git a/include/linux/root_dev.h b/include/linux/root_dev.h new file mode 100644 index 000000000000..702547ba0bd5 --- /dev/null +++ b/include/linux/root_dev.h @@ -0,0 +1,19 @@ +#ifndef _ROOT_DEV_H_ +#define _ROOT_DEV_H_ + +enum { + Root_NFS = MKDEV(UNNAMED_MAJOR, 255), + Root_RAM0 = MKDEV(RAMDISK_MAJOR, 0), + Root_RAM1 = MKDEV(RAMDISK_MAJOR, 1), + Root_FD0 = MKDEV(FLOPPY_MAJOR, 0), + Root_HDA1 = MKDEV(IDE0_MAJOR, 1), + Root_HDA2 = MKDEV(IDE0_MAJOR, 2), + Root_SDA1 = MKDEV(SCSI_DISK0_MAJOR, 1), + Root_SDA2 = MKDEV(SCSI_DISK0_MAJOR, 2), + Root_HDC1 = MKDEV(IDE1_MAJOR, 1), + Root_SR0 = MKDEV(SCSI_CDROM_MAJOR, 0), +}; + +extern dev_t ROOT_DEV; + +#endif -- cgit v1.2.3