]> git.baikalelectronics.ru Git - kernel.git/commit
isdn: mISDN: netjet: Replace GFP_ATOMIC with GFP_KERNEL in nj_probe()
authorJia-Ju Bai <baijiaju1990@gmail.com>
Fri, 27 Jul 2018 02:41:09 +0000 (10:41 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 27 Jul 2018 04:21:23 +0000 (21:21 -0700)
commit78355ca6fd03047755a8ee316078f3235b72cc06
treed94752b9f0dd809e7519a51dc3c9ab091f1fc0dc
parent1293007e08503aa28a7811dab5d988a3e6ce3bb7
isdn: mISDN: netjet: Replace GFP_ATOMIC with GFP_KERNEL in nj_probe()

nj_probe() is never called in atomic context.
It calls kzalloc() with GFP_ATOMIC, which is not necessary.
GFP_ATOMIC can be replaced with GFP_KERNEL.

This is found by a static analysis tool named DCNS written by myself.

Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/isdn/hardware/mISDN/netjet.c