我可以使用msleep()函數在內核空間中休眠指定的時間嗎?如果是這樣,我需要包含哪些頭文件? #include <linux/time.h>
似乎不是正確的。爲此目的可能有更好的功能嗎?如何入睡Linux內核?
15
A
回答
24
我需要包含<linux/delay.h>
以在內核空間中使用msleep。
4
Linux內核文件
Documentation/timers/timers-howto.txt下的Linux內核文件具有的主要方法一個很好的破敗:
Inserting Delays
----------------
The first, and most important, question you need to ask is "Is my
code in an atomic context?" This should be followed closely by "Does
it really need to delay in atomic context?" If so...
ATOMIC CONTEXT:
You must use the *delay family of functions. These
functions use the jiffie estimation of clock speed
and will busy wait for enough loop cycles to achieve
the desired delay:
ndelay(unsigned long nsecs)
udelay(unsigned long usecs)
mdelay(unsigned long msecs)
udelay is the generally preferred API; ndelay-level
precision may not actually exist on many non-PC devices.
mdelay is macro wrapper around udelay, to account for
possible overflow when passing large arguments to udelay.
In general, use of mdelay is discouraged and code should
be refactored to allow for the use of msleep.
NON-ATOMIC CONTEXT:
You should use the *sleep[_range] family of functions.
There are a few more options here, while any of them may
work correctly, using the "right" sleep function will
help the scheduler, power management, and just make your
driver better :)
-- Backed by busy-wait loop:
udelay(unsigned long usecs)
-- Backed by hrtimers:
usleep_range(unsigned long min, unsigned long max)
-- Backed by jiffies/legacy_timers
msleep(unsigned long msecs)
msleep_interruptible(unsigned long msecs)
Unlike the *delay family, the underlying mechanism
driving each of these calls varies, thus there are
quirks you should be aware of.
SLEEPING FOR "A FEW" USECS (< ~10us?):
* Use udelay
- Why not usleep?
On slower systems, (embedded, OR perhaps a speed-
stepped PC!) the overhead of setting up the hrtimers
for usleep *may* not be worth it. Such an evaluation
will obviously depend on your specific situation, but
it is something to be aware of.
SLEEPING FOR ~USECS OR SMALL MSECS (10us - 20ms):
* Use usleep_range
- Why not msleep for (1ms - 20ms)?
Explained originally here:
http://lkml.org/lkml/2007/8/3/250
msleep(1~20) may not do what the caller intends, and
will often sleep longer (~20 ms actual sleep for any
value given in the 1~20ms range). In many cases this
is not the desired behavior.
- Why is there no "usleep"/What is a good range?
Since usleep_range is built on top of hrtimers, the
wakeup will be very precise (ish), thus a simple
usleep function would likely introduce a large number
of undesired interrupts.
With the introduction of a range, the scheduler is
free to coalesce your wakeup with any other wakeup
that may have happened for other reasons, or at the
worst case, fire an interrupt for your upper bound.
The larger a range you supply, the greater a chance
that you will not trigger an interrupt; this should
be balanced with what is an acceptable upper bound on
delay/performance for your specific code path. Exact
tolerances here are very situation specific, thus it
is left to the caller to determine a reasonable range.
SLEEPING FOR LARGER MSECS (10ms+)
* Use msleep or possibly msleep_interruptible
- What's the difference?
msleep sets the current task to TASK_UNINTERRUPTIBLE
whereas msleep_interruptible sets the current task to
TASK_INTERRUPTIBLE before scheduling the sleep. In
short, the difference is whether the sleep can be ended
early by a signal. In general, just use msleep unless
you know you have a need for the interrupt
從這個真棒答案改編:https://stackoverflow.com/a/39921020/895245
下一頁看看在文檔中對源代碼中每個函數的評論。例如: - usleep_range
:
/**
* usleep_range - Sleep for an approximate time
* @min: Minimum time in usecs to sleep
* @max: Maximum time in usecs to sleep
*
* In non-atomic context where the exact wakeup time is flexible, use
* usleep_range() instead of udelay(). The sleep improves responsiveness
* by avoiding the CPU-hogging busy-wait of udelay(), and the range reduces
* power usage by allowing hrtimers to take advantage of an already-
* scheduled interrupt instead of scheduling a new one just for this sleep.
*/
void __sched usleep_range(unsigned long min, unsigned long max)
LDD3 7.3. Delaying Execution 是另一個必須具備的資源。
最小的可運行實例
最後寫自己最小的測試,以嘗試出來!
usleep_range
由我- http://www.zarb.org/~trem/kernel/wait2s/包含幾個(可能是老了嗎?)的例子
相關問題
- 1. Linux內核如何實現重入?
- 2. 如何睡眠()從內核初始化?
- 3. 如何修補Linux內核?
- 4. 如何製作Linux內核
- 5. Linux內核add_timer
- 6. Linux:如何殺死睡眠
- 7. Linux內核多核問題
- 8. 如何在內核模塊中打印linux內核版本號
- 9. Linux /內核:如何選擇Videobuf2框架作爲內核模塊?
- 10. Linux是否放入所有內核的內核?
- 11. 如何在Linux內核中使用RSA
- 12. 如何在編譯Linux內核
- 13. 如何轉換__u32在Linux內核
- 14. 如何在Buildroot中配置Linux內核?
- 15. 如何測試Linux內核版本
- 16. 如何在Linux內核中使用tpm
- 17. 如何編寫Linux內核模塊?
- 18. 如何在Linux內核中計算BogoMips?
- 19. 如何編譯Linux內核模塊
- 20. 如何在linux內核中使用scanf?
- 21. 如何調試linux內核模塊?
- 22. 如何解碼Linux內核符號
- 23. 如何從Linux內核克隆模塊?
- 24. 如何縮小linux內核的大小?
- 25. 如何在Linux內核模塊
- 26. Linux內核如何避免死鎖?
- 27. 哪裏linux內核保持寫入管
- 28. 寫入磁盤時,Linux splice()+內核AIO
- 29. Linux內核Procfs多次讀取/寫入
- 30. Linux內核寫入()和讀取()函數
我沒有與Linux系統調用的工作廣泛而這將是奇怪的。 'msleep'看起來像打算由用戶空間代碼調用。我的理解是,Linux內核不會休眠。任何時候在用戶空間中沒有任何事情可以切換到「空閒」進程,並且它在用戶空間_中旋轉。 實際上它看起來像'msleep'甚至不是現有的系統調用。你想要做什麼? – rliu
@rliu由於以下答案表明您的評論不正確,因此您可以考慮將其刪除。 –