scsi: mpt3sas: remove redundant copy_from_user in _ctl_getiocinfo
Since right after the user copy, we are going to memset(&karg, 0, sizeof(karg)), the copy_from_user is redundant Signed-off-by: Meng Xu <mengxu.gatech@gmail.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:

committed by
Martin K. Petersen

parent
08eb7f45de
commit
c0ff7e2c21
@@ -1065,12 +1065,6 @@ _ctl_getiocinfo(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
|
|||||||
{
|
{
|
||||||
struct mpt3_ioctl_iocinfo karg;
|
struct mpt3_ioctl_iocinfo karg;
|
||||||
|
|
||||||
if (copy_from_user(&karg, arg, sizeof(karg))) {
|
|
||||||
pr_err("failure at %s:%d/%s()!\n",
|
|
||||||
__FILE__, __LINE__, __func__);
|
|
||||||
return -EFAULT;
|
|
||||||
}
|
|
||||||
|
|
||||||
dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s: enter\n", ioc->name,
|
dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s: enter\n", ioc->name,
|
||||||
__func__));
|
__func__));
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user