[PATCH] I2O: Adaptec specific SG_IO access, firmware access through sysfs and 2400A workaround
Changes: - Provide SG_IO access to BLOCK and EXECUTIVE class on Adaptec controllers - Use PRIVATE messages in SCSI-OSM because on some controllers normal SCSI class commands like READ or READ CAPACITY cause errors - Use new DMA and SG list creation function - Added workaround to limit sectors per request for Adaptec 2400A controllers Signed-off-by: Markus Lidel <Markus.Lidel@shadowconnect.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
f10378fff6
commit
b2aaee33fb
@ -515,6 +515,7 @@ static int i2o_cfg_evt_get(unsigned long arg, struct file *fp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_I2O_EXT_ADAPTEC
|
||||
#ifdef CONFIG_COMPAT
|
||||
static int i2o_cfg_passthru32(struct file *file, unsigned cmnd, unsigned long arg)
|
||||
{
|
||||
@ -964,6 +965,7 @@ static int i2o_cfg_passthru(unsigned long arg)
|
||||
kfree(reply);
|
||||
return rcode;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* IOCTL Handler
|
||||
@ -1018,9 +1020,11 @@ static int i2o_cfg_ioctl(struct inode *inode, struct file *fp, unsigned int cmd,
|
||||
ret = i2o_cfg_evt_get(arg, fp);
|
||||
break;
|
||||
|
||||
#ifdef CONFIG_I2O_EXT_ADAPTEC
|
||||
case I2OPASSTHRU:
|
||||
ret = i2o_cfg_passthru(arg);
|
||||
break;
|
||||
#endif
|
||||
|
||||
default:
|
||||
osm_debug("unknown ioctl called!\n");
|
||||
|
Reference in New Issue
Block a user