cciss: factor out cciss_getdrivver
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com> Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
This commit is contained in:
parent
8a4f7fbfdd
commit
c525919ddf
@ -1371,6 +1371,17 @@ static int cciss_getfirmver(ctlr_info_t *h, void __user *argp)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int cciss_getdrivver(ctlr_info_t *h, void __user *argp)
|
||||||
|
{
|
||||||
|
DriverVer_type DriverVer = DRIVER_VERSION;
|
||||||
|
|
||||||
|
if (!argp)
|
||||||
|
return -EINVAL;
|
||||||
|
if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
|
||||||
|
return -EFAULT;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int cciss_ioctl(struct block_device *bdev, fmode_t mode,
|
static int cciss_ioctl(struct block_device *bdev, fmode_t mode,
|
||||||
unsigned int cmd, unsigned long arg)
|
unsigned int cmd, unsigned long arg)
|
||||||
{
|
{
|
||||||
@ -1399,18 +1410,7 @@ static int cciss_ioctl(struct block_device *bdev, fmode_t mode,
|
|||||||
case CCISS_GETFIRMVER:
|
case CCISS_GETFIRMVER:
|
||||||
return cciss_getfirmver(h, argp);
|
return cciss_getfirmver(h, argp);
|
||||||
case CCISS_GETDRIVVER:
|
case CCISS_GETDRIVVER:
|
||||||
{
|
return cciss_getdrivver(h, argp);
|
||||||
DriverVer_type DriverVer = DRIVER_VERSION;
|
|
||||||
|
|
||||||
if (!arg)
|
|
||||||
return -EINVAL;
|
|
||||||
|
|
||||||
if (copy_to_user
|
|
||||||
(argp, &DriverVer, sizeof(DriverVer_type)))
|
|
||||||
return -EFAULT;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
case CCISS_DEREGDISK:
|
case CCISS_DEREGDISK:
|
||||||
case CCISS_REGNEWD:
|
case CCISS_REGNEWD:
|
||||||
case CCISS_REVALIDVOLS:
|
case CCISS_REVALIDVOLS:
|
||||||
|
Loading…
Reference in New Issue
Block a user