From 212720860bd86662659b9c1619bf35a301ce3fc4 Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Wed, 4 Sep 2024 15:06:19 +0800 Subject: [PATCH] docs: iowait --- ...5\217\212\347\233\221\346\216\247\346\226\271\346\263\225.md" | 1 + 1 file changed, 1 insertion(+) diff --git "a/linux/Linux \346\200\247\350\203\275\347\233\221\346\216\247\344\270\216\346\225\205\351\232\234\346\216\222\346\237\245\357\274\232\344\270\273\350\246\201\346\200\247\350\203\275\346\214\207\346\240\207\350\257\264\346\230\216\345\217\212\347\233\221\346\216\247\346\226\271\346\263\225.md" "b/linux/Linux \346\200\247\350\203\275\347\233\221\346\216\247\344\270\216\346\225\205\351\232\234\346\216\222\346\237\245\357\274\232\344\270\273\350\246\201\346\200\247\350\203\275\346\214\207\346\240\207\350\257\264\346\230\216\345\217\212\347\233\221\346\216\247\346\226\271\346\263\225.md" index c2b01b3f..8c0ea2a6 100644 --- "a/linux/Linux \346\200\247\350\203\275\347\233\221\346\216\247\344\270\216\346\225\205\351\232\234\346\216\222\346\237\245\357\274\232\344\270\273\350\246\201\346\200\247\350\203\275\346\214\207\346\240\207\350\257\264\346\230\216\345\217\212\347\233\221\346\216\247\346\226\271\346\263\225.md" +++ "b/linux/Linux \346\200\247\350\203\275\347\233\221\346\216\247\344\270\216\346\225\205\351\232\234\346\216\222\346\237\245\357\274\232\344\270\273\350\246\201\346\200\247\350\203\275\346\214\207\346\240\207\350\257\264\346\230\216\345\217\212\347\233\221\346\216\247\346\226\271\346\263\225.md" @@ -91,6 +91,7 @@ CPU 使用率即 CPU 运行在非空闲状态的时间占比,它反应了 CPU 瓶颈,需要用 iostat 等命令做进一步分析。** - iowait 只考虑 Synchronous File IO,It does NOT count time spent waiting for IPC objects such as sockets, pipes, ttys, select(), poll(), sleep(), pause() etc. + - [iowait 的含义](https://www.kawabangga.com/posts/5903) - `hi(hardirq)`:表示 CPU 处理硬中断所花费的时间。硬中断是由外设硬件(如键盘控制器、硬件传感器等)发 出的,需要有中断控制器参与,特点是快速执行。 - `si(softirq)`:表示 CPU 处理软中断所花费的时间。软中断是由软件程序(如网络收发、定时调度等)发出的