diff options
| author | Jia-Ju Bai <[email protected]> | 2018-07-27 09:28:25 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2018-07-27 20:45:15 +0000 |
| commit | 04b9ce48ef19e09d8c65eb506b7982e99db212d7 (patch) | |
| tree | d82b4bd78cda0757069c571d3af16a80ab02839e /net/tipc | |
| parent | net: usb: sr9700: Replace mdelay() with msleep() in sr9700_bind() (diff) | |
| download | kernel-04b9ce48ef19e09d8c65eb506b7982e99db212d7.tar.gz kernel-04b9ce48ef19e09d8c65eb506b7982e99db212d7.zip | |
net: tipc: name_table: Replace GFP_ATOMIC with GFP_KERNEL in tipc_nametbl_init()
tipc_nametbl_init() 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 <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/tipc')
| -rw-r--r-- | net/tipc/name_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/name_table.c b/net/tipc/name_table.c index bebe88cae07b..88f027b502f6 100644 --- a/net/tipc/name_table.c +++ b/net/tipc/name_table.c @@ -735,7 +735,7 @@ int tipc_nametbl_init(struct net *net) struct name_table *nt; int i; - nt = kzalloc(sizeof(*nt), GFP_ATOMIC); + nt = kzalloc(sizeof(*nt), GFP_KERNEL); if (!nt) return -ENOMEM; |
