Commit a58e4d1d authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] hd98 compile fixes

	hd98 had missed a lot of required block device patches (e.g.
it used BLK_DEFAULT_QUEUE and that had been gone for ~ half a year).
Reproduced the changes done to hd.c.
parent 8bb3ef29
...@@ -46,8 +46,6 @@ ...@@ -46,8 +46,6 @@
#include <asm/io.h> #include <asm/io.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#define MAJOR_NR HD_MAJOR
#define DEVICE_NR(device) (minor(device)>>6)
#include <linux/blk.h> #include <linux/blk.h>
#include "io_ports.h" #include "io_ports.h"
...@@ -100,6 +98,9 @@ ...@@ -100,6 +98,9 @@
#define ICRC_ERR 0x80 /* new meaning: CRC error during transfer */ #define ICRC_ERR 0x80 /* new meaning: CRC error during transfer */
static spinlock_t hd_lock = SPIN_LOCK_UNLOCKED; static spinlock_t hd_lock = SPIN_LOCK_UNLOCKED;
static struct request_queue hd_queue;
#define CURRENT elv_next_request(&hd_queue)
#define TIMEOUT_VALUE (6*HZ) #define TIMEOUT_VALUE (6*HZ)
#define HD_DELAY 0 #define HD_DELAY 0
...@@ -115,26 +116,24 @@ static spinlock_t hd_lock = SPIN_LOCK_UNLOCKED; ...@@ -115,26 +116,24 @@ static spinlock_t hd_lock = SPIN_LOCK_UNLOCKED;
static void recal_intr(void); static void recal_intr(void);
static void bad_rw_intr(void); static void bad_rw_intr(void);
static char recalibrate[MAX_HD];
static char special_op[MAX_HD];
static int reset; static int reset;
static int hd_error; static int hd_error;
#define SUBSECTOR(block) (CURRENT->current_nr_sectors > 0)
/* /*
* This struct defines the HD's and their types. * This struct defines the HD's and their types.
*/ */
struct hd_i_struct { struct hd_i_struct {
unsigned int head,sect,cyl,wpcom,lzone,ctl; unsigned int head,sect,cyl,wpcom,lzone,ctl;
int unit;
int recalibrate;
int special_op;
}; };
#ifdef HD_TYPE #ifdef HD_TYPE
struct hd_i_struct hd_info[] = { HD_TYPE }; static struct hd_i_struct hd_info[] = { HD_TYPE };
static int NR_HD = ((sizeof (hd_info))/(sizeof (struct hd_i_struct))); static int NR_HD = ((sizeof (hd_info))/(sizeof (struct hd_i_struct)));
#else #else
struct hd_i_struct hd_info[MAX_HD]; static struct hd_i_struct hd_info[MAX_HD];
static int NR_HD; static int NR_HD;
#endif #endif
...@@ -195,11 +194,11 @@ void __init hd_setup(char *str, int *ints) ...@@ -195,11 +194,11 @@ void __init hd_setup(char *str, int *ints)
static void dump_status (const char *msg, unsigned int stat) static void dump_status (const char *msg, unsigned int stat)
{ {
char devc; char *name = CURRENT ?
CURRENT->rq_dev->bd_disk->disk_name :
devc = CURRENT ? 'a' + DEVICE_NR(CURRENT->rq_dev) : '?'; "hd?";
#ifdef VERBOSE_ERRORS #ifdef VERBOSE_ERRORS
printk("hd%c: %s: status=0x%02x { ", devc, msg, stat & 0xff); printk("%s: %s: status=0x%02x { ", name, msg, stat & 0xff);
if (stat & BUSY_STAT) printk("Busy "); if (stat & BUSY_STAT) printk("Busy ");
if (stat & READY_STAT) printk("DriveReady "); if (stat & READY_STAT) printk("DriveReady ");
if (stat & WRERR_STAT) printk("WriteFault "); if (stat & WRERR_STAT) printk("WriteFault ");
...@@ -213,7 +212,7 @@ static void dump_status (const char *msg, unsigned int stat) ...@@ -213,7 +212,7 @@ static void dump_status (const char *msg, unsigned int stat)
hd_error = 0; hd_error = 0;
} else { } else {
hd_error = inb(HD_ERROR); hd_error = inb(HD_ERROR);
printk("hd%c: %s: error=0x%02x { ", devc, msg, hd_error & 0xff); printk("%s: %s: error=0x%02x { ", name, msg, hd_error & 0xff);
if (hd_error & BBD_ERR) printk("BadSector "); if (hd_error & BBD_ERR) printk("BadSector ");
if (hd_error & ECC_ERR) printk("UncorrectableError "); if (hd_error & ECC_ERR) printk("UncorrectableError ");
if (hd_error & ID_ERR) printk("SectorIdNotFound "); if (hd_error & ID_ERR) printk("SectorIdNotFound ");
...@@ -230,12 +229,12 @@ static void dump_status (const char *msg, unsigned int stat) ...@@ -230,12 +229,12 @@ static void dump_status (const char *msg, unsigned int stat)
printk("\n"); printk("\n");
} }
#else #else
printk("hd%c: %s: status=0x%02x.\n", devc, msg, stat & 0xff); printk("%s: %s: status=0x%02x.\n", name, msg, stat & 0xff);
if ((stat & ERR_STAT) == 0) { if ((stat & ERR_STAT) == 0) {
hd_error = 0; hd_error = 0;
} else { } else {
hd_error = inb(HD_ERROR); hd_error = inb(HD_ERROR);
printk("hd%c: %s: error=0x%02x.\n", devc, msg, hd_error & 0xff); printk("%s: %s: error=0x%02x.\n", name, msg, hd_error & 0xff);
} }
#endif #endif
} }
...@@ -290,8 +289,12 @@ static int controller_ready(unsigned int drive, unsigned int head) ...@@ -290,8 +289,12 @@ static int controller_ready(unsigned int drive, unsigned int head)
return 0; return 0;
} }
static void hd_out(unsigned int drive,unsigned int nsect,unsigned int sect, static void hd_out(struct hd_i_struct *disk,
unsigned int head,unsigned int cyl,unsigned int cmd, unsigned int nsect,
unsigned int sect,
unsigned int head,
unsigned int cyl,
unsigned int cmd,
void (*intr_addr)(void)) void (*intr_addr)(void))
{ {
unsigned short port; unsigned short port;
...@@ -302,19 +305,19 @@ static void hd_out(unsigned int drive,unsigned int nsect,unsigned int sect, ...@@ -302,19 +305,19 @@ static void hd_out(unsigned int drive,unsigned int nsect,unsigned int sect,
#endif #endif
if (reset) if (reset)
return; return;
if (!controller_ready(drive, head)) { if (!controller_ready(disk->unit, head)) {
reset = 1; reset = 1;
return; return;
} }
SET_HANDLER(intr_addr); SET_HANDLER(intr_addr);
outb(hd_info[drive].ctl,HD_CMD); outb(disk->ctl,HD_CMD);
port=HD_DATA + 2; port=HD_DATA + 2;
outb(hd_info[drive].wpcom>>2, port); port += 2; outb(disk->wpcom>>2, port); port += 2;
outb(nsect, port); port += 2; outb(nsect, port); port += 2;
outb(sect, port); port += 2; outb(sect, port); port += 2;
outb(cyl, port); port += 2; outb(cyl, port); port += 2;
outb(cyl>>8, port); port += 2; outb(cyl>>8, port); port += 2;
outb(0xA0|(drive<<4)|head, port); port += 2; outb(0xA0|(disk->unit<<4)|head, port); port += 2;
outb(cmd, port); outb(cmd, port);
} }
...@@ -363,9 +366,10 @@ static void reset_hd(void) ...@@ -363,9 +366,10 @@ static void reset_hd(void)
goto repeat; goto repeat;
} }
if (++i < NR_HD) { if (++i < NR_HD) {
special_op[i] = recalibrate[i] = 1; struct hd_i_struct *disk = &hd_info[i];
hd_out(i,hd_info[i].sect,hd_info[i].sect,hd_info[i].head-1, disk->special_op = disk->recalibrate = 1;
hd_info[i].cyl,WIN_SPECIFY,&reset_hd); hd_out(disk, disk->sect, disk->sect, disk->head-1,
disk->cyl, WIN_SPECIFY, &reset_hd);
if (reset) if (reset)
goto repeat; goto repeat;
} else } else
...@@ -398,18 +402,19 @@ void unexpected_hd_interrupt(void) ...@@ -398,18 +402,19 @@ void unexpected_hd_interrupt(void)
*/ */
static void bad_rw_intr(void) static void bad_rw_intr(void)
{ {
int dev; struct request *req = CURRENT;
struct hd_i_struct *disk;
if (!CURRENT) if (!req)
return; return;
dev = DEVICE_NR(CURRENT->rq_dev); disk = req->rq_disk->private_data;
if (++CURRENT->errors >= MAX_ERRORS || (hd_error & BBD_ERR)) { if (++req->errors >= MAX_ERRORS || (hd_error & BBD_ERR)) {
end_request(CURRENT, 0); end_request(req, 0);
special_op[dev] = recalibrate[dev] = 1; disk->special_op = disk->recalibrate = 1;
} else if (CURRENT->errors % RESET_FREQ == 0) } else if (req->errors % RESET_FREQ == 0)
reset = 1; reset = 1;
else if ((hd_error & TRK0_ERR) || CURRENT->errors % RECAL_FREQ == 0) else if ((hd_error & TRK0_ERR) || req->errors % RECAL_FREQ == 0)
special_op[dev] = recalibrate[dev] = 1; disk->special_op = disk->recalibrate = 1;
/* Otherwise just retry */ /* Otherwise just retry */
} }
...@@ -427,6 +432,7 @@ static inline int wait_DRQ(void) ...@@ -427,6 +432,7 @@ static inline int wait_DRQ(void)
static void read_intr(void) static void read_intr(void)
{ {
int i, retries = 100000; int i, retries = 100000;
struct request *req;
do { do {
i = (unsigned) inb(HD_STATUS); i = (unsigned) inb(HD_STATUS);
...@@ -442,19 +448,20 @@ static void read_intr(void) ...@@ -442,19 +448,20 @@ static void read_intr(void)
hd_request(); hd_request();
return; return;
ok_to_read: ok_to_read:
insw(HD_DATA,CURRENT->buffer,256); req = CURRENT;
CURRENT->sector++; insw(HD_DATA,req->buffer,256);
CURRENT->buffer += 512; req->sector++;
CURRENT->errors = 0; req->buffer += 512;
i = --CURRENT->nr_sectors; req->errors = 0;
--CURRENT->current_nr_sectors; i = --req->nr_sectors;
--req->current_nr_sectors;
#ifdef DEBUG #ifdef DEBUG
printk("hd%c: read: sector %ld, remaining = %ld, buffer=0x%08lx\n", printk("%s: read: sector %ld, remaining = %ld, buffer=%p\n",
dev+'a', CURRENT->sector, CURRENT->nr_sectors, req->rq_disk->disk_name, req->sector, req->nr_sectors,
(unsigned long) CURRENT->buffer+512); req->buffer+512);
#endif #endif
if (CURRENT->current_nr_sectors <= 0) if (req->current_nr_sectors <= 0)
end_request(CURRENT, 1); end_request(req, 1);
if (i > 0) { if (i > 0) {
SET_HANDLER(&read_intr); SET_HANDLER(&read_intr);
return; return;
...@@ -472,6 +479,7 @@ static void write_intr(void) ...@@ -472,6 +479,7 @@ static void write_intr(void)
{ {
int i; int i;
int retries = 100000; int retries = 100000;
struct request *req = CURRENT;
do { do {
i = (unsigned) inb(HD_STATUS); i = (unsigned) inb(HD_STATUS);
...@@ -479,7 +487,7 @@ static void write_intr(void) ...@@ -479,7 +487,7 @@ static void write_intr(void)
continue; continue;
if (!OK_STATUS(i)) if (!OK_STATUS(i))
break; break;
if ((CURRENT->nr_sectors <= 1) || (i & DRQ_STAT)) if ((req->nr_sectors <= 1) || (i & DRQ_STAT))
goto ok_to_write; goto ok_to_write;
} while (--retries > 0); } while (--retries > 0);
dump_status("write_intr", i); dump_status("write_intr", i);
...@@ -487,15 +495,15 @@ static void write_intr(void) ...@@ -487,15 +495,15 @@ static void write_intr(void)
hd_request(); hd_request();
return; return;
ok_to_write: ok_to_write:
CURRENT->sector++; req->sector++;
i = --CURRENT->nr_sectors; i = --req->nr_sectors;
--CURRENT->current_nr_sectors; --req->current_nr_sectors;
CURRENT->buffer += 512; req->buffer += 512;
if (!i || (CURRENT->bio && !SUBSECTOR(i))) if (!i || (req->bio && req->current_nr_sectors < 1))
end_request(CURRENT, 1); end_request(req, 1);
if (i > 0) { if (i > 0) {
SET_HANDLER(&write_intr); SET_HANDLER(&write_intr);
outsw(HD_DATA,CURRENT->buffer,256); outsw(HD_DATA,req->buffer,256);
local_irq_enable(); local_irq_enable();
} else { } else {
#if (HD_DELAY > 0) #if (HD_DELAY > 0)
...@@ -521,8 +529,6 @@ static void recal_intr(void) ...@@ -521,8 +529,6 @@ static void recal_intr(void)
*/ */
static void hd_times_out(unsigned long dummy) static void hd_times_out(unsigned long dummy)
{ {
unsigned int dev;
do_hd = NULL; do_hd = NULL;
if (!CURRENT) if (!CURRENT)
...@@ -531,11 +537,10 @@ static void hd_times_out(unsigned long dummy) ...@@ -531,11 +537,10 @@ static void hd_times_out(unsigned long dummy)
disable_irq(HD_IRQ); disable_irq(HD_IRQ);
local_irq_enable(); local_irq_enable();
reset = 1; reset = 1;
dev = DEVICE_NR(CURRENT->rq_dev); printk("%s: timeout\n", CURRENT->rq_disk->disk_name);
printk("hd%c: timeout\n", dev+'a');
if (++CURRENT->errors >= MAX_ERRORS) { if (++CURRENT->errors >= MAX_ERRORS) {
#ifdef DEBUG #ifdef DEBUG
printk("hd%c: too many errors\n", dev+'a'); printk("%s: too many errors\n", CURRENT->rq_disk->disk_name);
#endif #endif
end_request(CURRENT, 0); end_request(CURRENT, 0);
} }
...@@ -544,18 +549,18 @@ static void hd_times_out(unsigned long dummy) ...@@ -544,18 +549,18 @@ static void hd_times_out(unsigned long dummy)
enable_irq(HD_IRQ); enable_irq(HD_IRQ);
} }
int do_special_op (unsigned int dev) int do_special_op(struct hd_i_struct *disk, struct request *req)
{ {
if (recalibrate[dev]) { if (disk->recalibrate) {
recalibrate[dev] = 0; disk->recalibrate = 0;
hd_out(dev,hd_info[dev].sect,0,0,0,WIN_RESTORE,&recal_intr); hd_out(disk, disk->sect,0,0,0,WIN_RESTORE,&recal_intr);
return reset; return reset;
} }
if (hd_info[dev].head > 16) { if (disk->head > 16) {
printk ("hd%c: cannot handle device with more than 16 heads - giving up\n", dev+'a'); printk ("%s: cannot handle device with more than 16 heads - giving up\n", req->rq_disk->disk_name);
end_request(CURRENT, 0); end_request(req, 0);
} }
special_op[dev] = 0; disk->special_op = 0;
return 1; return 1;
} }
...@@ -571,7 +576,9 @@ int do_special_op (unsigned int dev) ...@@ -571,7 +576,9 @@ int do_special_op (unsigned int dev)
*/ */
static void hd_request(void) static void hd_request(void)
{ {
unsigned int dev, block, nsect, sec, track, head, cyl; unsigned int block, nsect, sec, track, head, cyl;
struct hd_i_struct *disk;
struct request *req;
if (do_hd) if (do_hd)
return; return;
...@@ -583,62 +590,58 @@ static void hd_request(void) ...@@ -583,62 +590,58 @@ static void hd_request(void)
do_hd = NULL; do_hd = NULL;
return; return;
} }
req = CURRENT;
if (reset) { if (reset) {
local_irq_disable(); local_irq_disable();
reset_hd(); reset_hd();
return; return;
} }
dev = DEVICE_NR(CURRENT->rq_dev); disk = req->rq_disk->private_data;
block = CURRENT->sector; block = req->sector;
nsect = CURRENT->nr_sectors; nsect = req->nr_sectors;
if (dev >= NR_HD) { if (block >= get_capacity(req->rq_disk) ||
printk("hd: bad disk number: %d\n", dev); ((block+nsect) > get_capacity(req->rq_disk))) {
end_request(CURRENT, 0);
goto repeat;
}
if (block >= get_capacity(hd_gendisk[dev]) ||
((block+nsect) > get_capacity(hd_gendisk[dev]))) {
printk("%s: bad access: block=%d, count=%d\n", printk("%s: bad access: block=%d, count=%d\n",
hd_gendisk[dev]->disk_name, block, nsect); req->rq_disk->disk_name, block, nsect);
end_request(CURRENT, 0); end_request(req, 0);
goto repeat; goto repeat;
} }
if (special_op[dev]) { if (disk->special_op) {
if (do_special_op(dev)) if (do_special_op(disk, req))
goto repeat; goto repeat;
return; return;
} }
sec = block % hd_info[dev].sect + 1; sec = block % disk->sect + 1;
track = block / hd_info[dev].sect; track = block / disk->sect;
head = track % hd_info[dev].head; head = track % disk->head;
cyl = track / hd_info[dev].head; cyl = track / disk->head;
#ifdef DEBUG #ifdef DEBUG
printk("hd%c: %sing: CHS=%d/%d/%d, sectors=%d, buffer=0x%08lx\n", printk("%s: %sing: CHS=%d/%d/%d, sectors=%d, buffer=%p\n",
dev+'a', (CURRENT->cmd == READ)?"read":"writ", req->rq_disk->disk_name, (req->cmd == READ)?"read":"writ",
cyl, head, sec, nsect, (unsigned long) CURRENT->buffer); cyl, head, sec, nsect, req->buffer);
#endif #endif
if(CURRENT->flags & REQ_CMD) { if (req->flags & REQ_CMD) {
switch (rq_data_dir(CURRENT)) { switch (rq_data_dir(req)) {
case READ: case READ:
hd_out(dev,nsect,sec,head,cyl,WIN_READ,&read_intr); hd_out(disk,nsect,sec,head,cyl,WIN_READ,&read_intr);
if (reset) if (reset)
goto repeat; goto repeat;
break; break;
case WRITE: case WRITE:
hd_out(dev,nsect,sec,head,cyl,WIN_WRITE,&write_intr); hd_out(disk,nsect,sec,head,cyl,WIN_WRITE,&write_intr);
if (reset) if (reset)
goto repeat; goto repeat;
if (wait_DRQ()) { if (wait_DRQ()) {
bad_rw_intr(); bad_rw_intr();
goto repeat; goto repeat;
} }
outsw(HD_DATA,CURRENT->buffer,256); outsw(HD_DATA,req->buffer,256);
break; break;
default: default:
printk("unknown hd-command\n"); printk("unknown hd-command\n");
end_request(CURRENT, 0); end_request(req, 0);
break; break;
} }
} }
...@@ -654,34 +657,19 @@ static void do_hd_request (request_queue_t * q) ...@@ -654,34 +657,19 @@ static void do_hd_request (request_queue_t * q)
static int hd_ioctl(struct inode * inode, struct file * file, static int hd_ioctl(struct inode * inode, struct file * file,
unsigned int cmd, unsigned long arg) unsigned int cmd, unsigned long arg)
{ {
struct hd_i_struct *disk = inode->i_bdev->bd_disk->private_data;
struct hd_geometry *loc = (struct hd_geometry *) arg; struct hd_geometry *loc = (struct hd_geometry *) arg;
int dev = DEVICE_NR(inode->i_rdev); struct hd_geometry g;
if (dev >= NR_HD) if (cmd != HDIO_GETGEO)
return -EINVAL; return -EINVAL;
switch (cmd) { if (!loc)
case HDIO_GETGEO: return -EINVAL;
{ g.heads = disk->head;
struct hd_geometry g; g.sectors = disk->sect;
if (!loc) return -EINVAL; g.cylinders = disk->cyl;
g.heads = hd_info[dev].head;
g.sectors = hd_info[dev].sect;
g.cylinders = hd_info[dev].cyl;
g.start = get_start_sect(inode->i_bdev); g.start = get_start_sect(inode->i_bdev);
return copy_to_user(loc, &g, sizeof g) ? -EFAULT : 0; return copy_to_user(loc, &g, sizeof g) ? -EFAULT : 0;
}
default:
return -EINVAL;
}
}
static int hd_open(struct inode * inode, struct file * filp)
{
int target = DEVICE_NR(inode->i_rdev);
if (target >= NR_HD)
return -ENODEV;
return 0;
} }
/* /*
...@@ -689,8 +677,6 @@ static int hd_open(struct inode * inode, struct file * filp) ...@@ -689,8 +677,6 @@ static int hd_open(struct inode * inode, struct file * filp)
* be forgotten about... * be forgotten about...
*/ */
extern struct block_device_operations hd_fops;
static void hd_interrupt(int irq, void *dev_id, struct pt_regs *regs) static void hd_interrupt(int irq, void *dev_id, struct pt_regs *regs)
{ {
void (*handler)(void) = do_hd; void (*handler)(void) = do_hd;
...@@ -704,7 +690,6 @@ static void hd_interrupt(int irq, void *dev_id, struct pt_regs *regs) ...@@ -704,7 +690,6 @@ static void hd_interrupt(int irq, void *dev_id, struct pt_regs *regs)
} }
static struct block_device_operations hd_fops = { static struct block_device_operations hd_fops = {
.open = hd_open,
.ioctl = hd_ioctl, .ioctl = hd_ioctl,
}; };
...@@ -721,15 +706,15 @@ static struct block_device_operations hd_fops = { ...@@ -721,15 +706,15 @@ static struct block_device_operations hd_fops = {
static int __init hd_init(void) static int __init hd_init(void)
{ {
int drive; int drive;
if (register_blkdev(MAJOR_NR,"hd",&hd_fops)) { if (register_blkdev(HD_MAJOR,"hd")) {
printk("hd: unable to get major %d for hard disk\n",MAJOR_NR); printk("hd: unable to get major %d for hard disk\n",HD_MAJOR);
return -1; return -1;
} }
blk_init_queue(BLK_DEFAULT_QUEUE(MAJOR_NR), do_hd_request, &hd_lock); blk_init_queue(&hd_queue, do_hd_request, &hd_lock);
blk_queue_max_sectors(BLK_DEFAULT_QUEUE(MAJOR_NR), 255); blk_queue_max_sectors(&hd_queue, 255);
init_timer(&device_timer); init_timer(&device_timer);
device_timer.function = hd_times_out; device_timer.function = hd_times_out;
blk_queue_hardsect_size(QUEUE, 512); blk_queue_hardsect_size(&hd_queue, 512);
#ifdef __i386__ #ifdef __i386__
if (!NR_HD) { if (!NR_HD) {
...@@ -768,24 +753,22 @@ static int __init hd_init(void) ...@@ -768,24 +753,22 @@ static int __init hd_init(void)
goto out; goto out;
for (drive=0 ; drive < NR_HD ; drive++) { for (drive=0 ; drive < NR_HD ; drive++) {
struct gendisk *disk = alloc_disk(); struct gendisk *disk = alloc_disk(64);
struct hd_i_struct *p = &hd_info[drive];
if (!disk) if (!disk)
goto Enomem; goto Enomem;
disk->major = MAJOR_NR; disk->major = HD_MAJOR;
disk->first_minor = drive << 6; disk->first_minor = drive << 6;
disk->minor_shift = 6;
disk->fops = &hd_fops; disk->fops = &hd_fops;
sprintf(disk->disk_name, "hd%c", 'a'+drive); sprintf(disk->disk_name, "hd%c", 'a'+drive);
disk->private_data = p;
set_capacity(disk, p->head * p->sect * p->cyl);
disk->queue = &hd_queue;
p->unit = drive;
hd_gendisk[drive] = disk; hd_gendisk[drive] = disk;
} printk ("%s: %luMB, CHS=%d/%d/%d\n",
for (drive=0 ; drive < NR_HD ; drive++) { disk->disk_name, (unsigned long)get_capacity(disk)/2048,
sector_t size = hd_info[drive].head * p->cyl, p->head, p->sect);
hd_info[drive].sect * hd_info[drive].cyl;
set_capacity(hd_gendisk[drive], size);
printk ("%s: %ldMB, CHS=%d/%d/%d\n",
hd_gendisk[drive]->disk_name,
size / 2048, hd_info[drive].cyl,
hd_info[drive].head, hd_info[drive].sect);
} }
if (request_irq(HD_IRQ, hd_interrupt, SA_INTERRUPT, "hd", NULL)) { if (request_irq(HD_IRQ, hd_interrupt, SA_INTERRUPT, "hd", NULL)) {
...@@ -849,11 +832,8 @@ static int __init hd_init(void) ...@@ -849,11 +832,8 @@ static int __init hd_init(void)
goto out9; goto out9;
} }
for(drive=0; drive < NR_HD; drive++) { for(drive=0; drive < NR_HD; drive++)
struct hd_i_struct *p = hd_info + drive;
set_capacity(hd_gendisk[drive], p->head * p->sect * p->cyl);
add_disk(hd_gendisk[drive]); add_disk(hd_gendisk[drive]);
}
return 0; return 0;
out9: out9:
...@@ -879,8 +859,8 @@ static int __init hd_init(void) ...@@ -879,8 +859,8 @@ static int __init hd_init(void)
NR_HD = 0; NR_HD = 0;
out: out:
del_timer(&device_timer); del_timer(&device_timer);
unregister_blkdev(MAJOR_NR,"hd"); unregister_blkdev(HD_MAJOR,"hd");
blk_cleanup_queue(BLK_DEFAULT_QUEUE(MAJOR_NR)); blk_cleanup_queue(&hd_queue);
return -1; return -1;
Enomem: Enomem:
while (drive--) while (drive--)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment