stats.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. #include <linux/slab.h>
  2. #include <linux/fs.h>
  3. #include <linux/seq_file.h>
  4. #include <linux/proc_fs.h>
  5. #include "sched.h"
  6. /*
  7. * bump this up when changing the output format or the meaning of an existing
  8. * format, so that tools can adapt (or abort)
  9. */
  10. #define SCHEDSTAT_VERSION 15
  11. static int show_schedstat(struct seq_file *seq, void *v)
  12. {
  13. int cpu;
  14. int mask_len = DIV_ROUND_UP(NR_CPUS, 32) * 9;
  15. char *mask_str = kmalloc(mask_len, GFP_KERNEL);
  16. if (mask_str == NULL)
  17. return -ENOMEM;
  18. seq_printf(seq, "version %d\n", SCHEDSTAT_VERSION);
  19. seq_printf(seq, "timestamp %lu\n", jiffies);
  20. for_each_online_cpu(cpu) {
  21. struct rq *rq = cpu_rq(cpu);
  22. #ifdef CONFIG_SMP
  23. struct sched_domain *sd;
  24. int dcount = 0;
  25. #endif
  26. /* runqueue-specific stats */
  27. seq_printf(seq,
  28. "cpu%d %u 0 %u %u %u %u %llu %llu %lu",
  29. cpu, rq->yld_count,
  30. rq->sched_count, rq->sched_goidle,
  31. rq->ttwu_count, rq->ttwu_local,
  32. rq->rq_cpu_time,
  33. rq->rq_sched_info.run_delay, rq->rq_sched_info.pcount);
  34. seq_printf(seq, "\n");
  35. #ifdef CONFIG_SMP
  36. /* domain-specific stats */
  37. rcu_read_lock();
  38. for_each_domain(cpu, sd) {
  39. enum cpu_idle_type itype;
  40. cpumask_scnprintf(mask_str, mask_len,
  41. sched_domain_span(sd));
  42. seq_printf(seq, "domain%d %s", dcount++, mask_str);
  43. for (itype = CPU_IDLE; itype < CPU_MAX_IDLE_TYPES;
  44. itype++) {
  45. seq_printf(seq, " %u %u %u %u %u %u %u %u",
  46. sd->lb_count[itype],
  47. sd->lb_balanced[itype],
  48. sd->lb_failed[itype],
  49. sd->lb_imbalance[itype],
  50. sd->lb_gained[itype],
  51. sd->lb_hot_gained[itype],
  52. sd->lb_nobusyq[itype],
  53. sd->lb_nobusyg[itype]);
  54. }
  55. seq_printf(seq,
  56. " %u %u %u %u %u %u %u %u %u %u %u %u\n",
  57. sd->alb_count, sd->alb_failed, sd->alb_pushed,
  58. sd->sbe_count, sd->sbe_balanced, sd->sbe_pushed,
  59. sd->sbf_count, sd->sbf_balanced, sd->sbf_pushed,
  60. sd->ttwu_wake_remote, sd->ttwu_move_affine,
  61. sd->ttwu_move_balance);
  62. }
  63. rcu_read_unlock();
  64. #endif
  65. }
  66. kfree(mask_str);
  67. return 0;
  68. }
  69. static int schedstat_open(struct inode *inode, struct file *file)
  70. {
  71. unsigned int size = PAGE_SIZE * (1 + num_online_cpus() / 32);
  72. char *buf = kmalloc(size, GFP_KERNEL);
  73. struct seq_file *m;
  74. int res;
  75. if (!buf)
  76. return -ENOMEM;
  77. res = single_open(file, show_schedstat, NULL);
  78. if (!res) {
  79. m = file->private_data;
  80. m->buf = buf;
  81. m->size = size;
  82. } else
  83. kfree(buf);
  84. return res;
  85. }
  86. static const struct file_operations proc_schedstat_operations = {
  87. .open = schedstat_open,
  88. .read = seq_read,
  89. .llseek = seq_lseek,
  90. .release = single_release,
  91. };
  92. static int __init proc_schedstat_init(void)
  93. {
  94. proc_create("schedstat", 0, NULL, &proc_schedstat_operations);
  95. return 0;
  96. }
  97. module_init(proc_schedstat_init);