stat.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. #include <linux/cpumask.h>
  2. #include <linux/fs.h>
  3. #include <linux/init.h>
  4. #include <linux/interrupt.h>
  5. #include <linux/kernel_stat.h>
  6. #include <linux/proc_fs.h>
  7. #include <linux/sched.h>
  8. #include <linux/seq_file.h>
  9. #include <linux/slab.h>
  10. #include <linux/time.h>
  11. #include <linux/irqnr.h>
  12. #include <asm/cputime.h>
  13. #ifndef arch_irq_stat_cpu
  14. #define arch_irq_stat_cpu(cpu) 0
  15. #endif
  16. #ifndef arch_irq_stat
  17. #define arch_irq_stat() 0
  18. #endif
  19. #ifndef arch_idle_time
  20. #define arch_idle_time(cpu) 0
  21. #endif
  22. static int show_stat(struct seq_file *p, void *v)
  23. {
  24. int i, j;
  25. unsigned long jif;
  26. cputime64_t user, nice, system, idle, iowait, irq, softirq, steal;
  27. cputime64_t guest, guest_nice;
  28. u64 sum = 0;
  29. u64 sum_softirq = 0;
  30. unsigned int per_softirq_sums[NR_SOFTIRQS] = {0};
  31. struct timespec boottime;
  32. unsigned int per_irq_sum;
  33. user = nice = system = idle = iowait =
  34. irq = softirq = steal = cputime64_zero;
  35. guest = guest_nice = cputime64_zero;
  36. getboottime(&boottime);
  37. jif = boottime.tv_sec;
  38. for_each_possible_cpu(i) {
  39. user = cputime64_add(user, kstat_cpu(i).cpustat.user);
  40. nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice);
  41. system = cputime64_add(system, kstat_cpu(i).cpustat.system);
  42. idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle);
  43. idle = cputime64_add(idle, arch_idle_time(i));
  44. iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait);
  45. irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq);
  46. softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq);
  47. steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal);
  48. guest = cputime64_add(guest, kstat_cpu(i).cpustat.guest);
  49. guest_nice = cputime64_add(guest_nice,
  50. kstat_cpu(i).cpustat.guest_nice);
  51. for_each_irq_nr(j) {
  52. sum += kstat_irqs_cpu(j, i);
  53. }
  54. sum += arch_irq_stat_cpu(i);
  55. for (j = 0; j < NR_SOFTIRQS; j++) {
  56. unsigned int softirq_stat = kstat_softirqs_cpu(j, i);
  57. per_softirq_sums[j] += softirq_stat;
  58. sum_softirq += softirq_stat;
  59. }
  60. }
  61. sum += arch_irq_stat();
  62. seq_printf(p, "cpu %llu %llu %llu %llu %llu %llu %llu %llu %llu "
  63. "%llu\n",
  64. (unsigned long long)cputime64_to_clock_t(user),
  65. (unsigned long long)cputime64_to_clock_t(nice),
  66. (unsigned long long)cputime64_to_clock_t(system),
  67. (unsigned long long)cputime64_to_clock_t(idle),
  68. (unsigned long long)cputime64_to_clock_t(iowait),
  69. (unsigned long long)cputime64_to_clock_t(irq),
  70. (unsigned long long)cputime64_to_clock_t(softirq),
  71. (unsigned long long)cputime64_to_clock_t(steal),
  72. (unsigned long long)cputime64_to_clock_t(guest),
  73. (unsigned long long)cputime64_to_clock_t(guest_nice));
  74. for_each_online_cpu(i) {
  75. /* Copy values here to work around gcc-2.95.3, gcc-2.96 */
  76. user = kstat_cpu(i).cpustat.user;
  77. nice = kstat_cpu(i).cpustat.nice;
  78. system = kstat_cpu(i).cpustat.system;
  79. idle = kstat_cpu(i).cpustat.idle;
  80. idle = cputime64_add(idle, arch_idle_time(i));
  81. iowait = kstat_cpu(i).cpustat.iowait;
  82. irq = kstat_cpu(i).cpustat.irq;
  83. softirq = kstat_cpu(i).cpustat.softirq;
  84. steal = kstat_cpu(i).cpustat.steal;
  85. guest = kstat_cpu(i).cpustat.guest;
  86. guest_nice = kstat_cpu(i).cpustat.guest_nice;
  87. seq_printf(p,
  88. "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu %llu "
  89. "%llu\n",
  90. i,
  91. (unsigned long long)cputime64_to_clock_t(user),
  92. (unsigned long long)cputime64_to_clock_t(nice),
  93. (unsigned long long)cputime64_to_clock_t(system),
  94. (unsigned long long)cputime64_to_clock_t(idle),
  95. (unsigned long long)cputime64_to_clock_t(iowait),
  96. (unsigned long long)cputime64_to_clock_t(irq),
  97. (unsigned long long)cputime64_to_clock_t(softirq),
  98. (unsigned long long)cputime64_to_clock_t(steal),
  99. (unsigned long long)cputime64_to_clock_t(guest),
  100. (unsigned long long)cputime64_to_clock_t(guest_nice));
  101. }
  102. seq_printf(p, "intr %llu", (unsigned long long)sum);
  103. /* sum again ? it could be updated? */
  104. for_each_irq_nr(j) {
  105. per_irq_sum = 0;
  106. for_each_possible_cpu(i)
  107. per_irq_sum += kstat_irqs_cpu(j, i);
  108. seq_printf(p, " %u", per_irq_sum);
  109. }
  110. seq_printf(p,
  111. "\nctxt %llu\n"
  112. "btime %lu\n"
  113. "processes %lu\n"
  114. "procs_running %lu\n"
  115. "procs_blocked %lu\n",
  116. nr_context_switches(),
  117. (unsigned long)jif,
  118. total_forks,
  119. nr_running(),
  120. nr_iowait());
  121. seq_printf(p, "softirq %llu", (unsigned long long)sum_softirq);
  122. for (i = 0; i < NR_SOFTIRQS; i++)
  123. seq_printf(p, " %u", per_softirq_sums[i]);
  124. seq_printf(p, "\n");
  125. return 0;
  126. }
  127. static int stat_open(struct inode *inode, struct file *file)
  128. {
  129. unsigned size = 4096 * (1 + num_possible_cpus() / 32);
  130. char *buf;
  131. struct seq_file *m;
  132. int res;
  133. /* don't ask for more than the kmalloc() max size, currently 128 KB */
  134. if (size > 128 * 1024)
  135. size = 128 * 1024;
  136. buf = kmalloc(size, GFP_KERNEL);
  137. if (!buf)
  138. return -ENOMEM;
  139. res = single_open(file, show_stat, NULL);
  140. if (!res) {
  141. m = file->private_data;
  142. m->buf = buf;
  143. m->size = size;
  144. } else
  145. kfree(buf);
  146. return res;
  147. }
  148. static const struct file_operations proc_stat_operations = {
  149. .open = stat_open,
  150. .read = seq_read,
  151. .llseek = seq_lseek,
  152. .release = single_release,
  153. };
  154. static int __init proc_stat_init(void)
  155. {
  156. proc_create("stat", 0, NULL, &proc_stat_operations);
  157. return 0;
  158. }
  159. module_init(proc_stat_init);