提交 0efd937e 编写于 作者: J Johan Hovold 提交者: Greg Kroah-Hartman

USB: ehci-tegra: fix inefficient copy of unaligned buffers

Make sure only to copy any actual data rather than the whole buffer,
when releasing the temporary buffer used for unaligned non-isochronous
transfers.

Compile-tested only.
Signed-off-by: NJohan Hovold <johan@kernel.org>
Tested-by: NStephen Warren <swarren@nvidia.com>
Acked-by: NAlan Stern <stern@rowland.harvard.edu>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 8ca9a321
...@@ -304,6 +304,7 @@ struct dma_aligned_buffer { ...@@ -304,6 +304,7 @@ struct dma_aligned_buffer {
static void free_dma_aligned_buffer(struct urb *urb) static void free_dma_aligned_buffer(struct urb *urb)
{ {
struct dma_aligned_buffer *temp; struct dma_aligned_buffer *temp;
size_t length;
if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER)) if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER))
return; return;
...@@ -311,9 +312,14 @@ static void free_dma_aligned_buffer(struct urb *urb) ...@@ -311,9 +312,14 @@ static void free_dma_aligned_buffer(struct urb *urb)
temp = container_of(urb->transfer_buffer, temp = container_of(urb->transfer_buffer,
struct dma_aligned_buffer, data); struct dma_aligned_buffer, data);
if (usb_urb_dir_in(urb)) if (usb_urb_dir_in(urb)) {
memcpy(temp->old_xfer_buffer, temp->data, if (usb_pipeisoc(urb->pipe))
urb->transfer_buffer_length); length = urb->transfer_buffer_length;
else
length = urb->actual_length;
memcpy(temp->old_xfer_buffer, temp->data, length);
}
urb->transfer_buffer = temp->old_xfer_buffer; urb->transfer_buffer = temp->old_xfer_buffer;
kfree(temp->kmalloc_ptr); kfree(temp->kmalloc_ptr);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册