]> asedeno.scripts.mit.edu Git - linux.git/commit
staging: vt6655: Use GFP_KERNEL in kzalloc
authorJia-Ju Bai <baijiaju1990@gmail.com>
Mon, 18 Dec 2017 09:07:54 +0000 (17:07 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 19 Dec 2017 14:16:50 +0000 (15:16 +0100)
commit88a527c4981847838273703df010eb8aca5ee023
treead27cb9c4e4dfc202070ad8c0e2e21fafa3a5487
parentac3c7776b17c2d3c252459ca851d3bfc29403d71
staging: vt6655: Use GFP_KERNEL in kzalloc

Four kzalloc functions are called with GFP_ATOMIC.
But according to driver call graph, they are not in atomic context,
namely no spinlock is held nor in an interrupt handler.

All these "GFP_ATOMIC"s are unnecessary,
and replace with with "GFP_KERNEL"s.

Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/device_main.c