diff options
author | Peter Marko <peter.marko@siemens.com> | 2025-08-07 17:46:03 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-08-19 11:35:52 +0100 |
commit | 2f808c92cc8d09a42e66f522c6c3f798cabf52d3 (patch) | |
tree | ade7dca008da6ad31ce4a7ab082721c1390abdc4 /bitbake | |
parent | 576d8e4b40ae35bb016035c8ded8351e6d319855 (diff) | |
download | poky-2f808c92cc8d09a42e66f522c6c3f798cabf52d3.tar.gz |
bitbake: doc/bitbake-user-manual-ref-variables: update BB_TASK_IONICE_LEVEL
Provided example does not work due to two problems.
CFQ scheduler was removed in kernel 4.20 (per [1])
Replace it with BFQ scheduler.
Also fix typo "queu" -> "queue".
[1] https://en.wikipedia.org/wiki/I/O_scheduling
(Bitbake rev: 6716853e35ebc2e1523210a83b483cdacb600295)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst index 1545c914cc..810f886897 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst | |||
@@ -770,11 +770,11 @@ overview of their function and contents. | |||
770 | .. note:: | 770 | .. note:: |
771 | 771 | ||
772 | In order for your I/O priority settings to take effect, you need the | 772 | In order for your I/O priority settings to take effect, you need the |
773 | Completely Fair Queuing (CFQ) Scheduler selected for the backing block | 773 | Budget Fair Queuing (BFQ) Scheduler selected for the backing block |
774 | device. To select the scheduler, use the following command form where | 774 | device. To select the scheduler, use the following command form where |
775 | device is the device (e.g. sda, sdb, and so forth):: | 775 | device is the device (e.g. sda, sdb, and so forth):: |
776 | 776 | ||
777 | $ sudo sh -c "echo cfq > /sys/block/device/queu/scheduler" | 777 | $ sudo sh -c "echo bfq > /sys/block/device/queue/scheduler" |
778 | 778 | ||
779 | :term:`BB_TASK_NICE_LEVEL` | 779 | :term:`BB_TASK_NICE_LEVEL` |
780 | Allows specific tasks to change their priority (i.e. nice level). | 780 | Allows specific tasks to change their priority (i.e. nice level). |