All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michal Nazarewicz <mina86@mina86.com>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: linux-usb@vger.kernel.org, <Linux-kernel@vger.kernel.org>,
	Greg Kroah-Hartman <gregkh@suse.de>
Subject: [PATCH] usb: core: config.c: usb_get_configuration() simplified
Date: Sat, 17 Apr 2010 17:12:58 +0200	[thread overview]
Message-ID: <87sk6uaz9h.fsf@erwin.mina86.com> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1004171041240.4980-100000@netrider.rowland.org> (Alan Stern's message of "Sat, 17 Apr 2010 10:42:17 -0400 (EDT)")

usb_gat_configuratio() used two pointers to point to the same
memory.  Code simplified, by removing one of them.

Signed-off-by: Michal Nazarewicz <mina86@mina86.com>
---
 drivers/usb/core/config.c |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

> On Sat, 17 Apr 2010, Michal Nazarewicz wrote:
>> usb_get_configuration() uses a temporary buffer allocated on heap
>> to read USB configuration descriptor.  The buffer is just nine
>> bytes an so it is a waste to allocate it on heap where it can be
>> allocated on stack with the rest of local variables.  This
>> simplifies the code and minimises memory usage.

Alan Stern <stern@rowland.harvard.edu> writes:
> This is completely wrong.  You are not allowed to do DMA to buffers on 
> the stack; some architectures are not capable of handling it.

That makes sense; I haven't considered this thinking that copying nine
bytes by CPU, rather then using DMA, is not a big issue.

Still, the change proposed by attached commit does not suffer from DMA
issue and still simplify the code.

diff --git a/drivers/usb/core/config.c b/drivers/usb/core/config.c
index 0d3af6a..4b23e7f 100644
--- a/drivers/usb/core/config.c
+++ b/drivers/usb/core/config.c
@@ -722,7 +722,6 @@ int usb_get_configuration(struct usb_device *dev)
 	int ncfg = dev->descriptor.bNumConfigurations;
 	int result = 0;
 	unsigned int cfgno, length;
-	unsigned char *buffer;
 	unsigned char *bigbuffer;
 	struct usb_config_descriptor *desc;
 
@@ -751,17 +750,16 @@ int usb_get_configuration(struct usb_device *dev)
 	if (!dev->rawdescriptors)
 		goto err2;
 
-	buffer = kmalloc(USB_DT_CONFIG_SIZE, GFP_KERNEL);
-	if (!buffer)
+	desc = kmalloc(USB_DT_CONFIG_SIZE, GFP_KERNEL);
+	if (!desc)
 		goto err2;
-	desc = (struct usb_config_descriptor *)buffer;
 
 	result = 0;
 	for (; cfgno < ncfg; cfgno++) {
 		/* We grab just the first descriptor so we know how long
 		 * the whole configuration is */
 		result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno,
-		    buffer, USB_DT_CONFIG_SIZE);
+		    desc, USB_DT_CONFIG_SIZE);
 		if (result < 0) {
 			dev_err(ddev, "unable to read config index %d "
 			    "descriptor/%s: %d\n", cfgno, "start", result);
@@ -810,7 +808,7 @@ int usb_get_configuration(struct usb_device *dev)
 	result = 0;
 
 err:
-	kfree(buffer);
+	kfree(desc);
 out_not_authorized:
 	dev->descriptor.bNumConfigurations = cfgno;
 err2:
-- 
Best regards,                                         _     _
 .o. | Liege of Serenly Enlightened Majesty of      o' \,=./ `o
 ..o | Computer Science,  Michal "mina86" Nazarewicz   (o o)
 ooo +--<mina86-tlen.pl>--<jid:mina86-jabber.org>--ooO--(_)--Ooo--

  reply	other threads:[~2010-04-17 15:13 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-04-17 12:38 [PATCH] usb: core: config.c: use buffer on stack rather then on heap Michal Nazarewicz
2010-04-17 14:42 ` Alan Stern
2010-04-17 15:12   ` Michal Nazarewicz [this message]
2010-04-17 16:13     ` [PATCH] usb: core: config.c: usb_get_configuration() simplified Alan Stern
2010-04-29 23:21     ` patch usb-core-config.c-usb_get_configuration-simplified.patch added to gregkh-2.6 tree gregkh

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87sk6uaz9h.fsf@erwin.mina86.com \
    --to=mina86@mina86.com \
    --cc=Linux-kernel@vger.kernel.org \
    --cc=gregkh@suse.de \
    --cc=linux-usb@vger.kernel.org \
    --cc=stern@rowland.harvard.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.