diff options
Diffstat (limited to 'net/mac80211/mesh_hwmp.c')
-rw-r--r-- | net/mac80211/mesh_hwmp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/mac80211/mesh_hwmp.c b/net/mac80211/mesh_hwmp.c index eb4180bff575..7d36f3a741a5 100644 --- a/net/mac80211/mesh_hwmp.c +++ b/net/mac80211/mesh_hwmp.c | |||
@@ -686,6 +686,7 @@ static void hwmp_rann_frame_process(struct ieee80211_sub_if_data *sdata, | |||
686 | orig_addr = rann->rann_addr; | 686 | orig_addr = rann->rann_addr; |
687 | orig_dsn = rann->rann_seq; | 687 | orig_dsn = rann->rann_seq; |
688 | hopcount = rann->rann_hopcount; | 688 | hopcount = rann->rann_hopcount; |
689 | hopcount++; | ||
689 | metric = rann->rann_metric; | 690 | metric = rann->rann_metric; |
690 | mhwmp_dbg("received RANN from %pM\n", orig_addr); | 691 | mhwmp_dbg("received RANN from %pM\n", orig_addr); |
691 | 692 | ||
@@ -706,7 +707,8 @@ static void hwmp_rann_frame_process(struct ieee80211_sub_if_data *sdata, | |||
706 | mesh_path_sel_frame_tx(MPATH_RANN, flags, orig_addr, | 707 | mesh_path_sel_frame_tx(MPATH_RANN, flags, orig_addr, |
707 | cpu_to_le32(orig_dsn), | 708 | cpu_to_le32(orig_dsn), |
708 | 0, NULL, 0, sdata->dev->broadcast, | 709 | 0, NULL, 0, sdata->dev->broadcast, |
709 | hopcount, ttl, 0, cpu_to_le32(metric), | 710 | hopcount, ttl, 0, |
711 | cpu_to_le32(metric + mpath->metric), | ||
710 | 0, sdata); | 712 | 0, sdata); |
711 | mpath->dsn = orig_dsn; | 713 | mpath->dsn = orig_dsn; |
712 | } | 714 | } |