* [PATCH v3] thunderbolt: Use kcalloc and correct the argument to sizeof
@ 2014-07-08 22:31 Himangi Saraogi
2014-07-10 16:45 ` Andreas Noever
0 siblings, 1 reply; 4+ messages in thread
From: Himangi Saraogi @ 2014-07-08 22:31 UTC (permalink / raw)
To: Andreas Noever, linux-kernel; +Cc: julia.lawall
nhi->rx_rings does not have type as struct tb_ring *, as it is a double
pointer. So, the elements of the array should have pointer type, not
structure type. The advantage of kcalloc is, that will prevent integer
overflows which could result from the multiplication of number of
elements and size and it is also a bit nicer to read.
The Coccinelle semantic patch that makes the first change is as follows:
// <smpl>
@disable sizeof_type_expr@
type T;
T **x;
@@
x =
<+...sizeof(
- T
+ *x
)...+>
// </smpl>
Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
---
v2: Use kcalloc
v3: Add maintainer in To
drivers/thunderbolt/nhi.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/drivers/thunderbolt/nhi.c b/drivers/thunderbolt/nhi.c
index 2054fbf..c68fe12 100644
--- a/drivers/thunderbolt/nhi.c
+++ b/drivers/thunderbolt/nhi.c
@@ -569,12 +569,10 @@ static int nhi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
nhi->hop_count);
INIT_WORK(&nhi->interrupt_work, nhi_interrupt_work);
- nhi->tx_rings = devm_kzalloc(&pdev->dev,
- nhi->hop_count * sizeof(struct tb_ring),
- GFP_KERNEL);
- nhi->rx_rings = devm_kzalloc(&pdev->dev,
- nhi->hop_count * sizeof(struct tb_ring),
- GFP_KERNEL);
+ nhi->tx_rings = devm_kcalloc(&pdev->dev, nhi->hop_count,
+ sizeof(*nhi->tx_rings), GFP_KERNEL);
+ nhi->rx_rings = devm_kcalloc(&pdev->dev, nhi->hop_count,
+ sizeof(*nhi->rx_rings), GFP_KERNEL);
if (!nhi->tx_rings || !nhi->rx_rings)
return -ENOMEM;
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v3] thunderbolt: Use kcalloc and correct the argument to sizeof
2014-07-08 22:31 [PATCH v3] thunderbolt: Use kcalloc and correct the argument to sizeof Himangi Saraogi
@ 2014-07-10 16:45 ` Andreas Noever
2014-07-11 17:14 ` Andreas Noever
0 siblings, 1 reply; 4+ messages in thread
From: Andreas Noever @ 2014-07-10 16:45 UTC (permalink / raw)
To: Himangi Saraogi; +Cc: linux-kernel@vger.kernel.org, julia.lawall
On Wed, Jul 9, 2014 at 12:31 AM, Himangi Saraogi <himangi774@gmail.com> wrote:
> nhi->rx_rings does not have type as struct tb_ring *, as it is a double
> pointer. So, the elements of the array should have pointer type, not
> structure type. The advantage of kcalloc is, that will prevent integer
> overflows which could result from the multiplication of number of
> elements and size and it is also a bit nicer to read.
>
> The Coccinelle semantic patch that makes the first change is as follows:
>
> // <smpl>
> @disable sizeof_type_expr@
> type T;
> T **x;
> @@
>
> x =
> <+...sizeof(
> - T
> + *x
> )...+>
> // </smpl>
>
> Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
> Acked-by: Julia Lawall <julia.lawall@lip6.fr>
> ---
> v2: Use kcalloc
> v3: Add maintainer in To
> drivers/thunderbolt/nhi.c | 10 ++++------
> 1 file changed, 4 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/thunderbolt/nhi.c b/drivers/thunderbolt/nhi.c
> index 2054fbf..c68fe12 100644
> --- a/drivers/thunderbolt/nhi.c
> +++ b/drivers/thunderbolt/nhi.c
> @@ -569,12 +569,10 @@ static int nhi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
> nhi->hop_count);
> INIT_WORK(&nhi->interrupt_work, nhi_interrupt_work);
>
> - nhi->tx_rings = devm_kzalloc(&pdev->dev,
> - nhi->hop_count * sizeof(struct tb_ring),
> - GFP_KERNEL);
> - nhi->rx_rings = devm_kzalloc(&pdev->dev,
> - nhi->hop_count * sizeof(struct tb_ring),
> - GFP_KERNEL);
> + nhi->tx_rings = devm_kcalloc(&pdev->dev, nhi->hop_count,
> + sizeof(*nhi->tx_rings), GFP_KERNEL);
> + nhi->rx_rings = devm_kcalloc(&pdev->dev, nhi->hop_count,
> + sizeof(*nhi->rx_rings), GFP_KERNEL);
> if (!nhi->tx_rings || !nhi->rx_rings)
> return -ENOMEM;
>
> --
> 1.9.1
>
Thanks for catching this.
Acked-by: Andreas Noever <andreas.noever@gmail.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] thunderbolt: Use kcalloc and correct the argument to sizeof
2014-07-10 16:45 ` Andreas Noever
@ 2014-07-11 17:14 ` Andreas Noever
2014-07-11 18:13 ` Greg Kroah-Hartman
0 siblings, 1 reply; 4+ messages in thread
From: Andreas Noever @ 2014-07-11 17:14 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: linux-kernel@vger.kernel.org, julia.lawall, Himangi Saraogi
Greg, can you add this to your char-misc tree (instead of the kzalloc
patch, or do you need a rebased patch)?
Thanks,
Andreas
On Thu, Jul 10, 2014 at 6:45 PM, Andreas Noever
<andreas.noever@gmail.com> wrote:
> On Wed, Jul 9, 2014 at 12:31 AM, Himangi Saraogi <himangi774@gmail.com> wrote:
>> nhi->rx_rings does not have type as struct tb_ring *, as it is a double
>> pointer. So, the elements of the array should have pointer type, not
>> structure type. The advantage of kcalloc is, that will prevent integer
>> overflows which could result from the multiplication of number of
>> elements and size and it is also a bit nicer to read.
>>
>> The Coccinelle semantic patch that makes the first change is as follows:
>>
>> // <smpl>
>> @disable sizeof_type_expr@
>> type T;
>> T **x;
>> @@
>>
>> x =
>> <+...sizeof(
>> - T
>> + *x
>> )...+>
>> // </smpl>
>>
>> Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
>> Acked-by: Julia Lawall <julia.lawall@lip6.fr>
>> ---
>> v2: Use kcalloc
>> v3: Add maintainer in To
>> drivers/thunderbolt/nhi.c | 10 ++++------
>> 1 file changed, 4 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/thunderbolt/nhi.c b/drivers/thunderbolt/nhi.c
>> index 2054fbf..c68fe12 100644
>> --- a/drivers/thunderbolt/nhi.c
>> +++ b/drivers/thunderbolt/nhi.c
>> @@ -569,12 +569,10 @@ static int nhi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
>> nhi->hop_count);
>> INIT_WORK(&nhi->interrupt_work, nhi_interrupt_work);
>>
>> - nhi->tx_rings = devm_kzalloc(&pdev->dev,
>> - nhi->hop_count * sizeof(struct tb_ring),
>> - GFP_KERNEL);
>> - nhi->rx_rings = devm_kzalloc(&pdev->dev,
>> - nhi->hop_count * sizeof(struct tb_ring),
>> - GFP_KERNEL);
>> + nhi->tx_rings = devm_kcalloc(&pdev->dev, nhi->hop_count,
>> + sizeof(*nhi->tx_rings), GFP_KERNEL);
>> + nhi->rx_rings = devm_kcalloc(&pdev->dev, nhi->hop_count,
>> + sizeof(*nhi->rx_rings), GFP_KERNEL);
>> if (!nhi->tx_rings || !nhi->rx_rings)
>> return -ENOMEM;
>>
>> --
>> 1.9.1
>>
>
> Thanks for catching this.
> Acked-by: Andreas Noever <andreas.noever@gmail.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] thunderbolt: Use kcalloc and correct the argument to sizeof
2014-07-11 17:14 ` Andreas Noever
@ 2014-07-11 18:13 ` Greg Kroah-Hartman
0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2014-07-11 18:13 UTC (permalink / raw)
To: Andreas Noever
Cc: linux-kernel@vger.kernel.org, julia.lawall, Himangi Saraogi
On Fri, Jul 11, 2014 at 07:14:23PM +0200, Andreas Noever wrote:
> Greg, can you add this to your char-misc tree (instead of the kzalloc
> patch, or do you need a rebased patch)?
I need a patch on top of my char-misc tree as the kzalloc version is
already applied there.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-07-11 18:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-08 22:31 [PATCH v3] thunderbolt: Use kcalloc and correct the argument to sizeof Himangi Saraogi
2014-07-10 16:45 ` Andreas Noever
2014-07-11 17:14 ` Andreas Noever
2014-07-11 18:13 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox