2016-11-19 17:46:43

by Quentin Lambert

[permalink] [raw]
Subject: [PATCH] scsi: pmcraid: Add missing resource releases

Most error branches following the call to pmcraid_get_free_cmd contain
a call to pmcraid_return_cmd. This patch add these calls where they are
missing.

Moreover, most error branches following the call to class_create contain
a call to class_destroy. This patch add these calls where they are
missing.

This issue was found with Hector.

Signed-off-by: Quentin Lambert <[email protected]>

---
drivers/scsi/pmcraid.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

--- a/drivers/scsi/pmcraid.c
+++ b/drivers/scsi/pmcraid.c
@@ -3787,11 +3787,11 @@ static long pmcraid_ioctl_passthrough(
direction);
if (rc) {
pmcraid_err("couldn't build passthrough ioadls\n");
- goto out_free_buffer;
+ goto out_free_cmd;
}
} else if (request_size < 0) {
rc = -EINVAL;
- goto out_free_buffer;
+ goto out_free_cmd;
}

/* If data is being written into the device, copy the data from user
@@ -3908,6 +3908,8 @@ out_handle_response:

out_free_sglist:
pmcraid_release_passthrough_ioadls(cmd, request_size, direction);
+
+out_free_cmd:
pmcraid_return_cmd(cmd);

out_free_buffer:
@@ -6018,8 +6020,10 @@ static int __init pmcraid_init(void)

error = pmcraid_netlink_init();

- if (error)
+ if (error) {
+ class_destroy(pmcraid_class);
goto out_unreg_chrdev;
+ }

error = pci_register_driver(&pmcraid_driver);



2016-11-22 16:14:52

by Tomas Henzl

[permalink] [raw]
Subject: Re: [PATCH] scsi: pmcraid: Add missing resource releases

On 19.11.2016 18:43, Quentin Lambert wrote:
> Most error branches following the call to pmcraid_get_free_cmd contain
> a call to pmcraid_return_cmd. This patch add these calls where they are
> missing.
>
> Moreover, most error branches following the call to class_create contain
> a call to class_destroy. This patch add these calls where they are
> missing.
>
> This issue was found with Hector.
>
> Signed-off-by: Quentin Lambert <[email protected]>

Looks good,
Reviewed-by: Tomas Henzl <[email protected]>
Tomas

>
> ---
> drivers/scsi/pmcraid.c | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> --- a/drivers/scsi/pmcraid.c
> +++ b/drivers/scsi/pmcraid.c
> @@ -3787,11 +3787,11 @@ static long pmcraid_ioctl_passthrough(
> direction);
> if (rc) {
> pmcraid_err("couldn't build passthrough ioadls\n");
> - goto out_free_buffer;
> + goto out_free_cmd;
> }
> } else if (request_size < 0) {
> rc = -EINVAL;
> - goto out_free_buffer;
> + goto out_free_cmd;
> }
>
> /* If data is being written into the device, copy the data from user
> @@ -3908,6 +3908,8 @@ out_handle_response:
>
> out_free_sglist:
> pmcraid_release_passthrough_ioadls(cmd, request_size, direction);
> +
> +out_free_cmd:
> pmcraid_return_cmd(cmd);
>
> out_free_buffer:
> @@ -6018,8 +6020,10 @@ static int __init pmcraid_init(void)
>
> error = pmcraid_netlink_init();
>
> - if (error)
> + if (error) {
> + class_destroy(pmcraid_class);
> goto out_unreg_chrdev;
> + }
>
> error = pci_register_driver(&pmcraid_driver);
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html


2016-11-22 22:05:00

by Martin K. Petersen

[permalink] [raw]
Subject: Re: [PATCH] scsi: pmcraid: Add missing resource releases

>>>>> "Quentin" == Quentin Lambert <[email protected]> writes:

Quentin> Most error branches following the call to pmcraid_get_free_cmd
Quentin> contain a call to pmcraid_return_cmd. This patch add these
Quentin> calls where they are missing.

Quentin> Moreover, most error branches following the call to
Quentin> class_create contain a call to class_destroy. This patch add
Quentin> these calls where they are missing.

Applied to 4.10/scsi-queue.

--
Martin K. Petersen Oracle Linux Engineering