rc80211_minstrel_ht_debugfs.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #include <linux/netdevice.h>
  9. #include <linux/types.h>
  10. #include <linux/skbuff.h>
  11. #include <linux/debugfs.h>
  12. #include <linux/ieee80211.h>
  13. #include <net/mac80211.h>
  14. #include "rc80211_minstrel.h"
  15. #include "rc80211_minstrel_ht.h"
  16. static int
  17. minstrel_ht_stats_open(struct inode *inode, struct file *file)
  18. {
  19. struct minstrel_ht_sta_priv *msp = inode->i_private;
  20. struct minstrel_ht_sta *mi = &msp->ht;
  21. struct minstrel_debugfs_info *ms;
  22. unsigned int i, j, tp, prob, eprob;
  23. char *p;
  24. int ret;
  25. if (!msp->is_ht) {
  26. inode->i_private = &msp->legacy;
  27. ret = minstrel_stats_open(inode, file);
  28. inode->i_private = msp;
  29. return ret;
  30. }
  31. ms = kmalloc(sizeof(*ms) + 8192, GFP_KERNEL);
  32. if (!ms)
  33. return -ENOMEM;
  34. file->private_data = ms;
  35. p = ms->buf;
  36. p += sprintf(p, "type rate throughput ewma prob this prob "
  37. "this succ/attempt success attempts\n");
  38. for (i = 0; i < MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS; i++) {
  39. char htmode = '2';
  40. char gimode = 'L';
  41. if (!mi->groups[i].supported)
  42. continue;
  43. if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
  44. htmode = '4';
  45. if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI)
  46. gimode = 'S';
  47. for (j = 0; j < MCS_GROUP_RATES; j++) {
  48. struct minstrel_rate_stats *mr = &mi->groups[i].rates[j];
  49. int idx = i * MCS_GROUP_RATES + j;
  50. if (!(mi->groups[i].supported & BIT(j)))
  51. continue;
  52. p += sprintf(p, "HT%c0/%cGI ", htmode, gimode);
  53. *(p++) = (idx == mi->max_tp_rate) ? 'T' : ' ';
  54. *(p++) = (idx == mi->max_tp_rate2) ? 't' : ' ';
  55. *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
  56. p += sprintf(p, "MCS%-2u", (minstrel_mcs_groups[i].streams - 1) *
  57. MCS_GROUP_RATES + j);
  58. tp = mr->cur_tp / 10;
  59. prob = MINSTREL_TRUNC(mr->cur_prob * 1000);
  60. eprob = MINSTREL_TRUNC(mr->probability * 1000);
  61. p += sprintf(p, " %6u.%1u %6u.%1u %6u.%1u "
  62. "%3u(%3u) %8llu %8llu\n",
  63. tp / 10, tp % 10,
  64. eprob / 10, eprob % 10,
  65. prob / 10, prob % 10,
  66. mr->last_success,
  67. mr->last_attempts,
  68. (unsigned long long)mr->succ_hist,
  69. (unsigned long long)mr->att_hist);
  70. }
  71. }
  72. p += sprintf(p, "\nTotal packet count:: ideal %d "
  73. "lookaround %d\n",
  74. max(0, (int) mi->total_packets - (int) mi->sample_packets),
  75. mi->sample_packets);
  76. p += sprintf(p, "Average A-MPDU length: %d.%d\n",
  77. MINSTREL_TRUNC(mi->avg_ampdu_len),
  78. MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
  79. ms->len = p - ms->buf;
  80. return nonseekable_open(inode, file);
  81. }
  82. static const struct file_operations minstrel_ht_stat_fops = {
  83. .owner = THIS_MODULE,
  84. .open = minstrel_ht_stats_open,
  85. .read = minstrel_stats_read,
  86. .release = minstrel_stats_release,
  87. .llseek = no_llseek,
  88. };
  89. void
  90. minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
  91. {
  92. struct minstrel_ht_sta_priv *msp = priv_sta;
  93. msp->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, msp,
  94. &minstrel_ht_stat_fops);
  95. }
  96. void
  97. minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta)
  98. {
  99. struct minstrel_ht_sta_priv *msp = priv_sta;
  100. debugfs_remove(msp->dbg_stats);
  101. }