]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
allocate_flower_entry: should check for null deref
authorNavid Emamdoost <navid.emamdoost@gmail.com>
Sun, 21 Jul 2019 06:37:31 +0000 (01:37 -0500)
committerDavid S. Miller <davem@davemloft.net>
Sun, 21 Jul 2019 18:47:30 +0000 (11:47 -0700)
allocate_flower_entry does not check for allocation success, but tries
to deref the result. I only moved the spin_lock under null check, because
 the caller is checking allocation's status at line 652.

Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_flower.c

index 312599c6b35a96a70ba301d5c17fa30174146f8e..e447976bdd3e06c3cc74f2538c3db1305bf4c503 100644 (file)
@@ -67,7 +67,8 @@ static struct ch_tc_pedit_fields pedits[] = {
 static struct ch_tc_flower_entry *allocate_flower_entry(void)
 {
        struct ch_tc_flower_entry *new = kzalloc(sizeof(*new), GFP_KERNEL);
-       spin_lock_init(&new->lock);
+       if (new)
+               spin_lock_init(&new->lock);
        return new;
 }