diff options
| author | Malcolm Priestley <tvboxspy@gmail.com> | 2020-05-21 10:57:47 +0100 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-05-22 11:02:28 +0200 | 
| commit | 1dfb74b1ea6d8e5977a9bdc0915f22934b33d8ea (patch) | |
| tree | 4af5f8488656c25fdbbffa81420fc9206021a130 | |
| parent | dc6490b0c5058c44868b3921cfd3b2a223ee038c (diff) | |
staging: vt6656: move key frag controls to vnt_fill_txkey
vnt_fill_txkey now has access to tx_buffer move cipher frag controls
The icv_len is the only thing needed from hw_key in vnt_tx_packet.
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Link: https://lore.kernel.org/r/bb91b159-387a-005b-f614-c541de128c40@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/vt6656/rxtx.c | 23 | 
1 files changed, 5 insertions, 18 deletions
diff --git a/drivers/staging/vt6656/rxtx.c b/drivers/staging/vt6656/rxtx.c index bbe449af8acf..9ee57f7c0c88 100644 --- a/drivers/staging/vt6656/rxtx.c +++ b/drivers/staging/vt6656/rxtx.c @@ -323,10 +323,12 @@ static bool vnt_fill_txkey(struct vnt_tx_buffer *tx_buffer, struct sk_buff *skb)  			       tx_key->key, WLAN_KEY_LEN_WEP40);  		} +		fifo->frag_ctl |= cpu_to_le16(FRAGCTL_LEGACY);  		break;  	case WLAN_CIPHER_SUITE_TKIP:  		ieee80211_get_tkip_p2k(tx_key, skb, fifo->tx_key); +		fifo->frag_ctl |= cpu_to_le16(FRAGCTL_TKIP);  		break;  	case WLAN_CIPHER_SUITE_CCMP:  		if (info->control.use_cts_prot) { @@ -369,6 +371,7 @@ static bool vnt_fill_txkey(struct vnt_tx_buffer *tx_buffer, struct sk_buff *skb)  		memcpy(fifo->tx_key, tx_key->key, WLAN_KEY_LEN_CCMP); +		fifo->frag_ctl |= cpu_to_le16(FRAGCTL_AES);  		return true;  	default:  		break; @@ -504,7 +507,6 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)  	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);  	struct ieee80211_tx_rate *tx_rate = &info->control.rates[0];  	struct ieee80211_rate *rate; -	struct ieee80211_key_conf *tx_key;  	struct ieee80211_hdr *hdr;  	struct vnt_tx_buffer *tx_buffer;  	struct vnt_tx_fifo_head *tx_buffer_head; @@ -606,23 +608,8 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)  	tx_buffer_head->frag_ctl =  			cpu_to_le16(ieee80211_get_hdrlen_from_skb(skb) << 10); -	if (info->control.hw_key) { -		tx_key = info->control.hw_key; -		switch (info->control.hw_key->cipher) { -		case WLAN_CIPHER_SUITE_WEP40: -		case WLAN_CIPHER_SUITE_WEP104: -			tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_LEGACY); -			break; -		case WLAN_CIPHER_SUITE_TKIP: -			tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_TKIP); -			break; -		case WLAN_CIPHER_SUITE_CCMP: -			tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_AES); -		default: -			break; -		} -		tx_context->frame_len += tx_key->icv_len; -	} +	if (info->control.hw_key) +		tx_context->frame_len += info->control.hw_key->icv_len;  	tx_buffer_head->current_rate = cpu_to_le16(rate->hw_value);  | 
