diff options
author | Sachin Shukla <sachin.s5@samsung.com> | 2016-11-11 12:04:51 +0300 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-11-11 23:37:04 +0300 |
commit | b425b0201e89e6509032985532a33f1f92ac62a6 (patch) | |
tree | 0d53ebcb95ebc4f9e7763dce80f7834666c3d094 /drivers/block | |
parent | 066a4a73cee9a44a906b98825e70c47de5bd8b5c (diff) | |
download | linux-b425b0201e89e6509032985532a33f1f92ac62a6.tar.xz |
Block: mtip32xx: Improvement in code readability when memdup_user() fails.
There is no need to call kfree() if memdup_user() fails, as no memory
was allocated and the error in the error-valued pointer should be returned.
Signed-off-by: Sachin Shukla <sachin.s5@samsung.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/mtip32xx/mtip32xx.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/drivers/block/mtip32xx/mtip32xx.c b/drivers/block/mtip32xx/mtip32xx.c index 3cfd879267b2..cfe0108a7d30 100644 --- a/drivers/block/mtip32xx/mtip32xx.c +++ b/drivers/block/mtip32xx/mtip32xx.c @@ -2035,18 +2035,14 @@ static int exec_drive_taskfile(struct driver_data *dd, taskout = req_task->out_size; taskin = req_task->in_size; /* 130560 = 512 * 0xFF*/ - if (taskin > 130560 || taskout > 130560) { - err = -EINVAL; - goto abort; - } + if (taskin > 130560 || taskout > 130560) + return -EINVAL; if (taskout) { outbuf = memdup_user(buf + outtotal, taskout); - if (IS_ERR(outbuf)) { - err = PTR_ERR(outbuf); - outbuf = NULL; - goto abort; - } + if (IS_ERR(outbuf)) + return PTR_ERR(outbuf); + outbuf_dma = pci_map_single(dd->pdev, outbuf, taskout, |