diff options
author | David Howells <dhowells@redhat.com> | 2013-04-10 16:13:23 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-04-29 15:41:56 -0400 |
commit | 6bbefe86796c07fb8a6d28114f1e3f770586ba05 (patch) | |
tree | 9420dda4c0366785b1eb8efc0d2c8df2ee1e1910 /net | |
parent | 4c4df9b91bf6ffd4bb01abe4cfba1f8f145878a0 (diff) |
hostap: Don't use create_proc_read_entry()
Don't use create_proc_read_entry() as that is deprecated, but rather use
proc_create_data() and seq_file instead.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
cc: Jouni Malinen <j@w1.fi>
cc: John W. Linville <linville@tuxdriver.com>
cc: Johannes Berg <johannes@sipsolutions.net>
cc: linux-wireless@vger.kernel.org
cc: netdev@vger.kernel.org
cc: devel@driverdev.osuosl.org
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'net')
-rw-r--r-- | net/wireless/lib80211_crypt_ccmp.c | 29 | ||||
-rw-r--r-- | net/wireless/lib80211_crypt_tkip.c | 44 | ||||
-rw-r--r-- | net/wireless/lib80211_crypt_wep.c | 5 |
3 files changed, 38 insertions, 40 deletions
diff --git a/net/wireless/lib80211_crypt_ccmp.c b/net/wireless/lib80211_crypt_ccmp.c index 1526c211db66..dc0e59e53dbf 100644 --- a/net/wireless/lib80211_crypt_ccmp.c +++ b/net/wireless/lib80211_crypt_ccmp.c | |||
@@ -430,24 +430,23 @@ static int lib80211_ccmp_get_key(void *key, int len, u8 * seq, void *priv) | |||
430 | return CCMP_TK_LEN; | 430 | return CCMP_TK_LEN; |
431 | } | 431 | } |
432 | 432 | ||
433 | static char *lib80211_ccmp_print_stats(char *p, void *priv) | 433 | static void lib80211_ccmp_print_stats(struct seq_file *m, void *priv) |
434 | { | 434 | { |
435 | struct lib80211_ccmp_data *ccmp = priv; | 435 | struct lib80211_ccmp_data *ccmp = priv; |
436 | 436 | ||
437 | p += sprintf(p, "key[%d] alg=CCMP key_set=%d " | 437 | seq_printf(m, |
438 | "tx_pn=%02x%02x%02x%02x%02x%02x " | 438 | "key[%d] alg=CCMP key_set=%d " |
439 | "rx_pn=%02x%02x%02x%02x%02x%02x " | 439 | "tx_pn=%02x%02x%02x%02x%02x%02x " |
440 | "format_errors=%d replays=%d decrypt_errors=%d\n", | 440 | "rx_pn=%02x%02x%02x%02x%02x%02x " |
441 | ccmp->key_idx, ccmp->key_set, | 441 | "format_errors=%d replays=%d decrypt_errors=%d\n", |
442 | ccmp->tx_pn[0], ccmp->tx_pn[1], ccmp->tx_pn[2], | 442 | ccmp->key_idx, ccmp->key_set, |
443 | ccmp->tx_pn[3], ccmp->tx_pn[4], ccmp->tx_pn[5], | 443 | ccmp->tx_pn[0], ccmp->tx_pn[1], ccmp->tx_pn[2], |
444 | ccmp->rx_pn[0], ccmp->rx_pn[1], ccmp->rx_pn[2], | 444 | ccmp->tx_pn[3], ccmp->tx_pn[4], ccmp->tx_pn[5], |
445 | ccmp->rx_pn[3], ccmp->rx_pn[4], ccmp->rx_pn[5], | 445 | ccmp->rx_pn[0], ccmp->rx_pn[1], ccmp->rx_pn[2], |
446 | ccmp->dot11RSNAStatsCCMPFormatErrors, | 446 | ccmp->rx_pn[3], ccmp->rx_pn[4], ccmp->rx_pn[5], |
447 | ccmp->dot11RSNAStatsCCMPReplays, | 447 | ccmp->dot11RSNAStatsCCMPFormatErrors, |
448 | ccmp->dot11RSNAStatsCCMPDecryptErrors); | 448 | ccmp->dot11RSNAStatsCCMPReplays, |
449 | 449 | ccmp->dot11RSNAStatsCCMPDecryptErrors); | |
450 | return p; | ||
451 | } | 450 | } |
452 | 451 | ||
453 | static struct lib80211_crypto_ops lib80211_crypt_ccmp = { | 452 | static struct lib80211_crypto_ops lib80211_crypt_ccmp = { |
diff --git a/net/wireless/lib80211_crypt_tkip.c b/net/wireless/lib80211_crypt_tkip.c index d475cfc8568f..8c90ba79e56e 100644 --- a/net/wireless/lib80211_crypt_tkip.c +++ b/net/wireless/lib80211_crypt_tkip.c | |||
@@ -703,30 +703,30 @@ static int lib80211_tkip_get_key(void *key, int len, u8 * seq, void *priv) | |||
703 | return TKIP_KEY_LEN; | 703 | return TKIP_KEY_LEN; |
704 | } | 704 | } |
705 | 705 | ||
706 | static char *lib80211_tkip_print_stats(char *p, void *priv) | 706 | static void lib80211_tkip_print_stats(struct seq_file *m, void *priv) |
707 | { | 707 | { |
708 | struct lib80211_tkip_data *tkip = priv; | 708 | struct lib80211_tkip_data *tkip = priv; |
709 | p += sprintf(p, "key[%d] alg=TKIP key_set=%d " | 709 | seq_printf(m, |
710 | "tx_pn=%02x%02x%02x%02x%02x%02x " | 710 | "key[%d] alg=TKIP key_set=%d " |
711 | "rx_pn=%02x%02x%02x%02x%02x%02x " | 711 | "tx_pn=%02x%02x%02x%02x%02x%02x " |
712 | "replays=%d icv_errors=%d local_mic_failures=%d\n", | 712 | "rx_pn=%02x%02x%02x%02x%02x%02x " |
713 | tkip->key_idx, tkip->key_set, | 713 | "replays=%d icv_errors=%d local_mic_failures=%d\n", |
714 | (tkip->tx_iv32 >> 24) & 0xff, | 714 | tkip->key_idx, tkip->key_set, |
715 | (tkip->tx_iv32 >> 16) & 0xff, | 715 | (tkip->tx_iv32 >> 24) & 0xff, |
716 | (tkip->tx_iv32 >> 8) & 0xff, | 716 | (tkip->tx_iv32 >> 16) & 0xff, |
717 | tkip->tx_iv32 & 0xff, | 717 | (tkip->tx_iv32 >> 8) & 0xff, |
718 | (tkip->tx_iv16 >> 8) & 0xff, | 718 | tkip->tx_iv32 & 0xff, |
719 | tkip->tx_iv16 & 0xff, | 719 | (tkip->tx_iv16 >> 8) & 0xff, |
720 | (tkip->rx_iv32 >> 24) & 0xff, | 720 | tkip->tx_iv16 & 0xff, |
721 | (tkip->rx_iv32 >> 16) & 0xff, | 721 | (tkip->rx_iv32 >> 24) & 0xff, |
722 | (tkip->rx_iv32 >> 8) & 0xff, | 722 | (tkip->rx_iv32 >> 16) & 0xff, |
723 | tkip->rx_iv32 & 0xff, | 723 | (tkip->rx_iv32 >> 8) & 0xff, |
724 | (tkip->rx_iv16 >> 8) & 0xff, | 724 | tkip->rx_iv32 & 0xff, |
725 | tkip->rx_iv16 & 0xff, | 725 | (tkip->rx_iv16 >> 8) & 0xff, |
726 | tkip->dot11RSNAStatsTKIPReplays, | 726 | tkip->rx_iv16 & 0xff, |
727 | tkip->dot11RSNAStatsTKIPICVErrors, | 727 | tkip->dot11RSNAStatsTKIPReplays, |
728 | tkip->dot11RSNAStatsTKIPLocalMICFailures); | 728 | tkip->dot11RSNAStatsTKIPICVErrors, |
729 | return p; | 729 | tkip->dot11RSNAStatsTKIPLocalMICFailures); |
730 | } | 730 | } |
731 | 731 | ||
732 | static struct lib80211_crypto_ops lib80211_crypt_tkip = { | 732 | static struct lib80211_crypto_ops lib80211_crypt_tkip = { |
diff --git a/net/wireless/lib80211_crypt_wep.c b/net/wireless/lib80211_crypt_wep.c index c1304018fc1c..1c292e4ea7b6 100644 --- a/net/wireless/lib80211_crypt_wep.c +++ b/net/wireless/lib80211_crypt_wep.c | |||
@@ -253,11 +253,10 @@ static int lib80211_wep_get_key(void *key, int len, u8 * seq, void *priv) | |||
253 | return wep->key_len; | 253 | return wep->key_len; |
254 | } | 254 | } |
255 | 255 | ||
256 | static char *lib80211_wep_print_stats(char *p, void *priv) | 256 | static void lib80211_wep_print_stats(struct seq_file *m, void *priv) |
257 | { | 257 | { |
258 | struct lib80211_wep_data *wep = priv; | 258 | struct lib80211_wep_data *wep = priv; |
259 | p += sprintf(p, "key[%d] alg=WEP len=%d\n", wep->key_idx, wep->key_len); | 259 | seq_printf(m, "key[%d] alg=WEP len=%d\n", wep->key_idx, wep->key_len); |
260 | return p; | ||
261 | } | 260 | } |
262 | 261 | ||
263 | static struct lib80211_crypto_ops lib80211_crypt_wep = { | 262 | static struct lib80211_crypto_ops lib80211_crypt_wep = { |