当前位置:   article > 正文

带你走进linux 内核 定时器(timer)实现机制_linux timer

linux timer

1 相关数据结构

1.1 timer_list

定时器层是基于tick层(高精度定时器)之上的,是根据系统jiffies来触发的,精度相对比较低。利用定时器,我们可以设定在未来的某一时刻,触发一个特定的事件。经常,也会把这种低精度定时器称作时间轮(Timer Wheel)。在内核中,一个定时器是使用 timer_list 结构体来表示的:

  1. struct timer_list {
  2. struct hlist_node entry;
  3. unsigned long expires;
  4. void (*function)(struct timer_list *);
  5. u32 flags;
  6. ......
  7. };
  • entry:所有的定时器都会根据到期的时间被分配到一组链表中的一个中,该字段是链表的节点成员。
  • expires:字段指出了该定时器的到期时刻,也就是期望定时器到期时刻的jiffies计数值。这是一个绝对值,不是距离当前时刻再过多少jiffies。
  • function:是一个回调函数指针,定时器到期时,系统将会调用该函数,用于响应该定时器的到期事件。
  • flags:看名字应该是标志位,其定义如下:
  1. #define TIMER_CPUMASK 0x0003FFFF
  2. #define TIMER_MIGRATING 0x00040000
  3. #define TIMER_BASEMASK (TIMER_CPUMASK | TIMER_MIGRATING)
  4. #define TIMER_DEFERRABLE 0x00080000
  5. #define TIMER_PINNED 0x00100000
  6. #define TIMER_IRQSAFE 0x00200000
  7. #define TIMER_ARRAYSHIFT 22
  8. #define TIMER_ARRAYMASK 0xFFC00000

可以看到,其实并不是标志位那么简单。其最高 10 位记录了定时器放置到桶的编号,后面会提到一共最多只有576个桶,所以10位足够了。而最低的18位指示了该定时器绑定到了哪个CPU上,注意是一个数值,而不是位图。夹在中间的一些位到真的是一些标志位。TIMER_MIGRATING表示定时器正在从一个CPU迁移到另外一个CPU。TIMER_DEFERRABLE表示该定时器是可延迟的。TIMER_PINNED表示定时器已经绑死了当前的CPU,无论如何都不会迁移到别的CPU上。TIMER_IRQSAFE表示定时器是中断安全的,使用的时候只需要加锁,不需要关中断。

1.2 timer_base

系统中可能同时存在成千上万个定时器,如果处理不好效率会非常低下。Linux目前会将定时器按照绑定的CPU和种类(普通定时器还是可延迟定时器两种)进行区分,由timer_base结构体组织起来:

  1. struct timer_base {
  2. raw_spinlock_t lock;
  3. struct timer_list *running_timer;
  4. ......
  5. unsigned long clk;
  6. unsigned long next_expiry;
  7. unsigned int cpu;
  8. bool is_idle;
  9. bool must_forward_clk;
  10. DECLARE_BITMAP(pending_map, WHEEL_SIZE);
  11. struct hlist_head vectors[WHEEL_SIZE];
  12. } ____cacheline_aligned;
  • lock:保护该timer_base结构体的自旋锁,这个自旋锁还同时保护包含在vectors链表数组中的所有定时器。
  • running_timer:该字段指向当前CPU正在处理的定时器所对应的timer_list结构。
  • clk:当前定时器所经过的 jiffies,用来判断包含的定时器是否已经到期或超时。
  • next_expiry:该字段指向该CPU下一个即将到期的定时器。最早 (距离超时最近的 timer) 的超时时间
  • cpu:所属的CPU号。
  • is_idle:指示是否处于空闲模式下,在NO_HZ模式下会用到。
  • must_forward_clk:指示是否需要更新当前clk的值,在NO_HZ模式下会用到。
  • pending_map:一个比特位图,时间轮中有几个桶就有几个比特位。如果某个桶内有定时器存在,那么就将相应的比特位置1。
  • vectors:时间轮所有桶的数组,每一个元素是一个链表。

每个CPU都含有一到两个timer_base结构体变量:

static DEFINE_PER_CPU(struct timer_base, timer_bases[NR_BASES]);

其中NR_BASES定义如下:

  1. #ifdef CONFIG_NO_HZ_COMMON
  2. # define NR_BASES 2
  3. # define BASE_STD 0
  4. # define BASE_DEF 1
  5. #else
  6. # define NR_BASES 1
  7. # define BASE_STD 0
  8. # define BASE_DEF 0
  9. #endif

所以如果内核编译选项包含 CONFIG_NO_HZ_COMMON,则每个CPU有两个timer_base结构体,下标分别是BASE_STD(Standard)和BASE_DEF(Deferrable)。如果内核编译选项没有包含CONFIG_NO_HZ_COMMON,那么每个CPU只有一个timer_base结构体,BASE_STD和BASE_DEF是同一个。

为什么支持NO_HZ模式要包含两个timer_base呢?这其实和NO_HZ的工作模式有关。如果NO_HZ模式,那么当CPU处于空闲状态时,定时器层是收不到也不需要收到任何Tick的,这样可以节省电力。这时候底层的Tick层(准确说是Tick Sched)不会按照预定好的HZ频率,每次到期后都去不停的设置底层的定时事件设备(启动NO_HZ模式的前提是已经切换到了高精度模式下而高精度模式又要求定时事件设备是单次触发模式的)。但是,如果定时器到期了不就错过去了嘛。所以,在停止Tick之前,Tick层会从定时器层获得最近的下一次定时器到期的时间(通过调用get_next_timer_interrupt函数),然后对下面的定时事件设备进行编程,让其在这个最近的到期时刻到期,触发中断。但是,系统中有很多定时器,它们对到期的要求没有那么严格,迟一点到期也不是很要紧。对于这类定时器,在停止Tick之前,就没必要管他们到低什么时候到期。具体点说,就是Tick层在向定时器层询问下一次最近到期时间时,定时器层更本就不会查找这些可延迟的定时器。对于前面说的第一种定时器存放在BASE_STD指明的那个timer_base结构体里面,而第二种定时器存放在BASE_DEF指明的那个timer_base结构体里面。如果在编译内核的时候没有包含CONFIG_NO_HZ_COMMON,也就是内核不支持NO_HZ模式,Tick从来就没有停止过,当然就不存在前面说的问题,也就没必要分两个了。

如果在内核配置文件里定义Tick周期是100的话,一共有8个级别(编号从0到7);而如果大于100的话,则一共会包含9个级别(编号从0到8)。

  1. #if HZ > 100
  2. # define LVL_DEPTH 9
  3. # else
  4. # define LVL_DEPTH 8
  5. #endif

一个级(Level)里面共有64(LVL_SIZE)个桶(Bucket),用6个比特表示:

  1. #define LVL_BITS 6
  2. #define LVL_SIZE (1UL << LVL_BITS)
  3. #define LVL_MASK (LVL_SIZE - 1)
  4. #define LVL_OFFS(n) ((n) * LVL_SIZE)

宏LVL_OFFS定义了每一级桶下表的起始编号。所以,对于每个timer_base一共需要的桶的数目定义为:

#define WHEEL_SIZE	(LVL_SIZE * LVL_DEPTH)

还有一个概念叫做粒度(Granularity),表示系统至少要过多少个Tick才会检查某一个级里面的所有定时器。每一级的64个桶的检查粒度是一样的,而不同级内的桶之间检查的粒度不同,级数越小,检查粒度越细。每一级粒度的Tick数由宏定义LVL_CLK_DIV的值决定:

  1. #define LVL_CLK_SHIFT 3
  2. #define LVL_CLK_DIV (1UL << LVL_CLK_SHIFT)
  3. #define LVL_CLK_MASK (LVL_CLK_DIV - 1)
  4. #define LVL_SHIFT(n) ((n) * LVL_CLK_SHIFT)
  5. #define LVL_GRAN(n) (1UL << LVL_SHIFT(n))

具体的计算公式为:

也就是第0级内64个桶中存放的所有定时器每个Tick都会检查,第1级内64个桶中存放的所有定时器每8个Tick才会检查,第2级内64个桶中存放的所有定时器每64个Tick才会检查,以此类推。

对应每一个级,都有一个范围,其起始的Tick值由LVL_START定义:

#define LVL_START(n)	((LVL_SIZE - 1) << (((n) - 1) * LVL_CLK_SHIFT))

这里 n 从 1 开始,取值范围 1 到 7 或 1到8 。不过这个定义貌似有问题,应该是:

#define LVL_START(n)	((LVL_SIZE) << (((n) - 1) * LVL_CLK_SHIFT))

下面具体举个例子,内核配置选项将HZ配置位250,那么就一共需要9个级别,每个级别里面有64个桶,所以一共需要576个桶。每个级别的情况如下表:

因为配置的是250Hz,所以每次Tick之间经过4毫秒。可以看出来,定时到期时间距离现在越久,那粒度就越差,误差也越大。

具体将定时器放到哪一个级下面是由到期时间距离现在时间的差值,也就是距离现在还要过多长时间决定的;而要放到哪个桶里面,则单纯是由到期时间决定的。

所以,综上所述,定时器层的数据结构如下图所示:

【文章福利】小编推荐自己的Linux内核技术交流群: 【977878001】整理一些个人觉得比较好得学习书籍、视频资料共享在群文件里面,有需要的可以自行添加哦!!!前100进群领取,额外赠送一份 价值699的内核资料包(含视频教程、电子书、实战项目及代码)

内核资料直通车:Linux内核源码技术学习路线+视频教程代码资料

学习直通车:Linux内核源码/内存调优/文件系统/进程管理/设备驱动/网络协议栈

2 定时器工作过程

2.1 桶编号计算

calc_wheel_index 函数根据到期 jiffies 和已经过 jiffies 两个参数,计算要将定时器放置到哪个桶下:

  1. static int calc_wheel_index(unsigned long expires, unsigned long clk)
  2. {
  3. /* 到期jiffies和已经过jiffies的差 */
  4. unsigned long delta = expires - clk;
  5. unsigned int idx;
  6. /* 按照差所处的范围来决定把定时器放到哪一级 */
  7. if (delta < LVL_START(1)) {
  8. idx = calc_index(expires, 0);
  9. } else if (delta < LVL_START(2)) {
  10. idx = calc_index(expires, 1);
  11. } else if (delta < LVL_START(3)) {
  12. idx = calc_index(expires, 2);
  13. } else if (delta < LVL_START(4)) {
  14. idx = calc_index(expires, 3);
  15. } else if (delta < LVL_START(5)) {
  16. idx = calc_index(expires, 4);
  17. } else if (delta < LVL_START(6)) {
  18. idx = calc_index(expires, 5);
  19. } else if (delta < LVL_START(7)) {
  20. idx = calc_index(expires, 6);
  21. } else if (LVL_DEPTH > 8 && delta < LVL_START(8)) {
  22. idx = calc_index(expires, 7);
  23. } else if ((long) delta < 0) {
  24. idx = clk & LVL_MASK;
  25. } else {
  26. /* 如果差值过大强制限定过期时间到WHEEL_TIMEOUT_MAX */
  27. if (expires >= WHEEL_TIMEOUT_CUTOFF)
  28. expires = WHEEL_TIMEOUT_MAX;
  29. idx = calc_index(expires, LVL_DEPTH - 1);
  30. }
  31. return idx;
  32. }

可以看到,将定时器放到时间轮的哪一级是由距离现在还要过多长时间(准确的说是过多少jiffies)才到期决定的。该函数首先计算到期 jiffies 和当前已经过 jiffies 的差值。然后,根据差值的范围,决定放置到哪一个级别的桶内。如果差值为负代表其实定时器已经过期了,就把它放到最低级别(0)内,反正再过一个Tick就能检查到了。如果差值过大,强制限定到期时间到WHEEL_TIMEOUT_MAX,并将其放置到最后一级。定好级后,最后,调用calc_index函数,计算具体放置到的桶下标。

  1. static inline unsigned calc_index(unsigned expires, unsigned lvl)
  2. {
  3. expires = (expires + LVL_GRAN(lvl)) >> LVL_SHIFT(lvl);
  4. return LVL_OFFS(lvl) + (expires & LVL_MASK);
  5. }

通过 LVL_OFFS 宏计算出对应该级的桶起始下标,每一级下面有 64 个桶,具体放到哪个桶下面是根据级号取到期时间的特定6位决定的。可以看到,最终的结果还要加1,因为定时器不会在到期时间之前被触发,所以放到下一个。在某个级之内,每个桶之间的的定时器到期时间相差一个该级的粒度。

2.2 通过定时器找到对应的timer_base结构体

定时器层一般调用 lock_timer_base 函数,找到定时器所对应的 timer_base 结构体,同时获得timer_base 结构体内的自旋锁并关闭中断:

  1. static struct timer_base *lock_timer_base(struct timer_list *timer,
  2. unsigned long *flags)
  3. __acquires(timer->base->lock)
  4. {
  5. for (;;) {
  6. struct timer_base *base;
  7. u32 tf;
  8. /* 读取定时器的标志位 */
  9. tf = READ_ONCE(timer->flags);
  10. /* 如果定时器没有正在迁移中 */
  11. if (!(tf & TIMER_MIGRATING)) {
  12. /* 通过标志位中的CPU号来获得timer_base结构体 */
  13. base = get_timer_base(tf);
  14. raw_spin_lock_irqsave(&base->lock, *flags);
  15. /* 在这期间定时器的标志位是否发生了变化 */
  16. if (timer->flags == tf)
  17. return base;
  18. raw_spin_unlock_irqrestore(&base->lock, *flags);
  19. }
  20. cpu_relax();
  21. }
  22. }

该函数会获得定时器内的标志字段,判断其是不是正在迁移的过程中,如果是的话就像自旋锁一样循环等待其完成。如果没有在迁移,则调用 get_timer_base 函数,通过标志位中的CPU号来获得timer_base 结构体。在获得了自旋锁并关闭中断之后,还要判断一下定时器当前的标志位是否和之前读取的相同,如果不同则释放锁,再走一次循环,否则直接返回找到的timer_base结构体。注意,lock_timer_base 函数返回时,是已经持有了 timer_base 内的自旋锁,并且本地中断是关闭的。我们接着来看看get_timer_base函数:

  1. static inline struct timer_base *get_timer_base(u32 tflags)
  2. {
  3. return get_timer_cpu_base(tflags, tflags & TIMER_CPUMASK);
  4. }

因为定时器的flags字段包含了CPU号的信息,所以直接取出来,然后调用get_timer_cpu_base函数:

  1. static inline struct timer_base *get_timer_cpu_base(u32 tflags, u32 cpu)
  2. {
  3. /* 获得BASE_STD编号的timer_base结构体 */
  4. struct timer_base *base = per_cpu_ptr(&timer_bases[BASE_STD], cpu);
  5. /* 如果设置了CONFIG_NO_HZ_COMMON内核编译选项并且定时器是可延迟的话 */
  6. if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && (tflags & TIMER_DEFERRABLE))
  7. /* 获得BASE_DEF编号的timer_base结构体 */
  8. base = per_cpu_ptr(&timer_bases[BASE_DEF], cpu);
  9. return base;
  10. }

这个函数就很简单了,直接通过 CPU 号找到对应的 Per CPU 变量 timer_bases。前面提到了,如果编译选项中包含 NO_HZ 的支持,则 timer_bases 其实包含了两个 timer_base 结构体,一个给标准的定时器,一个给可延迟的定时器。所以,该函数会判断定时器是否是可延迟的,如果不是或者不支持 NO_HZ 则返回 BASE_STD 编号的 timer_base 结构体;如果定时器是可延迟的,并且内核支持 NO_HZ 模式,则需要返回 BASE_DEF 编号的 timer_base 结构体。

2.3 定时器的删除

定时器的删除是通过调用函数del_timer实现的:

  1. int del_timer(struct timer_list *timer)
  2. {
  3. struct timer_base *base;
  4. unsigned long flags;
  5. int ret = 0;
  6. debug_assert_init(timer);
  7. /* 判断定时器是否已经被添加进某个链表中了 */
  8. if (timer_pending(timer)) {
  9. /* 找到定时器对应的timer_base结构体并对其上锁 */
  10. base = lock_timer_base(timer, &flags);
  11. /* 从链表中解除定时器 */
  12. ret = detach_if_pending(timer, base, true);
  13. raw_spin_unlock_irqrestore(&base->lock, flags);
  14. }
  15. return ret;
  16. }
  17. EXPORT_SYMBOL(del_timer);

先调用 timer_pending 函数判断定时器是否还存在于某个链表中,如果已经不在任何链表中了,证明已经被删除了,直接返回。

  1. static inline int timer_pending(const struct timer_list * timer)
  2. {
  3. return timer->entry.pprev != NULL;
  4. }

这个函数就是检查定时器内的链表元素的向前指针是否是空指针,也就意味着该定时器没有被添加进任何链表中。

如果还存在于某个链表中,则继续执行删除的动作。先通过定时器找到对应的timer_base结构体并上锁,然后调用detach_if_pending函数将定时器从链表中解除,最后释放锁并返回。

  1. static int detach_if_pending(struct timer_list *timer, struct timer_base *base,
  2. bool clear_pending)
  3. {
  4. /* 获得存放定时器的桶编号 */
  5. unsigned idx = timer_get_idx(timer);
  6. /* 判断定时器是否已经被添加进某个链表中了 */
  7. if (!timer_pending(timer))
  8. return 0;
  9. /* 如果对应的桶中只有当前这一个定时器则清除pending_map对应位 */
  10. if (hlist_is_singular_node(&timer->entry, base->vectors + idx))
  11. __clear_bit(idx, base->pending_map);
  12. /* 从链表中解除定时器 */
  13. detach_timer(timer, clear_pending);
  14. return 1;
  15. }

该函数先调用 timer_get_idx 函数从定时器的 flags 字段中抽取出存放定时器的桶编号((timer->flags & TIMER_ARRAYMASK) >> TIMER_ARRAYSHIFT),接着再次判断定时器是否已经被解除,如果仍然没有还需要判断当前需要解除的定时器是否是对应桶内的最后一个定时器,如果是的话要将对应 timer_base 结构体内的 pending_map 变量中的对应标志位清0。最后调用detach_timer 函数正式解除定时器:

  1. static inline void detach_timer(struct timer_list *timer, bool clear_pending)
  2. {
  3. struct hlist_node *entry = &timer->entry;
  4. debug_deactivate(timer);
  5. /* 将定时器从链表中删除 */
  6. __hlist_del(entry);
  7. if (clear_pending)
  8. entry->pprev = NULL;
  9. entry->next = LIST_POISON2;
  10. }

detach_timer 就完全是链表的操作了,想将自己从对应链表中删除,如果设置了 clear_pending 的话,将 entry 的前向指针设置位空(前面说的 timer_pending 函数就是通过这个来判断定时器是否已经添加进某个链表中的),后向指针设置为 LIST_POISON2。

2.4 定时器的添加和修改

要向系统中添加一个定时器,需要调用add_timer函数:

  1. void add_timer(struct timer_list *timer)
  2. {
  3. BUG_ON(timer_pending(timer));
  4. mod_timer(timer, timer->expires);
  5. }

先调用 timer_pending 函数,看要添加的定时器是否已经被添加过了,如果已经添加过了,会报内核错误。接着调用了 mod_timer 函数:

  1. int mod_timer(struct timer_list *timer, unsigned long expires)
  2. {
  3. return __mod_timer(timer, expires, 0);
  4. }
  5. EXPORT_SYMBOL(mod_timer);

mod_timer 函数只是简单封装了一下 __mod_timer 函数,后者是定时器层的核心函数,后面我们会分析。

如果我们要修改一个已经存在的定时器,比如说减小其到期时间,要使用timer_reduce函数:

  1. int timer_reduce(struct timer_list *timer, unsigned long expires)
  2. {
  3. return __mod_timer(timer, expires, MOD_TIMER_REDUCE);
  4. }
  5. EXPORT_SYMBOL(timer_reduce);

其也最终会调用__mod_timer函数。该函数有三个参数,第一个是要添加或修改的定时器;第二个是到期时间,如果是新添加的定时器,就将其设置成定时器自己的到期时间;第三个参数是模式,目前系统中共有两个:

  1. #define MOD_TIMER_PENDING_ONLY 0x01
  2. #define MOD_TIMER_REDUCE 0x02
  • MOD_TIMER_PENDING_ONLY 表示本次修改只针对还存在在系统内的定时器,如果定时器已经被删除了则不会再将其激活。
  • MOD_TIMER_REDUCE 则表示本次修改只会将定时器的到期值减小。

下面我们来重点分析一下 __mod_timer 函数:

  1. static inline int
  2. __mod_timer(struct timer_list *timer, unsigned long expires, unsigned int options)
  3. {
  4. struct timer_base *base, *new_base;
  5. unsigned int idx = UINT_MAX;
  6. unsigned long clk = 0, flags;
  7. int ret = 0;
  8. /* 定时器的回调函数必须不为空 */
  9. BUG_ON(!timer->function);
  10. /* 定时器是否已经被添加进某个链表中 */
  11. if (timer_pending(timer)) {
  12. /* 计算定时器的到期时间和参数到期时间之间的差值 */
  13. long diff = timer->expires - expires;
  14. /* 如果两个差值为0即相同则直接返回成功什么都不用做 */
  15. if (!diff)
  16. return 1;
  17. /* 如果是要减定时器到期时间但是传入的到期时间比定时器当前的到期时间还大则直接返回成功 */
  18. if (options & MOD_TIMER_REDUCE && diff <= 0)
  19. return 1;
  20. /* 找到定时器对应的timer_base结构体并对其上锁 */
  21. base = lock_timer_base(timer, &flags);
  22. /* 试着更新timer_base中的clk数 */
  23. forward_timer_base(base);
  24. /* 如果是要减定时器到期时间但是传入的到期时间比定时器当前的到期时间还大则直接返回成功 */
  25. if (timer_pending(timer) && (options & MOD_TIMER_REDUCE) &&
  26. time_before_eq(timer->expires, expires)) {
  27. ret = 1;
  28. goto out_unlock;
  29. }
  30. clk = base->clk;
  31. /* 计算要放置到的桶下标 */
  32. idx = calc_wheel_index(expires, clk);
  33. /* 如果定时器修改之后还是放在原来的那个桶下 */
  34. if (idx == timer_get_idx(timer)) {
  35. /* 如果选项不是MOD_TIMER_REDUCE则直接修改定时器的到期时间 */
  36. if (!(options & MOD_TIMER_REDUCE))
  37. timer->expires = expires;
  38. /* 如果选项是MOD_TIMER_REDUCE则还要比较新老到期时间再修改 */
  39. else if (time_after(timer->expires, expires))
  40. timer->expires = expires;
  41. ret = 1;
  42. goto out_unlock;
  43. }
  44. } else {
  45. /* 找到定时器对应的timer_base结构体并对其上锁 */
  46. base = lock_timer_base(timer, &flags);
  47. /* 试着更新timer_base中的clk数 */
  48. forward_timer_base(base);
  49. }
  50. /* 将定时器从当前链表中移除 */
  51. ret = detach_if_pending(timer, base, false);
  52. /* 如果定时器不在任何链表中且设置了MOD_TIMER_PENDING_ONLY选项则直接返回 */
  53. if (!ret && (options & MOD_TIMER_PENDING_ONLY))
  54. goto out_unlock;
  55. /* 获得系统指定的最合适的timer_base结构体 */
  56. new_base = get_target_base(base, timer->flags);
  57. /* 如果定时器指定的和系统挑选的timer_base结构体不一直则可能需要迁移 */
  58. if (base != new_base) {
  59. /* 如果定时器不是当前timer_base中正在处理的定时器 */
  60. if (likely(base->running_timer != timer)) {
  61. /* 设置TIMER_MIGRATING标记位 */
  62. timer->flags |= TIMER_MIGRATING;
  63. /* 释放迁移出的timer_base结构体的自旋锁 */
  64. raw_spin_unlock(&base->lock);
  65. base = new_base;
  66. /* 获取迁移进的timer_base结构体的自旋锁 */
  67. raw_spin_lock(&base->lock);
  68. /* 写入新的CPU号并清除TIMER_MIGRATING标记位 */
  69. WRITE_ONCE(timer->flags,
  70. (timer->flags & ~TIMER_BASEMASK) | base->cpu);
  71. /* 试着更新timer_base中的clk数 */
  72. forward_timer_base(base);
  73. }
  74. }
  75. debug_timer_activate(timer);
  76. /* 更新定时器的到期时间 */
  77. timer->expires = expires;
  78. /* 如果桶下标已经计算过了且timer_base的clk没变(也意味着桶下标没变) */
  79. if (idx != UINT_MAX && clk == base->clk) {
  80. /* 将定时器加入对应桶中 */
  81. enqueue_timer(base, timer, idx);
  82. trigger_dyntick_cpu(base, timer);
  83. } else {
  84. /* 重新计算桶下标并添加进去 */
  85. internal_add_timer(base, timer);
  86. }
  87. out_unlock:
  88. /* 释放timer_base结构体的自旋锁并开中断 */
  89. raw_spin_unlock_irqrestore(&base->lock, flags);
  90. return ret;
  91. }

首先,可以看到该函数在获得了定时器对应的 timer_base 结构体后,都需要调用forward_timer_base 函数更新 timer_base 结构体中的clk变量:

  1. static inline void forward_timer_base(struct timer_base *base)
  2. {
  3. #ifdef CONFIG_NO_HZ_COMMON
  4. unsigned long jnow;
  5. /* 必须设置了must_forward_clk */
  6. if (likely(!base->must_forward_clk))
  7. return;
  8. /* 获得当前的jiffies */
  9. jnow = READ_ONCE(jiffies);
  10. base->must_forward_clk = base->is_idle;
  11. /* 如果当前jiffies和clk变量之间的差值小于2证明当前CPU没有进入空闲模式 */
  12. if ((long)(jnow - base->clk) < 2)
  13. return;
  14. if (time_after(base->next_expiry, jnow))
  15. base->clk = jnow;
  16. else
  17. base->clk = base->next_expiry;
  18. #endif
  19. }

forward_timer_base 函数只有在内核在编译时打开 CONFIG_NO_HZ_COMMON 编译选项的时候才有实际的作用。这是因为,如果内核不支持 NO_HZ 模式的话,那 Tick 就不会中断,每次Tick到来时,clk 都会得到更新,就不需要调用 forward_timer_base 函数来补了。相反,在支持 NO_HZ模式时,CPU 如果处于空闲状态,是不会收到任何Tick的,在这段时间内对应CPU的timer_base结构体中的clk就肯定不会得到 更新,因此需要调用该函数来补。补的条件有两个,首先必须设置了must_forward_clk(后面会看到在处理定时期到期时会关闭must_forward_clk),还有就是当前的jiffies和clk中记录的已经经过的jiffies相差大于等于2(小于2基本说明还没进空闲模式)。最后,如果下一个到期时间在现在的jiffies之后,则将clk设置为当前的jiffies;如果当前的jiffies已经超过了下一个到期时间(某些定时器已经过期了),则将clk设置为下一个到期时间,一般对于可延迟定时器会出现这种情况。

每次都要补的目的其实是为了尽量提高定时器的精度,前面已经说过了,到期时间距离clk越近,就会将其放到级别越低的桶里面,检查的Tick间隔就会越小,当然精度越高。如果长期不补clk的值,那即使到期时间只在1个Tick之后,也有可能被放到级别较大的桶内,哪怕是放到级别为1的桶中,都要每8个Tick才会被检查一次,最差情况会延迟7个Tick。

同时,我们还可以看出,一个定时器一旦加入了一个桶里之后,除非到期删除或者主动修改了定时器到期时间,否则就再也不会移动了,不会因为时间的流逝,距离到期时间越近而移动到更低级别的桶里面。

最后,再提一下,在调用 enqueue_timer 函数将定时器放到 timer_base的 某个桶中后,一般还会接着调用 trigger_dyntick_cpu 函数:

  1. static void
  2. trigger_dyntick_cpu(struct timer_base *base, struct timer_list *timer)
  3. {
  4. /* 如果没有切换到NO_HZ模式则直接返回 */
  5. if (!is_timers_nohz_active())
  6. return;
  7. if (timer->flags & TIMER_DEFERRABLE) {
  8. /* 没有打开CONFIG_NO_HZ_FULL时该函数永远返回false */
  9. if (tick_nohz_full_cpu(base->cpu))
  10. wake_up_nohz_cpu(base->cpu);
  11. return;
  12. }
  13. /* 如果timer_base对应的CPU不是空闲的则直接返回 */
  14. if (!base->is_idle)
  15. return;
  16. /* 如果定时器的到期时间晚于timer_base中的到期时间则直接返回 */
  17. if (time_after_eq(timer->expires, base->next_expiry))
  18. return;
  19. /* 将timer_base的到期时间设置为定时器的到期时间 */
  20. base->next_expiry = timer->expires;
  21. /* 唤醒timer_base对应的CPU */
  22. wake_up_nohz_cpu(base->cpu);
  23. }

这个函数主要是解决下面这种情况,如果要将定时器插入一个正处于空闲状态的CPU下的timer_base 的时候,那个CPU的定时事件设备应该是已经被编程到了所有包含的定时器中最近要到期的那个时刻,这时候恰好要插入的定时器的到期时刻比原来最近的到期时刻还要早的话,那这个新被插入的定时器一定会超时,因为在这之前都不会有Tick到来。对于这种情况,只有调用wake_up_nohz_cpu 函数将那个空闲的 CPU 唤醒,让它重新再检查一遍。

2.5 定时器的迁移

前面分析 __mod_timer 函数时已经碰到了定时器迁移的情况,定时器切换发生在定时器指定的CPU上的 timer_base 和系统调用 get_target_base 函数挑选的 timer_base 不一致的情况:

  1. static inline struct timer_base *
  2. get_target_base(struct timer_base *base, unsigned tflags)
  3. {
  4. #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
  5. if (static_branch_likely(&timers_migration_enabled) &&
  6. !(tflags & TIMER_PINNED))
  7. return get_timer_cpu_base(tflags, get_nohz_timer_target());
  8. #endif
  9. return get_timer_this_cpu_base(tflags);
  10. }

如果没有配置 CONFIG_SMP,那么系统中只有一个CPU,也就无处迁移了。而如果内核没有配置CONFIG_NO_HZ_COMMON,则Tick不会中断,只需要返回当前CPU中对应的 timer_base 结构体就行了。timers_migration_enabled 值将在切换到 NO_HZ 模式时变成 True,而退出 NO_HZ 模式时变成False。所以只有在切换到NO_HZ模式下,且定时器没有绑死到某个CPU的情况下,才会选择别的CPU上的timer_base,否则一定是当前CPU上的timer_base。get_nohz_timer_target函数会判断当前的CPU是否处于空闲状态,如果不是空闲状态,那还是返回当前的CPU编号,如果真是空闲的话,会找到最近的一个忙的处理器,并返回其编号。所以,一共应该有两种情况会出现要迁移定时器的行为:

  • 在当前CPU上尝试修改一个没有绑定到当前CPU上的定时器;
  • 当前CPU空闲的时候,修改任何绑定到当前CPU上的定时器。

2.6 tick 到来的处理(时间轮)

当一个Tick到来时,无论是Tick层还是Tick模拟层最终都会调用update_process_times通知定时器层:

  1. void update_process_times(int user_tick)
  2. {
  3. struct task_struct *p = current;
  4. account_process_tick(p, user_tick);
  5. /* 处理当前CPU下的所有定时器 */
  6. run_local_timers();
  7. rcu_sched_clock_irq(user_tick);
  8. #ifdef CONFIG_IRQ_WORK
  9. if (in_irq())
  10. irq_work_tick();
  11. #endif
  12. scheduler_tick();
  13. if (IS_ENABLED(CONFIG_POSIX_TIMERS))
  14. run_posix_cpu_timers();
  15. }

除了一些其它功能外,该函数会调用run_local_timers函数处理当前CPU下的所有定时器:

  1. void run_local_timers(void)
  2. {
  3. /* 获得当前CPU下BASE_STD下标的timer_base结构体 */
  4. struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
  5. /* 通知高精度定时器 */
  6. hrtimer_run_queues();
  7. /* 如果当前jiffies小于timer_base的clk值表明还没有任何定时器到期 */
  8. if (time_before(jiffies, base->clk)) {
  9. if (!IS_ENABLED(CONFIG_NO_HZ_COMMON))
  10. return;
  11. /* 接着查当前CPU下BASE_DEF下标的timer_base结构体 */
  12. base++;
  13. if (time_before(jiffies, base->clk))
  14. return;
  15. }
  16. /* 发起TIMER_SOFTIRQ软中断 */
  17. raise_softirq(TIMER_SOFTIRQ);
  18. }

该函数先取出当前 CPU下BASE_STD 编号的 timer_base 结构体。如果当前系统的 jiffies 小于结构体中的clk变量的值,表示该结构体内包含的所有定时器都还没有到期。如果内核没有配置CONFIG_NO_HZ_COMMON 编译选项,则直接退出(没有配置NO_HZ模式,也就没有第二个timer_base结构体了)。否则继续检查BASE_DEF标号的timer_base结构体,如果全都没有到期的定时器,就没必要激活软中断继续处理了,直接退出就可以了。如果有可能有任何定时器到期的话,则激活TIMER_SOFTIRQ软中断。这个函数还会调用hrtimer_run_queues函数通知高精度定时器层。所以,在高精度定时器层没有切换到高精度模式前,其定时触发其实是靠精度较低的定时器层驱动的。

TIMER_SOFTIRQ 软中断的处理函数是在 init_timers 函数里面初始化的:

  1. void __init init_timers(void)
  2. {
  3. init_timer_cpus();
  4. open_softirq(TIMER_SOFTIRQ, run_timer_softirq);
  5. }

可以看到TIMER_SOFTIRQ软中断的处理函数是run_timer_softirq:

static __latent_entropy void run_timer_softirq(struct softirq_action *h)
{
struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);

__run_timers(base);
if (IS_ENABLED(CONFIG_NO_HZ_COMMON))
__run_timers(this_cpu_ptr(&timer_bases[BASE_DEF]));
}
就是分别调用__run_timers函数处理本CPU下的BASE_STD和BASE_DEF两个timer_base中包含的所有定时器:

  1. static inline void __run_timers(struct timer_base *base)
  2. {
  3. struct hlist_head heads[LVL_DEPTH];
  4. int levels;
  5. /* 如果当前时间早于timer_base的clk值表明没有定时器到期 */
  6. if (!time_after_eq(jiffies, base->clk))
  7. return;
  8. timer_base_lock_expiry(base);
  9. /* 获得timer_base的自旋锁并关中断 */
  10. raw_spin_lock_irq(&base->lock);
  11. /* 在__mod_timer函数中不需要再更新timer_base的clk值 */
  12. base->must_forward_clk = false;
  13. /* 如果当前时间晚于或等于timer_base的clk值循环并递增 */
  14. while (time_after_eq(jiffies, base->clk)) {
  15. /* 收集所有已经到期的定时器 */
  16. levels = collect_expired_timers(base, heads);
  17. base->clk++;
  18. while (levels--)
  19. /* 按级从高到低处理所有到期定时器 */
  20. expire_timers(base, heads + levels);
  21. }
  22. /* 释放timer_base的自旋锁并开中断 */
  23. raw_spin_unlock_irq(&base->lock);
  24. timer_base_unlock_expiry(base);
  25. }

该函数其实很简单,基本上就是先调用 collect_expired_timers 函数获得所有到期定时器,然后调用 expire_timers 函数处理所有的到期定时器。如果表示当前时间的系统 jiffies 值等于或晚于timer_base 中的 clk 值,表明确实是经过了一些 Tick,这时候就需要一个 Tick 一个 Tick 的追查到底有多少个定时器已经到期了,直到追到当前时间为止。处理到期定时器的expire_timers函数相对简单,我们先来看看:

  1. static void expire_timers(struct timer_base *base, struct hlist_head *head)
  2. {
  3. unsigned long baseclk = base->clk - 1;
  4. /* 循环访问所有超时定时器 */
  5. while (!hlist_empty(head)) {
  6. struct timer_list *timer;
  7. void (*fn)(struct timer_list *);
  8. timer = hlist_entry(head->first, struct timer_list, entry);
  9. /* 更新timer_base的running_timer的值为当前待处理定时器 */
  10. base->running_timer = timer;
  11. /* 从链表中删除该定时器 */
  12. detach_timer(timer, true);
  13. fn = timer->function;
  14. if (timer->flags & TIMER_IRQSAFE) {
  15. raw_spin_unlock(&base->lock);
  16. /* 调用定时器到期处理函数 */
  17. call_timer_fn(timer, fn, baseclk);
  18. /* 设置timer_base的running_timer的值为空 */
  19. base->running_timer = NULL;
  20. raw_spin_lock(&base->lock);
  21. } else {
  22. raw_spin_unlock_irq(&base->lock);
  23. /* 调用定时器到期处理函数 */
  24. call_timer_fn(timer, fn, baseclk);
  25. /* 设置timer_base的running_timer的值为空 */
  26. base->running_timer = NULL;
  27. timer_sync_wait_running(base);
  28. raw_spin_lock_irq(&base->lock);
  29. }
  30. }
  31. }

该函数的第一个参数是对应的 timer_base 结构体,第二个参数是要处理的到期定时器的列表。如果定时器的标志位设置了 TIMER_IRQSAFE 标志位,除了加锁和释放锁,还需要同时关闭中断和打开中断。

收集所有到期定时器是在collect_expired_timers函数中实现的:

  1. static int collect_expired_timers(struct timer_base *base,
  2. struct hlist_head *heads)
  3. {
  4. unsigned long now = READ_ONCE(jiffies);
  5. /* 如果当前jiffies和clk变量之间的差值大于2证明当前CPU已经进入过空闲模式 */
  6. if ((long)(now - base->clk) > 2) {
  7. /* 搜寻timer_base下最早到期定时器的时间 */
  8. unsigned long next = __next_timer_interrupt(base);
  9. /* 如果最近的到期时间晚于当前的时间 */
  10. if (time_after(next, now)) {
  11. /* 更新clk的值为当前时间后直接返回 */
  12. base->clk = now;
  13. return 0;
  14. }
  15. /* 更新clk的值为最近的到期时间 */
  16. base->clk = next;
  17. }
  18. /* 收集所有到期的定时器 */
  19. return __collect_expired_timers(base, heads);
  20. }

函数第一个参数是要收集的 timer_base 结构体,第二个参数是一个输出参数,是一个链表数组,按照级编号。在正式收集之前,会检查是不是刚从空闲模式中出来。在空闲模式下,不会收到Tick,所以就会导致当前时间 jiffies 和 timer_base 的 clk 值之间差距比较大。如果是这样的话,还是像处理普通模式一样一个Tick一个Tick追就太没有效率了,因为理论上在Tick中断期间是没有要到期的定时器的。所以,可以调用 __next_timer_interrupt 函数找到最近到期定时器的到期时间,并更新 clk 的值,再去收集。

  1. static unsigned long __next_timer_interrupt(struct timer_base *base)
  2. {
  3. unsigned long clk, next, adj;
  4. unsigned lvl, offset = 0;
  5. next = base->clk + NEXT_TIMER_MAX_DELTA;
  6. clk = base->clk;
  7. /* 循环每一个级 */
  8. for (lvl = 0; lvl < LVL_DEPTH; lvl++, offset += LVL_SIZE) {
  9. /* 在某一级下获得下一个到期桶偏移距离 */
  10. int pos = next_pending_bucket(base, offset, clk & LVL_MASK);
  11. if (pos >= 0) {
  12. /* 计算对应桶的到期时间 */
  13. unsigned long tmp = clk + (unsigned long) pos;
  14. tmp <<= LVL_SHIFT(lvl);
  15. /* 找出最小的到期时间 */
  16. if (time_before(tmp, next))
  17. next = tmp;
  18. }
  19. /* 如果当前clk的最低3位不为0,则切换到下一级的时候要加1*/
  20. adj = clk & LVL_CLK_MASK ? 1 : 0;
  21. /* 对clk移位切换下一级 */
  22. clk >>= LVL_CLK_SHIFT;
  23. clk += adj;
  24. }
  25. return next;
  26. }

该函数搜寻所有级下面的所有桶中第一个马上要到期定时器的到期时间。clk会在切换到下一级搜索前向右移3位,并且如果最低3位不为0的时候,移位后还需要加1。这是因为这个函数是用来找马上要到期的定时器,不是现在已经到期的,所以应该要找下一级的下一个。

前面提到过,定时器是不会因为快要到期了而移动位置的,因此有可能在高级别的桶内的到期时间反而早于在低级别桶内的到期时间,所以需要每个级别都要搜索。next_pending_bucket 函数用来获得下一个到期桶的编号:

  1. static int next_pending_bucket(struct timer_base *base, unsigned offset,
  2. unsigned clk)
  3. {
  4. unsigned pos, start = offset + clk;
  5. unsigned end = offset + LVL_SIZE;
  6. /*start开始到end往后搜 */
  7. pos = find_next_bit(base->pending_map, end, start);
  8. if (pos < end)
  9. return pos - start;
  10. /* 从offset开始到到start回过来搜 */
  11. pos = find_next_bit(base->pending_map, start, offset);
  12. return pos < start ? pos + LVL_SIZE - start : -1;
  13. }

注意,参数 clk 不是 timer_base 的 clk 值,而是对应该级的 6 位。函数返回的数值是在某一个级下的桶偏移距离,也就是编号的范围是 0 到 63,同时还要考虑回滚的情况。这个函数是通过搜索timer_base 的 pending_map 字段查找的,前面提过,在向某个桶中插入定时器的时候会设置pending_map 的相应位。这个函数先从当前位置向该级最后一个桶的位置查找,如果找到了那就返回找到的位置和当前位置的距离:

如果找不到,还会继续从该级第一个桶的位置向当前位置查找,但最后计算距离的时候,要考虑回滚,也就是当前位置到该级最后一个桶的位置之间的距离加上该级第一个桶的位置到找到的位置之间的距离:

在更新完 timver_base 的 clk 值之后,collect_expired_timers 函数最终会调用__collect_expired_timers 函数真正去收集到期的定时器:

  1. static int __collect_expired_timers(struct timer_base *base,
  2. struct hlist_head *heads)
  3. {
  4. unsigned long clk = base->clk;
  5. struct hlist_head *vec;
  6. int i, levels = 0;
  7. unsigned int idx;
  8. /* 按级别从低到高循环 */
  9. for (i = 0; i < LVL_DEPTH; i++) {
  10. /* 找到对应clk值在指定级下面的桶下标 */
  11. idx = (clk & LVL_MASK) + i * LVL_SIZE;
  12. /* 看对应的桶下面有没有定时器 */
  13. if (__test_and_clear_bit(idx, base->pending_map)) {
  14. /* 获得对应桶链表 */
  15. vec = base->vectors + idx;
  16. /* 将桶内所有定时器链表切换到heads参数里 */
  17. hlist_move_list(vec, heads++);
  18. levels++;
  19. }
  20. /* 如果还没到下一个级的检查周期则跳出循环 */
  21. if (clk & LVL_CLK_MASK)
  22. break;
  23. /* 对clk移位切换下一级 */
  24. clk >>= LVL_CLK_SHIFT;
  25. }
  26. return levels;
  27. }

该函数其实就是根据 timer_base 的 clk 值到每个级下的相应桶内查找看有没有到期的定时器。如果下一级的检查粒度还没达到就退出循环,在该级停止。

所以,总结一下,时间轮不是定时器在滚动,而是到期的位置在不停的移动。定时器的位置在添加的一刹那,根据到期时间距离当前时间的间隔,以及到期时间对应相应级的6位固定好了,而且一旦固定下来就不会移动了。每当Tick到来,都会更新timer_base的clk值,计算所指向桶的位置,然后通过pending_map判断桶里面是不是存在定时器,如果有的话那它们一定已经到期甚至是超时了。同时,只有在相应时刻(粒度对应的3位全为0时)才会检查下一级。

3 使用实例

  1. #include <linux/module.h>
  2. #include <linux/kernel.h>
  3. #include <linux/init.h>
  4. #include <linux/sched.h>//jiffies在此头文件中定义
  5. #include <linux/init.h>
  6. #include <linux/timer.h>
  7. #include <linux/delay.h>
  8. #define TIMER_TICK_UINT_MS (1000/HZ)
  9. #define TIMER_RUN_CPU1 (1)
  10. #define TIMER_LVL_1_TICKS (511)
  11. #define TIMER_LVL_2_TICKS (4095)
  12. #define TIMER_LVL_3_TICKS (4096)
  13. struct timer_list timer_lvl_1;
  14. struct timer_list timer_lvl_2;
  15. struct timer_list timer_lvl_3;
  16. static unsigned int test_timer_func_call = 0;
  17. void timer_lvl_1_function(unsigned long arg)
  18. {
  19. pr_err("#### timer_lvl_1 timeout: %lu(ms)\n",arg * TIMER_TICK_UINT_MS);
  20. /*
  21. //定时器处理函数不应耗时过长,影响精度
  22. if((test_timer_func_call >= 5)
  23. && (test_timer_func_call <= 10)){
  24. pr_err("#### timer_lvl_1 will sleep test_timer_func_call=%u\n",test_timer_func_call);
  25. msleep(5*1000);
  26. pr_err("#### timer_lvl_1 sleep over test_timer_func_call=%u\n",test_timer_func_call);
  27. }
  28. test_timer_func_call++;
  29. */
  30. mod_timer(&timer_lvl_1, jiffies + arg);
  31. }
  32. void timer_lvl_2_function(unsigned long arg)
  33. {
  34. pr_err("#### timer_lvl_2 timeout: %lu(ms)\n",arg * TIMER_TICK_UINT_MS);
  35. mod_timer(&timer_lvl_2, jiffies + arg);
  36. }
  37. void timer_lvl_3_function(unsigned long arg)
  38. {
  39. pr_err("#### timer_lvl_3 timeout: %lu(ms)\n",arg * TIMER_TICK_UINT_MS);
  40. mod_timer(&timer_lvl_3, jiffies + arg);
  41. }
  42. static int start_timer(struct timer_list *p_timer, unsigned long timer_tick, void (*p_func)(unsigned long)){
  43. init_timer(p_timer);
  44. p_timer->expires = jiffies + timer_tick;
  45. p_timer->data = timer_tick;
  46. p_timer->function = p_func;
  47. add_timer_on(p_timer,TIMER_RUN_CPU1);
  48. return 0;
  49. }
  50. static int __init timer_test_init (void)
  51. {
  52. pr_err("#### timer_test module init...\n");
  53. pr_err("#### timer_test,HZ=%u...\n",HZ);
  54. start_timer(&timer_lvl_1,TIMER_LVL_1_TICKS,timer_lvl_1_function);
  55. start_timer(&timer_lvl_2,TIMER_LVL_2_TICKS,timer_lvl_2_function);
  56. start_timer(&timer_lvl_3,TIMER_LVL_3_TICKS,timer_lvl_3_function);
  57. return 0;
  58. }
  59. static void __exit timer_test_exit (void)
  60. {
  61. del_timer(&timer_lvl_1);
  62. del_timer(&timer_lvl_2);
  63. del_timer(&timer_lvl_3);
  64. pr_err("#### timer_test module exit...\n");
  65. }
  66. module_init(timer_test_init);
  67. module_exit(timer_test_exit);
  68. MODULE_AUTHOR("timer_test");
  69. MODULE_LICENSE("GPL");

实验结果:

  1. [14808.598352] #### timer_test module init...
  2. [14808.598894] #### timer_test,HZ=250...
  3. [14810.850332] #### timer_lvl_1 timeout: 2044(ms)
  4. [14812.898333] #### timer_lvl_1 timeout: 2044(ms)
  5. [14814.946336] #### timer_lvl_1 timeout: 2044(ms)
  6. [14816.994331] #### timer_lvl_1 timeout: 2044(ms)
  7. [14819.042329] #### timer_lvl_1 timeout: 2044(ms)
  8. [14821.090334] #### timer_lvl_1 timeout: 2044(ms)
  9. [14823.138329] #### timer_lvl_1 timeout: 2044(ms)
  10. [14825.186327] #### timer_lvl_1 timeout: 2044(ms)
  11. [14826.466328] #### timer_lvl_3 timeout: 16384(ms)
  12. [14826.466917] #### timer_lvl_2 timeout: 16380(ms)
  13. [14827.234330] #### timer_lvl_1 timeout: 2044(ms)
  14. [14829.282329] #### timer_lvl_1 timeout: 2044(ms)
  15. [14831.330328] #### timer_lvl_1 timeout: 2044(ms)
  16. [14833.378329] #### timer_lvl_1 timeout: 2044(ms)
  17. [14835.426332] #### timer_lvl_1 timeout: 2044(ms)
  18. [14837.474328] #### timer_lvl_1 timeout: 2044(ms)
  19. [14839.522330] #### timer_lvl_1 timeout: 2044(ms)
  20. [14841.570327] #### timer_lvl_1 timeout: 2044(ms)
  21. [14842.850327] #### timer_lvl_2 timeout: 16380(ms)
  22. [14843.618328] #### timer_lvl_1 timeout: 2044(ms)
  23. [14844.898327] #### timer_lvl_3 timeout: 16384(ms)
  24. [14845.666332] #### timer_lvl_1 timeout: 2044(ms)
  25. [14847.714327] #### timer_lvl_1 timeout: 2044(ms)
  26. [14849.762326] #### timer_lvl_1 timeout: 2044(ms)
  27. [14851.810328] #### timer_lvl_1 timeout: 2044(ms)
  28. [14853.858329] #### timer_lvl_1 timeout: 2044(ms)
  29. [14855.906332] #### timer_lvl_1 timeout: 2044(ms)
  30. [14857.954330] #### timer_lvl_1 timeout: 2044(ms)
  31. [14859.234332] #### timer_lvl_2 timeout: 16380(ms)
  32. [14860.002327] #### timer_lvl_1 timeout: 2044(ms)
  33. [14862.050327] #### timer_lvl_1 timeout: 2044(ms)
  34. [14863.330326] #### timer_lvl_3 timeout: 16384(ms)
  35. [14864.098328] #### timer_lvl_1 timeout: 2044(ms)
  36. [14866.146331] #### timer_lvl_1 timeout: 2044(ms)
  37. [14868.194327] #### timer_lvl_1 timeout: 2044(ms)
  38. [14870.242334] #### timer_lvl_1 timeout: 2044(ms)
  39. [14872.290327] #### timer_lvl_1 timeout: 2044(ms)
  40. [14874.338327] #### timer_lvl_1 timeout: 2044(ms)
  41. [14875.618324] #### timer_lvl_2 timeout: 16380(ms)
  42. [14876.386333] #### timer_lvl_1 timeout: 2044(ms)
  43. [14878.434331] #### timer_lvl_1 timeout: 2044(ms)
  44. [14880.482331] #### timer_lvl_1 timeout: 2044(ms)
  45. [14881.762328] #### timer_lvl_3 timeout: 16384(ms)
  46. [14882.530328] #### timer_lvl_1 timeout: 2044(ms)
  47. [14884.578328] #### timer_lvl_1 timeout: 2044(ms)
  48. [14886.626332] #### timer_lvl_1 timeout: 2044(ms)
  49. [14888.674333] #### timer_lvl_1 timeout: 2044(ms)
  50. [14890.722328] #### timer_lvl_1 timeout: 2044(ms)
  51. [14892.002331] #### timer_lvl_2 timeout: 16380(ms)
  52. [14892.770330] #### timer_lvl_1 timeout: 2044(ms)
  53. [14894.818332] #### timer_lvl_1 timeout: 2044(ms)
  54. [14896.866331] #### timer_lvl_1 timeout: 2044(ms)
  55. [14898.914330] #### timer_lvl_1 timeout: 2044(ms)
  56. [14900.194332] #### timer_lvl_3 timeout: 16384(ms)
  57. [14900.962332] #### timer_lvl_1 timeout: 2044(ms)
  58. [14903.010330] #### timer_lvl_1 timeout: 2044(ms)
  59. [14905.058329] #### timer_lvl_1 timeout: 2044(ms)
  60. [14907.106330] #### timer_lvl_1 timeout: 2044(ms)
  61. [14908.386333] #### timer_lvl_2 timeout: 16380(ms)
  62. [14909.154327] #### timer_lvl_1 timeout: 2044(ms)
  63. [14911.202328] #### timer_lvl_1 timeout: 2044(ms)
  64. [14913.250333] #### timer_lvl_1 timeout: 2044(ms)
  65. [14915.298332] #### timer_lvl_1 timeout: 2044(ms)
  66. [14917.346328] #### timer_lvl_1 timeout: 2044(ms)
  67. [14918.626330] #### timer_lvl_3 timeout: 16384(ms)
  68. [14919.394327] #### timer_lvl_1 timeout: 2044(ms)
  69. [14921.442328] #### timer_lvl_1 timeout: 2044(ms)
  70. [14923.490330] #### timer_lvl_1 timeout: 2044(ms)
  71. [14924.770326] #### timer_lvl_2 timeout: 16380(ms)
  72. [14925.538328] #### timer_lvl_1 timeout: 2044(ms)
  73. [14927.586327] #### timer_lvl_1 timeout: 2044(ms)
  74. [14929.634327] #### timer_lvl_1 timeout: 2044(ms)
  75. [14931.682329] #### timer_lvl_1 timeout: 2044(ms)
  76. [14933.730327] #### timer_lvl_1 timeout: 2044(ms)
  77. [14935.778327] #### timer_lvl_1 timeout: 2044(ms)
  78. [14937.058326] #### timer_lvl_3 timeout: 16384(ms)
  79. [14937.826332] #### timer_lvl_1 timeout: 2044(ms)
  80. [14939.874327] #### timer_lvl_1 timeout: 2044(ms)
  81. [14941.154327] #### timer_lvl_2 timeout: 16380(ms)
  82. [14941.922326] #### timer_lvl_1 timeout: 2044(ms)
  83. [14943.970328] #### timer_lvl_1 timeout: 2044(ms)
  84. [14946.018328] #### timer_lvl_1 timeout: 2044(ms)
  85. [14948.066326] #### timer_lvl_1 timeout: 2044(ms)
  86. [14950.114329] #### timer_lvl_1 timeout: 2044(ms)
  87. [14952.162328] #### timer_lvl_1 timeout: 2044(ms)
  88. [14954.210327] #### timer_lvl_1 timeout: 2044(ms)
  89. [14955.490326] #### timer_lvl_3 timeout: 16384(ms)
  90. [14956.258326] #### timer_lvl_1 timeout: 2044(ms)
  91. [14957.538327] #### timer_lvl_2 timeout: 16380(ms)
  92. [14958.306326] #### timer_lvl_1 timeout: 2044(ms)
  93. [14960.354331] #### timer_lvl_1 timeout: 2044(ms)
  94. [14962.402328] #### timer_lvl_1 timeout: 2044(ms)
  95. [14964.450326] #### timer_lvl_1 timeout: 2044(ms)
  96. [14966.498326] #### timer_lvl_1 timeout: 2044(ms)
  97. [14968.546329] #### timer_lvl_1 timeout: 2044(ms)
  98. [14970.594331] #### timer_lvl_1 timeout: 2044(ms)
  99. [14972.642327] #### timer_lvl_1 timeout: 2044(ms)
  100. [14973.922326] #### timer_lvl_2 timeout: 16380(ms)
  101. [14973.922915] #### timer_lvl_3 timeout: 16384(ms)
  102. [14974.690326] #### timer_lvl_1 timeout: 2044(ms)
  103. [14976.738329] #### timer_lvl_1 timeout: 2044(ms)
  104. [14978.786327] #### timer_lvl_1 timeout: 2044(ms)
  105. [14980.834333] #### timer_lvl_1 timeout: 2044(ms)
  106. [14982.882328] #### timer_lvl_1 timeout: 2044(ms)
  107. [14984.930328] #### timer_lvl_1 timeout: 2044(ms)
  108. [14986.978327] #### timer_lvl_1 timeout: 2044(ms)
  109. [14989.026332] #### timer_lvl_1 timeout: 2044(ms)
  110. [14990.306327] #### timer_lvl_2 timeout: 16380(ms)
  111. [14991.074327] #### timer_lvl_1 timeout: 2044(ms)
  112. [14992.354327] #### timer_lvl_3 timeout: 16384(ms)
  113. [14993.122330] #### timer_lvl_1 timeout: 2044(ms)
  114. [14994.606035] #### timer_test module exit...

从结果分析 timer_lvl_2 、timer_lvl_3 定时时间仅仅相差一个tick(4ms)但是定时精度却差了一个等级。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/183465
推荐阅读
相关标签
  

闽ICP备14008679号