]> www.infradead.org Git - users/jedix/linux-maple.git/commit
ALSA: seq: Fix snd_seq_call_port_info_ioctl in compat mode
authorNicolas Boichat <drinkcat@chromium.org>
Mon, 18 Jan 2016 13:35:01 +0000 (21:35 +0800)
committerChuck Anderson <chuck.anderson@oracle.com>
Thu, 26 May 2016 22:43:15 +0000 (15:43 -0700)
commitdd95ba792593f05580c0aff0d08d09da138f6638
tree3dbf36a1a7530e095a2e3829c06c9b533c57d1b6
parent86230d1152c644e9a939b8730ac5137cd85c1d96
ALSA: seq: Fix snd_seq_call_port_info_ioctl in compat mode

Orabug: 23330531

commit 9586495dc3011a80602329094e746dbce16cb1f1 upstream.

This reverts one hunk of
commit ef44a1ec6eee ("ALSA: sound/core: use memdup_user()"), which
replaced a number of kmalloc followed by memcpy with memdup calls.

In this case, we are copying from a struct snd_seq_port_info32 to a
struct snd_seq_port_info, but the latter is 4 bytes longer than the
32-bit version, so we need to separate kmalloc and copy calls.

Fixes: ef44a1ec6eee ('ALSA: sound/core: use memdup_user()')
Signed-off-by: Nicolas Boichat <drinkcat@chromium.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit d1a55757fefff39a7b71305a78c2722d3b9b6529)

Signed-off-by: Dan Duval <dan.duval@oracle.com>
sound/core/seq/seq_compat.c