Skip to content

Commit

Permalink
staging/rtl8192u: add endianness conversions
Browse files Browse the repository at this point in the history
Fields frag_size and playload_size of struct ieee80211_txb are encoded
as short little-endian. This patch adds conversions to / from cpu byte
order when copy / write these values in variables of architecture
independent byte order. It also avoid a sparse type warning.

Signed-off-by: Colin Vidal <colin@cvidal.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Colin Vidal authored and Greg Kroah-Hartman committed Jan 27, 2017
1 parent 3e99c2d commit e7b56b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ static struct ieee80211_txb *ieee80211_alloc_txb(int nr_frags, int txb_size,

memset(txb, 0, sizeof(struct ieee80211_txb));
txb->nr_frags = nr_frags;
txb->frag_size = txb_size;
txb->frag_size = __cpu_to_le16(txb_size);

for (i = 0; i < nr_frags; i++) {
txb->fragments[i] = dev_alloc_skb(txb_size);
Expand Down Expand Up @@ -752,7 +752,7 @@ int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
goto failed;
}
txb->encrypted = encrypt;
txb->payload_size = bytes;
txb->payload_size = __cpu_to_le16(bytes);

//if (ieee->current_network.QoS_Enable)
if(qos_actived)
Expand Down Expand Up @@ -859,7 +859,7 @@ int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
}

txb->encrypted = 0;
txb->payload_size = skb->len;
txb->payload_size = __cpu_to_le16(skb->len);
memcpy(skb_put(txb->fragments[0],skb->len), skb->data, skb->len);
}

Expand Down Expand Up @@ -896,7 +896,7 @@ int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
}else{
if ((*ieee->hard_start_xmit)(txb, dev) == 0) {
stats->tx_packets++;
stats->tx_bytes += txb->payload_size;
stats->tx_bytes += __le16_to_cpu(txb->payload_size);
return 0;
}
ieee80211_txb_free(txb);
Expand Down

0 comments on commit e7b56b1

Please sign in to comment.