* [PATCH v2 4/4] staging: ozwpan: use kmalloc_array over kmalloc with multiply
@ 2014-09-08 18:45 Adrian Nicoara
0 siblings, 0 replies; 4+ messages in thread
From: Adrian Nicoara @ 2014-09-08 18:45 UTC (permalink / raw)
To: shigekatsu.tateno; +Cc: gregkh, devel, linux-kernel, tklauser
Cleanup checkpatch.pl warnings.
Signed-off-by: Adrian Nicoara <anicoara@uwaterloo.ca>
---
drivers/staging/ozwpan/ozhcd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/ozwpan/ozhcd.c b/drivers/staging/ozwpan/ozhcd.c
index ba2168f..4cfe56e 100644
--- a/drivers/staging/ozwpan/ozhcd.c
+++ b/drivers/staging/ozwpan/ozhcd.c
@@ -1315,7 +1315,7 @@ static int oz_build_endpoints_for_config(struct usb_hcd *hcd,
if (num_iface) {
struct oz_interface *iface;
- iface = kmalloc(num_iface*sizeof(struct oz_interface),
+ iface = kmalloc_array(num_iface, sizeof(struct oz_interface),
mem_flags | __GFP_ZERO);
if (!iface)
return -ENOMEM;
--
2.0.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 4/4] staging: ozwpan: use kmalloc_array over kmalloc with multiply
@ 2014-09-08 19:02 Adrian Nicoara
2014-09-09 7:23 ` Tobias Klauser
2014-09-09 7:26 ` Dan Carpenter
0 siblings, 2 replies; 4+ messages in thread
From: Adrian Nicoara @ 2014-09-08 19:02 UTC (permalink / raw)
To: shigekatsu.tateno; +Cc: gregkh, devel, linux-kernel, tklauser
Cleanup checkpatch.pl warnings.
Signed-off-by: Adrian Nicoara <anicoara@uwaterloo.ca>
---
Somehow I missed the comment Tobias made on the line indentation. I fixed the
patch, and added here as a reply - the previous patch should be ignored.
drivers/staging/ozwpan/ozhcd.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/ozwpan/ozhcd.c b/drivers/staging/ozwpan/ozhcd.c
index ba2168f..e880452 100644
--- a/drivers/staging/ozwpan/ozhcd.c
+++ b/drivers/staging/ozwpan/ozhcd.c
@@ -1315,8 +1315,8 @@ static int oz_build_endpoints_for_config(struct usb_hcd *hcd,
if (num_iface) {
struct oz_interface *iface;
- iface = kmalloc(num_iface*sizeof(struct oz_interface),
- mem_flags | __GFP_ZERO);
+ iface = kmalloc_array(num_iface, sizeof(struct oz_interface),
+ mem_flags | __GFP_ZERO);
if (!iface)
return -ENOMEM;
spin_lock_bh(&ozhcd->hcd_lock);
--
2.0.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 4/4] staging: ozwpan: use kmalloc_array over kmalloc with multiply
2014-09-08 19:02 Adrian Nicoara
@ 2014-09-09 7:23 ` Tobias Klauser
2014-09-09 7:26 ` Dan Carpenter
1 sibling, 0 replies; 4+ messages in thread
From: Tobias Klauser @ 2014-09-09 7:23 UTC (permalink / raw)
To: Adrian Nicoara; +Cc: shigekatsu.tateno, gregkh, devel, linux-kernel
On 2014-09-08 at 21:02:49 +0200, Adrian Nicoara <anicoara@uwaterloo.ca> wrote:
> Cleanup checkpatch.pl warnings.
Please state which warning this is fixing. Same goes for patches 1-3.
> Signed-off-by: Adrian Nicoara <anicoara@uwaterloo.ca>
> ---
>
> Somehow I missed the comment Tobias made on the line indentation. I fixed the
> patch, and added here as a reply - the previous patch should be ignored.
>
> drivers/staging/ozwpan/ozhcd.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/staging/ozwpan/ozhcd.c b/drivers/staging/ozwpan/ozhcd.c
> index ba2168f..e880452 100644
> --- a/drivers/staging/ozwpan/ozhcd.c
> +++ b/drivers/staging/ozwpan/ozhcd.c
> @@ -1315,8 +1315,8 @@ static int oz_build_endpoints_for_config(struct usb_hcd *hcd,
> if (num_iface) {
> struct oz_interface *iface;
>
> - iface = kmalloc(num_iface*sizeof(struct oz_interface),
> - mem_flags | __GFP_ZERO);
> + iface = kmalloc_array(num_iface, sizeof(struct oz_interface),
> + mem_flags | __GFP_ZERO);
This still isn't entirely correct. It should rather look like this:
iface = kmalloc_array(num_iface, sizeof(struct oz_interface),
mem_flags | __GFP_ZERO);
Assume a tab width of 8 (as per CodingStyle) and use spaces to get the
alignment right.
> if (!iface)
> return -ENOMEM;
> spin_lock_bh(&ozhcd->hcd_lock);
> --
> 2.0.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 4/4] staging: ozwpan: use kmalloc_array over kmalloc with multiply
2014-09-08 19:02 Adrian Nicoara
2014-09-09 7:23 ` Tobias Klauser
@ 2014-09-09 7:26 ` Dan Carpenter
1 sibling, 0 replies; 4+ messages in thread
From: Dan Carpenter @ 2014-09-09 7:26 UTC (permalink / raw)
To: Adrian Nicoara; +Cc: shigekatsu.tateno, devel, gregkh, linux-kernel
On Mon, Sep 08, 2014 at 03:02:49PM -0400, Adrian Nicoara wrote:
> Cleanup checkpatch.pl warnings.
>
> Signed-off-by: Adrian Nicoara <anicoara@uwaterloo.ca>
> ---
>
> Somehow I missed the comment Tobias made on the line indentation. I fixed the
> patch, and added here as a reply - the previous patch should be ignored.
>
> drivers/staging/ozwpan/ozhcd.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/staging/ozwpan/ozhcd.c b/drivers/staging/ozwpan/ozhcd.c
> index ba2168f..e880452 100644
> --- a/drivers/staging/ozwpan/ozhcd.c
> +++ b/drivers/staging/ozwpan/ozhcd.c
> @@ -1315,8 +1315,8 @@ static int oz_build_endpoints_for_config(struct usb_hcd *hcd,
> if (num_iface) {
> struct oz_interface *iface;
>
> - iface = kmalloc(num_iface*sizeof(struct oz_interface),
> - mem_flags | __GFP_ZERO);
> + iface = kmalloc_array(num_iface, sizeof(struct oz_interface),
> + mem_flags | __GFP_ZERO);
Still not lined up correctly. The spacing should be:
iface = kmalloc_array(num_iface, sizeof(struct oz_interface),
mem_flags | __GFP_ZERO);
[tab][tab][tab][tab][space][space][space][space][space][space]mem_flags...
regards,
dan carpenter
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-09-09 7:27 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-08 18:45 [PATCH v2 4/4] staging: ozwpan: use kmalloc_array over kmalloc with multiply Adrian Nicoara
-- strict thread matches above, loose matches on Subject: below --
2014-09-08 19:02 Adrian Nicoara
2014-09-09 7:23 ` Tobias Klauser
2014-09-09 7:26 ` Dan Carpenter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox