All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] USB: gadget: atmel: zero out allocated requests
@ 2014-07-01 22:59 Stephen Warren
  2014-07-02  2:03 ` Bo Shen
  0 siblings, 1 reply; 2+ messages in thread
From: Stephen Warren @ 2014-07-01 22:59 UTC (permalink / raw)
  To: u-boot

From: Stephen Warren <swarren@nvidia.com>

A UDC's alloc_request method should zero out the newly allocated request.
Ensure the Atmel driver does so. This issue was found by code inspection,
following the investigation of an intermittent issue with ci_udc, which
was tracked down to failing to zero out allocated requests following some
of my changes. All other UDC drivers already zero out requests in one
way or another.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
 drivers/usb/gadget/atmel_usba_udc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/gadget/atmel_usba_udc.c b/drivers/usb/gadget/atmel_usba_udc.c
index c99208d10200..2c709738a3cb 100644
--- a/drivers/usb/gadget/atmel_usba_udc.c
+++ b/drivers/usb/gadget/atmel_usba_udc.c
@@ -314,7 +314,7 @@ usba_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
 
 	DBG(DBG_GADGET, "ep_alloc_request: %p, 0x%x\n", _ep, gfp_flags);
 
-	req = malloc(sizeof(struct usba_request));
+	req = calloc(1, sizeof(struct usba_request));
 	if (!req)
 		return NULL;
 
-- 
1.8.1.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] [PATCH] USB: gadget: atmel: zero out allocated requests
  2014-07-01 22:59 [U-Boot] [PATCH] USB: gadget: atmel: zero out allocated requests Stephen Warren
@ 2014-07-02  2:03 ` Bo Shen
  0 siblings, 0 replies; 2+ messages in thread
From: Bo Shen @ 2014-07-02  2:03 UTC (permalink / raw)
  To: u-boot

Hi Stephen Warren,

On 07/02/2014 06:59 AM, Stephen Warren wrote:
> From: Stephen Warren <swarren@nvidia.com>
>
> A UDC's alloc_request method should zero out the newly allocated request.
> Ensure the Atmel driver does so. This issue was found by code inspection,
> following the investigation of an intermittent issue with ci_udc, which
> was tracked down to failing to zero out allocated requests following some
> of my changes. All other UDC drivers already zero out requests in one
> way or another.
>
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
>   drivers/usb/gadget/atmel_usba_udc.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Thanks.
Acked-by: Bo Shen <voice.shen@atmel.com>

> diff --git a/drivers/usb/gadget/atmel_usba_udc.c b/drivers/usb/gadget/atmel_usba_udc.c
> index c99208d10200..2c709738a3cb 100644
> --- a/drivers/usb/gadget/atmel_usba_udc.c
> +++ b/drivers/usb/gadget/atmel_usba_udc.c
> @@ -314,7 +314,7 @@ usba_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
>
>   	DBG(DBG_GADGET, "ep_alloc_request: %p, 0x%x\n", _ep, gfp_flags);
>
> -	req = malloc(sizeof(struct usba_request));
> +	req = calloc(1, sizeof(struct usba_request));
>   	if (!req)
>   		return NULL;
>
>

Best Regards,
Bo Shen

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-07-02  2:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-01 22:59 [U-Boot] [PATCH] USB: gadget: atmel: zero out allocated requests Stephen Warren
2014-07-02  2:03 ` Bo Shen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.