Commit 9f13084d authored by Rui Paulo's avatar Rui Paulo Committed by John W. Linville

mac80211: fix endianess on mesh_path_error_tx() calls

Signed-off-by: default avatarRui Paulo <rpaulo@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 64491f0e
...@@ -468,7 +468,7 @@ void mesh_plink_broken(struct sta_info *sta) ...@@ -468,7 +468,7 @@ void mesh_plink_broken(struct sta_info *sta)
spin_unlock_bh(&mpath->state_lock); spin_unlock_bh(&mpath->state_lock);
mesh_path_error_tx(MESH_TTL, mpath->dst, mesh_path_error_tx(MESH_TTL, mpath->dst,
cpu_to_le32(mpath->sn), cpu_to_le32(mpath->sn),
PERR_RCODE_DEST_UNREACH, cpu_to_le16(PERR_RCODE_DEST_UNREACH),
bcast, sdata); bcast, sdata);
} else } else
spin_unlock_bh(&mpath->state_lock); spin_unlock_bh(&mpath->state_lock);
...@@ -614,7 +614,7 @@ void mesh_path_discard_frame(struct sk_buff *skb, ...@@ -614,7 +614,7 @@ void mesh_path_discard_frame(struct sk_buff *skb,
if (mpath) if (mpath)
sn = ++mpath->sn; sn = ++mpath->sn;
mesh_path_error_tx(MESH_TTL, skb->data, cpu_to_le32(sn), mesh_path_error_tx(MESH_TTL, skb->data, cpu_to_le32(sn),
PERR_RCODE_NO_ROUTE, ra, sdata); cpu_to_le16(PERR_RCODE_NO_ROUTE), ra, sdata);
} }
kfree_skb(skb); kfree_skb(skb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment