* Return the total system load. */
| 2768 | * Return the total system load. |
| 2769 | */ |
| 2770 | int |
| 2771 | sched_load(void) |
| 2772 | { |
| 2773 | #ifdef SMP |
| 2774 | int total; |
| 2775 | int i; |
| 2776 | |
| 2777 | total = 0; |
| 2778 | CPU_FOREACH(i) |
| 2779 | total += TDQ_CPU(i)->tdq_sysload; |
| 2780 | return (total); |
| 2781 | #else |
| 2782 | return (TDQ_SELF()->tdq_sysload); |
| 2783 | #endif |
| 2784 | } |
| 2785 | |
| 2786 | int |
| 2787 | sched_sizeof_proc(void) |