2010-07-31 17:39:49

by Kulikov Vasiliy

[permalink] [raw]
Subject: [PATCH 5/7] usb: omap_udc: check return value of proc_create()

proc_create() may fail, if so return -ENOMEM.

Signed-off-by: Kulikov Vasiliy <[email protected]>
---
drivers/usb/gadget/omap_udc.c | 16 +++++++++++-----
1 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/gadget/omap_udc.c b/drivers/usb/gadget/omap_udc.c
index f81e4f0..1083216 100644
--- a/drivers/usb/gadget/omap_udc.c
+++ b/drivers/usb/gadget/omap_udc.c
@@ -2544,9 +2544,9 @@ static const struct file_operations proc_ops = {
.release = single_release,
};

-static void create_proc_file(void)
+static int create_proc_file(void)
{
- proc_create(proc_filename, 0, NULL, &proc_ops);
+ return (proc_create(proc_filename, 0, NULL, &proc_ops) == NULL);
}

static void remove_proc_file(void)
@@ -2556,7 +2556,7 @@ static void remove_proc_file(void)

#else

-static inline void create_proc_file(void) {}
+static inline int create_proc_file(void) { return 0; }
static inline void remove_proc_file(void) {}

#endif
@@ -2998,13 +2998,19 @@ known:
#endif
}

- create_proc_file();
+ if (create_proc_file()) {
+ status = -ENOMEM;
+ goto cleanup3;
+ }
+
status = device_add(&udc->gadget.dev);
if (!status)
return status;
/* If fail, fall through */
-#ifdef USE_ISO
+
+ remove_proc_file();
cleanup3:
+#ifdef USE_ISO
free_irq(pdev->resource[2].start, udc);
#endif

--
1.7.0.4


2010-08-01 10:08:09

by Sergei Shtylyov

[permalink] [raw]
Subject: Re: [PATCH 5/7] usb: omap_udc: check return value of proc_create()

Hello.

Kulikov Vasiliy wrote:

> proc_create() may fail, if so return -ENOMEM.

> Signed-off-by: Kulikov Vasiliy <[email protected]>
[...]
> diff --git a/drivers/usb/gadget/omap_udc.c b/drivers/usb/gadget/omap_udc.c
> index f81e4f0..1083216 100644
> --- a/drivers/usb/gadget/omap_udc.c
> +++ b/drivers/usb/gadget/omap_udc.c
> @@ -2544,9 +2544,9 @@ static const struct file_operations proc_ops = {
> .release = single_release,
> };
>
> -static void create_proc_file(void)
> +static int create_proc_file(void)
> {
> - proc_create(proc_filename, 0, NULL, &proc_ops);
> + return (proc_create(proc_filename, 0, NULL, &proc_ops) == NULL);

Parens not needed around the *return* expression.

WBR, Sergei

2010-08-01 11:31:23

by Yehuda Mor

[permalink] [raw]
Subject: Remove me!!!!


Please, remove my address [email protected] from your lists! I am
receiving unwanted mail from a lot of people around kernel, ubuntu' debian,
etc - and I have no idea why!

Thank you.







-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Sergei Shtylyov
Sent: Sunday, August 01, 2010 1:07 PM
To: Kulikov Vasiliy
Cc: [email protected]; David Brownell; Greg Kroah-Hartman;
Tony Lindgren; Cory Maccarrone; [email protected];
[email protected]
Subject: Re: [PATCH 5/7] usb: omap_udc: check return value of proc_create()

Hello.

Kulikov Vasiliy wrote:

> proc_create() may fail, if so return -ENOMEM.

> Signed-off-by: Kulikov Vasiliy <[email protected]>
[...]
> diff --git a/drivers/usb/gadget/omap_udc.c b/drivers/usb/gadget/omap_udc.c
> index f81e4f0..1083216 100644
> --- a/drivers/usb/gadget/omap_udc.c
> +++ b/drivers/usb/gadget/omap_udc.c
> @@ -2544,9 +2544,9 @@ static const struct file_operations proc_ops = {
> .release = single_release,
> };
>
> -static void create_proc_file(void)
> +static int create_proc_file(void)
> {
> - proc_create(proc_filename, 0, NULL, &proc_ops);
> + return (proc_create(proc_filename, 0, NULL, &proc_ops) == NULL);

Parens not needed around the *return* expression.

WBR, Sergei

2010-08-01 12:46:59

by Valeo de Vries

[permalink] [raw]
Subject: Re: Remove me!!!!

No need to spam all those people with this...

On 1 August 2010 12:29, Yehuda Mor <[email protected]> wrote:
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to [email protected]
> More majordomo info at ?http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at ?http://www.tux.org/lkml/

...as all you need to do is read the above, which is at the bottom of
every e-mail you receive from LKML.

Valeo

2010-08-01 15:16:21

by trapDoor

[permalink] [raw]
Subject: Re: Remove me!!!!

On Sun, Aug 1, 2010 at 12:29 PM, Yehuda Mor <[email protected]> wrote:
>
> Please, remove my address [email protected] from your lists! I am
> receiving unwanted mail from a lot of people around kernel, ubuntu' debian,
> etc - and I have no idea why!
>
> Thank you.
>

Hello,
Here is what you need to do:
To unsubscribe from this list [[email protected]]: send the
line "unsubscribe linux-kernel" in the body of a message to:
[email protected]

And similarly, to unsubscribe from e.g [email protected] you
should send e-mail to: [email protected] with "unsubscribe
linux-usb" in the body.

Needless to say, you should send the e-mail(s) from the mailbox you
receive unwanted mails on.

----------------------------
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/


--
Regards
trapDoor