aboutsummaryrefslogtreecommitdiffstats
path: root/lib/timerqueue.c
diff options
context:
space:
mode:
authorJason Gunthorpe <jgg@mellanox.com>2018-01-29 15:26:40 -0500
committerJason Gunthorpe <jgg@mellanox.com>2018-01-30 11:30:00 -0500
commite7996a9a77fc669387da43ff4823b91cc4872bd0 (patch)
tree617f0a128e222539d67e8cccc359f1bc4b984900 /lib/timerqueue.c
parentb5fa635aab8f0d39a824c01991266a6d06f007fb (diff)
parentd8a5b80568a9cb66810e75b182018e9edb68e8ff (diff)
Merge tag v4.15 of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
To resolve conflicts in: drivers/infiniband/hw/mlx5/main.c drivers/infiniband/hw/mlx5/qp.c From patches merged into the -rc cycle. The conflict resolution matches what linux-next has been carrying. Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'lib/timerqueue.c')
-rw-r--r--lib/timerqueue.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/timerqueue.c b/lib/timerqueue.c
index 4a720ed4fdaf..0d54bcbc8170 100644
--- a/lib/timerqueue.c
+++ b/lib/timerqueue.c
@@ -33,8 +33,9 @@
33 * @head: head of timerqueue 33 * @head: head of timerqueue
34 * @node: timer node to be added 34 * @node: timer node to be added
35 * 35 *
36 * Adds the timer node to the timerqueue, sorted by the 36 * Adds the timer node to the timerqueue, sorted by the node's expires
37 * node's expires value. 37 * value. Returns true if the newly added timer is the first expiring timer in
38 * the queue.
38 */ 39 */
39bool timerqueue_add(struct timerqueue_head *head, struct timerqueue_node *node) 40bool timerqueue_add(struct timerqueue_head *head, struct timerqueue_node *node)
40{ 41{
@@ -70,7 +71,8 @@ EXPORT_SYMBOL_GPL(timerqueue_add);
70 * @head: head of timerqueue 71 * @head: head of timerqueue
71 * @node: timer node to be removed 72 * @node: timer node to be removed
72 * 73 *
73 * Removes the timer node from the timerqueue. 74 * Removes the timer node from the timerqueue. Returns true if the queue is
75 * not empty after the remove.
74 */ 76 */
75bool timerqueue_del(struct timerqueue_head *head, struct timerqueue_node *node) 77bool timerqueue_del(struct timerqueue_head *head, struct timerqueue_node *node)
76{ 78{