Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\timerqueue.c Create Date:2022-07-28 06:13:15
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:merqueue_del - Removes a timer from the timerqueue.*@head: head of timerqueue*@node: timer node to be removed* Removes the timer node from the timerqueue. Returns true if the queue is* not empty after the remove.

Proto:bool timerqueue_del(struct timerqueue_head *head, struct timerqueue_node *node)

Type:bool

Parameter:

TypeParameterName
struct timerqueue_head *head
struct timerqueue_node *node
65  WARN_ON_ONCE('empty' nodes are nodes that are known not to be inserted in an rbtree ( & node))
67  rb_erase_cached( & node, & rb_root)
68  RB_CLEAR_NODE( & node)
70  Return Not RB_EMPTY_ROOT( & rb_root)
Caller
NameDescribe
alarmtimer_enqueuealarmtimer_enqueue - Adds an alarm timer to an alarm_base timerqueue*@base: pointer to the base where the timer is being run*@alarm: pointer to alarm being enqueued.* Adds alarm to a alarm_base timerqueue* Must hold base->lock when calling.
alarmtimer_dequeuealarmtimer_dequeue - Removes an alarm timer from an alarm_base timerqueue*@base: pointer to the base where the timer is running*@alarm: pointer to alarm being removed* Removes alarm to a alarm_base timerqueue* Must hold base->lock when calling.
cleanup_timerqueue