From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755383AbbBPJfe (ORCPT ); Mon, 16 Feb 2015 04:35:34 -0500 Received: from m15-113.126.com ([220.181.15.113]:36981 "EHLO m15-113.126.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754774AbbBPJfd (ORCPT ); Mon, 16 Feb 2015 04:35:33 -0500 From: Xunlei Pang To: linux-kernel@vger.kernel.org Cc: Peter Zijlstra , Steven Rostedt , Juri Lelli , Andrew Morton , Dan Streetman , Xunlei Pang Subject: [PATCH v4 1/3] lib/plist: Provide plist_add_head() for nodes with the same prio Date: Mon, 16 Feb 2015 17:32:22 +0800 Message-Id: <1424079144-5194-1-git-send-email-xlpang@126.com> X-Mailer: git-send-email 1.9.1 X-CM-TRANSID: DcmowAA3sXVVueFU6xL6AQ--.1340S2 X-Coremail-Antispam: 1Uf129KBjvJXoWxuF18tw1fGrW3uryfCr1Utrb_yoW5ur17pr y5G34fA397ArWxWw4SyF429wsIgF18JF4jkryxC343Ar12gr4IqFy7XF4UAF1fJr4kurWr Jr48Kw17Gr4UJr7anT9S1TB71UUUUUUqnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDUYxBIdaVFxhVjvjDU0xZFpf9x07jmVbgUUUUU= X-Originating-IP: [210.21.223.3] X-CM-SenderInfo: p0ost0bj6rjloofrz/1tbipBWiv1GofbTSHAABsT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Xunlei Pang If there're multiple nodes with the same prio as @node, currently plist_add() will add @node behind all of them. Now we need to add @node before all of these nodes for SMP RT scheduler. This patch adds a common __plist_add() for adding @node before or behind existing nodes with the same prio, then adds plist_add_head() and plist_add_tail() inline wrapper functions for convenient uses. Finally, define plist_add() with plist_add_tail() which has the same behaviour as before. Signed-off-by: Xunlei Pang --- include/linux/plist.h | 30 +++++++++++++++++++++++++++++- lib/plist.c | 15 ++++++++++++--- 2 files changed, 41 insertions(+), 4 deletions(-) diff --git a/include/linux/plist.h b/include/linux/plist.h index 9788360..e17bb96 100644 --- a/include/linux/plist.h +++ b/include/linux/plist.h @@ -138,7 +138,35 @@ static inline void plist_node_init(struct plist_node *node, int prio) INIT_LIST_HEAD(&node->node_list); } -extern void plist_add(struct plist_node *node, struct plist_head *head); +extern void __plist_add(struct plist_node *node, + struct plist_head *head, bool is_head); + +/** + * plist_add_head - add @node to @head, before all existing same-prio nodes + * + * @node: &struct plist_node pointer + * @head: &struct plist_head pointer + */ +static inline +void plist_add_head(struct plist_node *node, struct plist_head *head) +{ + __plist_add(node, head, 1); +} + +/** + * plist_add_tail - add @node to @head, after all existing same-prio nodes + * + * @node: &struct plist_node pointer + * @head: &struct plist_head pointer + */ +static inline +void plist_add_tail(struct plist_node *node, struct plist_head *head) +{ + __plist_add(node, head, 0); +} + +#define plist_add plist_add_tail + extern void plist_del(struct plist_node *node, struct plist_head *head); extern void plist_requeue(struct plist_node *node, struct plist_head *head); diff --git a/lib/plist.c b/lib/plist.c index d408e77..0e1f1b3 100644 --- a/lib/plist.c +++ b/lib/plist.c @@ -67,12 +67,16 @@ static void plist_check_head(struct plist_head *head) #endif /** - * plist_add - add @node to @head + * __plist_add - add @node to @head * * @node: &struct plist_node pointer * @head: &struct plist_head pointer + * @is_head: bool + * + * If there're any nodes with the same prio, add @node + * behind or before all of them according to @is_head. */ -void plist_add(struct plist_node *node, struct plist_head *head) +void __plist_add(struct plist_node *node, struct plist_head *head, bool is_head) { struct plist_node *first, *iter, *prev = NULL; struct list_head *node_next = &head->node_list; @@ -97,8 +101,13 @@ void plist_add(struct plist_node *node, struct plist_head *head) struct plist_node, prio_list); } while (iter != first); - if (!prev || prev->prio != node->prio) + if (!prev || prev->prio != node->prio) { list_add_tail(&node->prio_list, &iter->prio_list); + } else if (is_head) { + list_add(&node->prio_list, &prev->prio_list); + list_del_init(&prev->prio_list); + node_next = &prev->node_list; + } ins_node: list_add_tail(&node->node_list, node_next); -- 1.9.1