diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-01 20:51:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-01 20:51:54 -0400 |
commit | 20b4fb485227404329e41ad15588afad3df23050 (patch) | |
tree | f3e099f0ab3da8a93b447203e294d2bb22f6dc05 /net/wireless | |
parent | b9394d8a657cd3c064fa432aa0905c1b58b38fe9 (diff) | |
parent | ac3e3c5b1164397656df81b9e9ab4991184d3236 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull VFS updates from Al Viro,
Misc cleanups all over the place, mainly wrt /proc interfaces (switch
create_proc_entry to proc_create(), get rid of the deprecated
create_proc_read_entry() in favor of using proc_create_data() and
seq_file etc).
7kloc removed.
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (204 commits)
don't bother with deferred freeing of fdtables
proc: Move non-public stuff from linux/proc_fs.h to fs/proc/internal.h
proc: Make the PROC_I() and PDE() macros internal to procfs
proc: Supply a function to remove a proc entry by PDE
take cgroup_open() and cpuset_open() to fs/proc/base.c
ppc: Clean up scanlog
ppc: Clean up rtas_flash driver somewhat
hostap: proc: Use remove_proc_subtree()
drm: proc: Use remove_proc_subtree()
drm: proc: Use minor->index to label things, not PDE->name
drm: Constify drm_proc_list[]
zoran: Don't print proc_dir_entry data in debug
reiserfs: Don't access the proc_dir_entry in r_open(), r_start() r_show()
proc: Supply an accessor for getting the data from a PDE's parent
airo: Use remove_proc_subtree()
rtl8192u: Don't need to save device proc dir PDE
rtl8187se: Use a dir under /proc/net/r8180/
proc: Add proc_mkdir_data()
proc: Move some bits from linux/proc_fs.h to linux/{of.h,signal.h,tty.h}
proc: Move PDE_NET() to fs/proc/proc_net.c
...
Diffstat (limited to 'net/wireless')
-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 = { |