ALSA: info: Use kvzalloc() for a temporary write buffer
authorTakashi Iwai <tiwai@suse.de>
Mon, 22 May 2017 15:39:13 +0000 (17:39 +0200)
committerTakashi Iwai <tiwai@suse.de>
Tue, 23 May 2017 05:04:06 +0000 (07:04 +0200)
commitffb73b08e79418fbf3f2ea44a7818a6715399d2c
tree4506b419460f8819ab5e1053510301f1bc466b19
parentc2c86a97175f552fd32b339426a489c7af818123
ALSA: info: Use kvzalloc() for a temporary write buffer

We used to use kmalloc (more exactly, krealloc()) for creating and
growing the temporary buffer for text proc write.  It can grow up to
16kB, and it's already a bit doubtful whether it's always safe to use
kmalloc().  With the recent addition of kvmalloc(), we can have a
better chance for succeed of memory allocation, so let's switch to
that new API.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/info.c