]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
USB: usblp: fix DMA to stack
authorJohan Hovold <johan@kernel.org>
Mon, 4 Jan 2021 14:53:02 +0000 (15:53 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 12 Jan 2021 19:10:22 +0000 (20:10 +0100)
commit95c4faad3fa442e0fee4930b209a95af972a98a2
tree49aed7e04a09f0a488e9edde9ff8d9ea42553df6
parent7a7a734d69f9da99ffe343bbc96ee56986c249ec
USB: usblp: fix DMA to stack

commit 020a1f453449294926ca548d8d5ca970926e8dfd upstream.

Stack-allocated buffers cannot be used for DMA (on all architectures).

Replace the HP-channel macro with a helper function that allocates a
dedicated transfer buffer so that it can continue to be used with
arguments from the stack.

Note that the buffer is cleared on allocation as usblp_ctrl_msg()
returns success also on short transfers (the buffer is only used for
debugging).

Cc: stable@vger.kernel.org
Signed-off-by: Johan Hovold <johan@kernel.org>
Link: https://lore.kernel.org/r/20210104145302.2087-1-johan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/class/usblp.c