rc80211_minstrel_debugfs.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. * Copyright (C) 2008 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. * Based on minstrel.c:
  9. * Copyright (C) 2005-2007 Derek Smithies <derek@indranet.co.nz>
  10. * Sponsored by Indranet Technologies Ltd
  11. *
  12. * Based on sample.c:
  13. * Copyright (c) 2005 John Bicket
  14. * All rights reserved.
  15. *
  16. * Redistribution and use in source and binary forms, with or without
  17. * modification, are permitted provided that the following conditions
  18. * are met:
  19. * 1. Redistributions of source code must retain the above copyright
  20. * notice, this list of conditions and the following disclaimer,
  21. * without modification.
  22. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  23. * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
  24. * redistribution must be conditioned upon including a substantially
  25. * similar Disclaimer requirement for further binary redistribution.
  26. * 3. Neither the names of the above-listed copyright holders nor the names
  27. * of any contributors may be used to endorse or promote products derived
  28. * from this software without specific prior written permission.
  29. *
  30. * Alternatively, this software may be distributed under the terms of the
  31. * GNU General Public License ("GPL") version 2 as published by the Free
  32. * Software Foundation.
  33. *
  34. * NO WARRANTY
  35. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  36. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  37. * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
  38. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  39. * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
  40. * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  41. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  42. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  43. * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  44. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  45. * THE POSSIBILITY OF SUCH DAMAGES.
  46. */
  47. #include <linux/netdevice.h>
  48. #include <linux/types.h>
  49. #include <linux/skbuff.h>
  50. #include <linux/debugfs.h>
  51. #include <linux/ieee80211.h>
  52. #include <linux/slab.h>
  53. #include <net/mac80211.h>
  54. #include "rc80211_minstrel.h"
  55. struct minstrel_stats_info {
  56. struct minstrel_sta_info *mi;
  57. char buf[4096];
  58. size_t len;
  59. };
  60. static int
  61. minstrel_stats_open(struct inode *inode, struct file *file)
  62. {
  63. struct minstrel_sta_info *mi = inode->i_private;
  64. struct minstrel_stats_info *ms;
  65. unsigned int i, tp, prob, eprob;
  66. char *p;
  67. ms = kmalloc(sizeof(*ms), GFP_KERNEL);
  68. if (!ms)
  69. return -ENOMEM;
  70. file->private_data = ms;
  71. p = ms->buf;
  72. p += sprintf(p, "rate throughput ewma prob this prob "
  73. "this succ/attempt success attempts\n");
  74. for (i = 0; i < mi->n_rates; i++) {
  75. struct minstrel_rate *mr = &mi->r[i];
  76. *(p++) = (i == mi->max_tp_rate) ? 'T' : ' ';
  77. *(p++) = (i == mi->max_tp_rate2) ? 't' : ' ';
  78. *(p++) = (i == mi->max_prob_rate) ? 'P' : ' ';
  79. p += sprintf(p, "%3u%s", mr->bitrate / 2,
  80. (mr->bitrate & 1 ? ".5" : " "));
  81. tp = mr->cur_tp / ((18000 << 10) / 96);
  82. prob = mr->cur_prob / 18;
  83. eprob = mr->probability / 18;
  84. p += sprintf(p, " %6u.%1u %6u.%1u %6u.%1u "
  85. "%3u(%3u) %8llu %8llu\n",
  86. tp / 10, tp % 10,
  87. eprob / 10, eprob % 10,
  88. prob / 10, prob % 10,
  89. mr->last_success,
  90. mr->last_attempts,
  91. (unsigned long long)mr->succ_hist,
  92. (unsigned long long)mr->att_hist);
  93. }
  94. p += sprintf(p, "\nTotal packet count:: ideal %d "
  95. "lookaround %d\n\n",
  96. mi->packet_count - mi->sample_count,
  97. mi->sample_count);
  98. ms->len = p - ms->buf;
  99. return 0;
  100. }
  101. static ssize_t
  102. minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *o)
  103. {
  104. struct minstrel_stats_info *ms;
  105. char *src;
  106. ms = file->private_data;
  107. src = ms->buf;
  108. len = min(len, ms->len);
  109. if (len <= *o)
  110. return 0;
  111. src += *o;
  112. len -= *o;
  113. *o += len;
  114. if (copy_to_user(buf, src, len))
  115. return -EFAULT;
  116. return len;
  117. }
  118. static int
  119. minstrel_stats_release(struct inode *inode, struct file *file)
  120. {
  121. struct minstrel_stats_info *ms = file->private_data;
  122. kfree(ms);
  123. return 0;
  124. }
  125. static const struct file_operations minstrel_stat_fops = {
  126. .owner = THIS_MODULE,
  127. .open = minstrel_stats_open,
  128. .read = minstrel_stats_read,
  129. .release = minstrel_stats_release,
  130. };
  131. void
  132. minstrel_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
  133. {
  134. struct minstrel_sta_info *mi = priv_sta;
  135. mi->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, mi,
  136. &minstrel_stat_fops);
  137. }
  138. void
  139. minstrel_remove_sta_debugfs(void *priv, void *priv_sta)
  140. {
  141. struct minstrel_sta_info *mi = priv_sta;
  142. debugfs_remove(mi->dbg_stats);
  143. }