net: atm: Remove the error message according to the atomic context

Looking into the context (atomic!) and the error message should be dropped.

Signed-off-by: Liao Pingfang <liao.pingfang@zte.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Liao Pingfang 2020-06-13 14:03:26 +08:00 committed by David S. Miller
parent 6954a9e419
commit bf97bac9dc

View file

@ -1536,10 +1536,8 @@ static struct lec_arp_table *make_entry(struct lec_priv *priv,
struct lec_arp_table *to_return; struct lec_arp_table *to_return;
to_return = kzalloc(sizeof(struct lec_arp_table), GFP_ATOMIC); to_return = kzalloc(sizeof(struct lec_arp_table), GFP_ATOMIC);
if (!to_return) { if (!to_return)
pr_info("LEC: Arp entry kmalloc failed\n");
return NULL; return NULL;
}
ether_addr_copy(to_return->mac_addr, mac_addr); ether_addr_copy(to_return->mac_addr, mac_addr);
INIT_HLIST_NODE(&to_return->next); INIT_HLIST_NODE(&to_return->next);
timer_setup(&to_return->timer, lec_arp_expire_arp, 0); timer_setup(&to_return->timer, lec_arp_expire_arp, 0);