aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/mac80211/mesh_pathtbl.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/net/mac80211/mesh_pathtbl.c b/net/mac80211/mesh_pathtbl.c
index 512bfa112c6a..fe1ceeea07f1 100644
--- a/net/mac80211/mesh_pathtbl.c
+++ b/net/mac80211/mesh_pathtbl.c
@@ -469,9 +469,12 @@ static int mesh_path_node_copy(struct hlist_node *p, struct mesh_table *newtbl)
469 struct mpath_node *node, *new_node; 469 struct mpath_node *node, *new_node;
470 u32 hash_idx; 470 u32 hash_idx;
471 471
472 new_node = kmalloc(sizeof(struct mpath_node), GFP_KERNEL);
473 if (new_node == NULL)
474 return -ENOMEM;
475
472 node = hlist_entry(p, struct mpath_node, list); 476 node = hlist_entry(p, struct mpath_node, list);
473 mpath = node->mpath; 477 mpath = node->mpath;
474 new_node = kmalloc(sizeof(struct mpath_node), GFP_KERNEL);
475 new_node->mpath = mpath; 478 new_node->mpath = mpath;
476 hash_idx = mesh_table_hash(mpath->dst, mpath->dev, newtbl); 479 hash_idx = mesh_table_hash(mpath->dst, mpath->dev, newtbl);
477 hlist_add_head(&new_node->list, 480 hlist_add_head(&new_node->list,