| Date | Mon, 11 Nov 2019 14:38:30 -0800 (PST) | Subject | Re: [PATCH v6 net-next 02/13] net: ethernet: ti: cpsw: allow untagged traffic on host port | From | David Miller <> |
| |
From: Grygorii Strashko <grygorii.strashko@ti.com> Date: Sat, 9 Nov 2019 17:15:14 +0200
> + ale->p0_untag_vid_mask = > + devm_kmalloc_array(params->dev, BITS_TO_LONGS(VLAN_N_VID), > + sizeof(unsigned long), > + GFP_KERNEL); > +
devm_kmalloc_array() can fail and you must check the return value and cleanup with -ENOMEM if necessary.
|