[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1350123636-4801-1-git-send-email-rydberg@euromail.se>
Date: Sat, 13 Oct 2012 12:20:36 +0200
From: "Henrik Rydberg" <rydberg@...omail.se>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: Hans de Goede <hdegoede@...hat.com>,
Alan Stern <stern@...land.harvard.edu>,
Peter Stuge <peter@...ge.se>, linux-usb@...r.kernel.org,
linux-kernel@...r.kernel.org, Henrik Rydberg <rydberg@...omail.se>,
stable@...nel.org
Subject: [PATCH v3] usbdevfs: Fix broken scatter-gather transfer
The handling of large output bulk transfers is broken; the same user
page is read over and over again. Fixed with this patch.
Cc: stable@...nel.org
Acked-by: Peter Stuge <peter@...ge.se>
Acked-by: Hans de Goede <hdegoede@...hat.com>
Acked-by: Alan Stern <stern@...land.harvard.edu>
Signed-off-by: Henrik Rydberg <rydberg@...omail.se>
---
Hi Greg,
Here is the formal and third version of the patch. Version two still
made me nervous, so I moved the increment to where it is clear that
the buffer pointer is never referenced again later in the function. I
still kept the ACKS, hope that is alright with everyone.
Thanks,
Henrik
drivers/usb/core/devio.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c
index ebb8a9d..7f75343 100644
--- a/drivers/usb/core/devio.c
+++ b/drivers/usb/core/devio.c
@@ -1348,6 +1348,7 @@ static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
ret = -EFAULT;
goto error;
}
+ uurb->buffer += u;
}
totlen -= u;
}
--
1.7.12.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists