projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1b1418
)
drivers/rapidio/devices/rio_mport_cdev.c: fix resource leak in error handling path...
author
Christophe JAILLET
<
[email protected]
>
Fri, 17 Nov 2017 23:37:57 +0000
(15:37 -0800)
committer
Linus Torvalds
<
[email protected]
>
Sat, 18 Nov 2017 00:10:03 +0000
(16:10 -0800)
If 'dma_map_sg()', we should branch to the existing error handling path
to free some resources before returning.
Link:
http://lkml.kernel.org/r/61292a4f369229eee03394247385e955027283f8.1505687047.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Christophe JAILLET <
[email protected]
>
Reviewed-by: Logan Gunthorpe <
[email protected]
>
Cc: Matt Porter <
[email protected]
>
Cc: Alexandre Bounine <
[email protected]
>
Cc: Lorenzo Stoakes <
[email protected]
>
Cc: Jesper Nilsson <
[email protected]
>
Cc: Christian K_nig <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/rapidio/devices/rio_mport_cdev.c
patch
|
blob
|
history
diff --git
a/drivers/rapidio/devices/rio_mport_cdev.c
b/drivers/rapidio/devices/rio_mport_cdev.c
index 5c1b6388122ad8502933ae9878f12f3419204be2..86805747a422991dd12f91f3479c0f935e5686d7 100644
(file)
--- a/
drivers/rapidio/devices/rio_mport_cdev.c
+++ b/
drivers/rapidio/devices/rio_mport_cdev.c
@@
-963,7
+963,8
@@
rio_dma_transfer(struct file *filp, u32 transfer_mode,
req->sgt.sgl, req->sgt.nents, dir);
if (nents == -EFAULT) {
rmcd_error("Failed to map SG list");
- return -EFAULT;
+ ret = -EFAULT;
+ goto err_pg;
}
ret = do_dma_request(req, xfer, sync, nents);