patch-2.3.3 linux/drivers/block/md.c
Next file: linux/drivers/block/paride/pd.c
Previous file: linux/drivers/block/ide.c
Back to the patch index
Back to the overall index
- Lines: 92
- Date:
Sat May 15 23:43:04 1999
- Orig file:
v2.3.2/linux/drivers/block/md.c
- Orig date:
Fri May 14 18:55:14 1999
diff -u --recursive --new-file v2.3.2/linux/drivers/block/md.c linux/drivers/block/md.c
@@ -59,6 +59,7 @@
#define MD_DRIVER
#include <linux/blk.h>
+#include <linux/blkpg.h>
#include <asm/uaccess.h>
#include <asm/bitops.h>
#include <asm/atomic.h>
@@ -98,36 +99,6 @@
int md_thread(void * arg);
-static struct gendisk *find_gendisk (kdev_t dev)
-{
- struct gendisk *tmp=gendisk_head;
-
- while (tmp != NULL)
- {
- if (tmp->major==MAJOR(dev))
- return (tmp);
-
- tmp=tmp->next;
- }
-
- return (NULL);
-}
-
-char *partition_name (kdev_t dev)
-{
- static char name[40]; /* This should be long
- enough for a device name ! */
- struct gendisk *hd = find_gendisk (dev);
-
- if (!hd)
- {
- sprintf (name, "[dev %s]", kdevname(dev));
- return (name);
- }
-
- return disk_name (hd, MINOR(dev), name); /* routine in genhd.c */
-}
-
static int legacy_raid_sb (int minor, int pnum)
{
int i, factor;
@@ -653,24 +624,7 @@
return err;
break;
- case BLKFLSBUF:
- fsync_dev (inode->i_rdev);
- invalidate_buffers (inode->i_rdev);
- break;
-
- case BLKRASET:
- if (arg > 0xff)
- return -EINVAL;
- read_ahead[MAJOR(inode->i_rdev)] = arg;
- return 0;
- case BLKRAGET:
- if (!arg) return -EINVAL;
- err = put_user (read_ahead[MAJOR(inode->i_rdev)], (long *) arg);
- if (err)
- return err;
- break;
-
/* We have a problem here : there is no easy way to give a CHS
virtual geometry. We currently pretend that we have a 2 heads
4 sectors (with a BIG number of cylinders...). This drives dosfs
@@ -693,7 +647,12 @@
return err;
break;
- RO_IOCTLS(inode->i_rdev,arg);
+ case BLKROSET:
+ case BLKROGET:
+ case BLKRAGET:
+ case BLKRASET:
+ case BLKFLSBUF:
+ return blk_ioctl(inode->i_rdev, cmd, arg);
default:
return -EINVAL;
@@ -901,7 +860,6 @@
EXPORT_SYMBOL(md_maxreadahead);
EXPORT_SYMBOL(register_md_personality);
EXPORT_SYMBOL(unregister_md_personality);
-EXPORT_SYMBOL(partition_name);
EXPORT_SYMBOL(md_dev);
EXPORT_SYMBOL(md_error);
EXPORT_SYMBOL(md_register_thread);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)