1__ROUND_JIFFIES_UP(9) Driver Basics __ROUND_JIFFIES_UP(9)
2
3
4
6 __round_jiffies_up - function to round jiffies up to a full second
7
9 unsigned long __round_jiffies_up(unsigned long j, int cpu);
10
12 j
13 the time in (absolute) jiffies that should be rounded
14
15 cpu
16 the processor number on which the timeout will happen
17
19 This is the same as __round_jiffies except that it will never round
20 down. This is useful for timeouts for which the exact time of firing
21 does not matter too much, as long as they don't fire too early.
22
24Kernel Hackers Manual 3.10 June 2019 __ROUND_JIFFIES_UP(9)