Re: [PATCH net-next 03/13] ipv4: Create init helper for fib_nh
From: David Ahern <hidden>
Date: 2019-03-27 14:17:31
On 3/27/19 2:12 AM, Ido Schimmel wrote:
On Tue, Mar 26, 2019 at 08:29:32PM -0700, David Ahern wrote:quoted
+int fib_nh_init(struct net *net, struct fib_nh *nh, + struct fib_config *cfg, int nh_weight, + struct netlink_ext_ack *extack) +{ + int err = -ENOMEM; + + nh->nh_pcpu_rth_output = alloc_percpu(struct rtable __rcu *); + if (!nh->nh_pcpu_rth_output) + goto failure; + + if (cfg->fc_encap) { + struct lwtunnel_state *lwtstate; + + err = -EINVAL; + if (cfg->fc_encap_type == LWTUNNEL_ENCAP_NONE) { + NL_SET_ERR_MSG(extack, "LWT encap type not specified"); + goto failure;This is very confusing and probably error-prone. You call alloc_percpu(), but don't free it in the error path and instead rely on the call to free_fib_info() in the error path of fib_create_info(). Better to free it here and NULL-ify the pointer. Then the call to rt_fibinfo_free_cpus() in free_fib_info_rcu() is basically a NOP.
Sure. I will change it.