aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorIvo van Doorn <ivdoorn@gmail.com>2008-09-22 13:40:04 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-09-24 16:18:03 -0400
commitacaf908d408ccd49f13aeb46cbd4428a4db174d1 (patch)
tree9ee347bacb617f7729e19a84d76e909908980cc8 /drivers
parent4492bea656b70dad6a9ae7b59b1430fa38ba3345 (diff)
rt2x00: Fix HW crypto key handling
When a crypto key is being removed, rt2x00mac should not reset the key->hw_key_idx value because that will prevent the driver from removing the correct key from the hardware. Furthermore ffz() starts counting at 0 instead of 1, so we don't need to substract 1 from the resulting value. Signed-off-by: Stephen Blackheath <tramp.enshrine.stephen@blacksapphire.com> Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/rt2x00/rt2x00mac.c3
-rw-r--r--drivers/net/wireless/rt2x00/rt61pci.c4
-rw-r--r--drivers/net/wireless/rt2x00/rt73usb.c4
3 files changed, 6 insertions, 5 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00mac.c b/drivers/net/wireless/rt2x00/rt2x00mac.c
index 485c40de5cc0..2c6cc5c374ff 100644
--- a/drivers/net/wireless/rt2x00/rt2x00mac.c
+++ b/drivers/net/wireless/rt2x00/rt2x00mac.c
@@ -543,7 +543,8 @@ int rt2x00mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
543 * provided but key 0 is not, then the key is not found 543 * provided but key 0 is not, then the key is not found
544 * by the hardware during RX). 544 * by the hardware during RX).
545 */ 545 */
546 key->hw_key_idx = 0; 546 if (cmd == SET_KEY)
547 key->hw_key_idx = 0;
547 548
548 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) 549 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
549 set_key = rt2x00dev->ops->lib->config_pairwise_key; 550 set_key = rt2x00dev->ops->lib->config_pairwise_key;
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c
index 2c36b91ff4c7..a461620b489f 100644
--- a/drivers/net/wireless/rt2x00/rt61pci.c
+++ b/drivers/net/wireless/rt2x00/rt61pci.c
@@ -381,7 +381,7 @@ static int rt61pci_config_shared_key(struct rt2x00_dev *rt2x00dev,
381 if (reg && reg == mask) 381 if (reg && reg == mask)
382 return -ENOSPC; 382 return -ENOSPC;
383 383
384 key->hw_key_idx += reg ? (ffz(reg) - 1) : 0; 384 key->hw_key_idx += reg ? ffz(reg) : 0;
385 385
386 /* 386 /*
387 * Upload key to hardware 387 * Upload key to hardware
@@ -477,7 +477,7 @@ static int rt61pci_config_pairwise_key(struct rt2x00_dev *rt2x00dev,
477 return -ENOSPC; 477 return -ENOSPC;
478 } 478 }
479 479
480 key->hw_key_idx += reg ? (ffz(reg) - 1) : 0; 480 key->hw_key_idx += reg ? ffz(reg) : 0;
481 481
482 /* 482 /*
483 * Upload key to hardware 483 * Upload key to hardware
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c
index 27dde3e34603..934f8e03c5aa 100644
--- a/drivers/net/wireless/rt2x00/rt73usb.c
+++ b/drivers/net/wireless/rt2x00/rt73usb.c
@@ -393,7 +393,7 @@ static int rt73usb_config_shared_key(struct rt2x00_dev *rt2x00dev,
393 if (reg && reg == mask) 393 if (reg && reg == mask)
394 return -ENOSPC; 394 return -ENOSPC;
395 395
396 key->hw_key_idx += reg ? (ffz(reg) - 1) : 0; 396 key->hw_key_idx += reg ? ffz(reg) : 0;
397 397
398 /* 398 /*
399 * Upload key to hardware 399 * Upload key to hardware
@@ -494,7 +494,7 @@ static int rt73usb_config_pairwise_key(struct rt2x00_dev *rt2x00dev,
494 return -ENOSPC; 494 return -ENOSPC;
495 } 495 }
496 496
497 key->hw_key_idx += reg ? (ffz(reg) - 1) : 0; 497 key->hw_key_idx += reg ? ffz(reg) : 0;
498 498
499 /* 499 /*
500 * Upload key to hardware 500 * Upload key to hardware