]> git.itanic.dy.fi Git - linux-stable/commitdiff
vxlan: vnifilter: Use GFP_KERNEL instead of GFP_ATOMIC
authorIdo Schimmel <idosch@nvidia.com>
Mon, 21 Aug 2023 14:19:23 +0000 (17:19 +0300)
committerJakub Kicinski <kuba@kernel.org>
Tue, 22 Aug 2023 17:58:45 +0000 (10:58 -0700)
The function is not called from an atomic context so use GFP_KERNEL
instead of GFP_ATOMIC. The allocation of the per-CPU stats is already
performed with GFP_KERNEL.

Tested using test_vxlan_vnifiltering.sh with CONFIG_DEBUG_ATOMIC_SLEEP.

Signed-off-by: Ido Schimmel <idosch@nvidia.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Reviewed-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com>
Reviewed-by: Nikolay Aleksandrov <razor@blackwall.org>
Link: https://lore.kernel.org/r/20230821141923.1889776-1-idosch@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/vxlan/vxlan_vnifilter.c

index c3ff30ab782e942cd679a6b8c7a950c4a3488753..9c59d0bf8c3de09ba87ecdeac93ea7b615a62a31 100644 (file)
@@ -696,7 +696,7 @@ static struct vxlan_vni_node *vxlan_vni_alloc(struct vxlan_dev *vxlan,
 {
        struct vxlan_vni_node *vninode;
 
-       vninode = kzalloc(sizeof(*vninode), GFP_ATOMIC);
+       vninode = kzalloc(sizeof(*vninode), GFP_KERNEL);
        if (!vninode)
                return NULL;
        vninode->stats = netdev_alloc_pcpu_stats(struct vxlan_vni_stats_pcpu);