Message ID | 167354736291.2132367.10894218740150168180.stgit@awfm-02.cornelisnetworks.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [for-rc,v2] IB/hfi1: Restore allocated resources on failed copyout | expand |
On Thu, 12 Jan 2023 13:16:02 -0500, Dennis Dalessandro wrote: > Fix a resource leak if an error occurs. > > Applied, thanks! [1/1] IB/hfi1: Restore allocated resources on failed copyout https://git.kernel.org/rdma/rdma/c/1d58ae793452b2 Best regards,
diff --git a/drivers/infiniband/hw/hfi1/file_ops.c b/drivers/infiniband/hw/hfi1/file_ops.c index f5f9269fdc16..7c5d487ec916 100644 --- a/drivers/infiniband/hw/hfi1/file_ops.c +++ b/drivers/infiniband/hw/hfi1/file_ops.c @@ -1318,12 +1318,15 @@ static int user_exp_rcv_setup(struct hfi1_filedata *fd, unsigned long arg, addr = arg + offsetof(struct hfi1_tid_info, tidcnt); if (copy_to_user((void __user *)addr, &tinfo.tidcnt, sizeof(tinfo.tidcnt))) - return -EFAULT; + ret = -EFAULT; addr = arg + offsetof(struct hfi1_tid_info, length); - if (copy_to_user((void __user *)addr, &tinfo.length, + if (!ret && copy_to_user((void __user *)addr, &tinfo.length, sizeof(tinfo.length))) ret = -EFAULT; + + if (ret) + hfi1_user_exp_rcv_invalid(fd, &tinfo); } return ret;