[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1311793825-31933-5-git-send-email-schnhrr@cs.tu-berlin.de>
Date: Wed, 27 Jul 2011 21:10:21 +0200
From: Jan H. Schönherr <schnhrr@...tu-berlin.de>
To: Ingo Molnar <mingo@...e.hu>, Peter Zijlstra <peterz@...radead.org>
Cc: Paul Turner <pjt@...gle.com>,
"Paul E. McKenney" <paulmck@...ux.vnet.ibm.com>,
Dipankar Sarma <dipankar@...ibm.com>,
linux-kernel@...r.kernel.org,
Jan H. Schönherr <schnhrr@...tu-berlin.de>
Subject: [PATCH RFCv2 4/8] list, treewide: Rename __list_del_entry() to __list_del()
From: Jan H. Schönherr <schnhrr@...tu-berlin.de>
Now that the name __list_del was freed, we can use this more
appropriate name for __list_del_entry(), making the name a bit
more consistent with __list_add().
Signed-off-by: Jan H. Schönherr <schnhrr@...tu-berlin.de>
---
include/linux/list.h | 10 +++++-----
lib/list_debug.c | 6 +++---
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/include/linux/list.h b/include/linux/list.h
index 9d093cc..5319099 100644
--- a/include/linux/list.h
+++ b/include/linux/list.h
@@ -95,7 +95,7 @@ static inline void __list_link(struct list_head *prev, struct list_head *next)
* in an undefined state.
*/
#ifndef CONFIG_DEBUG_LIST
-static inline void __list_del_entry(struct list_head *entry)
+static inline void __list_del(struct list_head *entry)
{
__list_link(entry->prev, entry->next);
}
@@ -107,7 +107,7 @@ static inline void list_del(struct list_head *entry)
entry->prev = LIST_POISON2;
}
#else
-extern void __list_del_entry(struct list_head *entry);
+extern void __list_del(struct list_head *entry);
extern void list_del(struct list_head *entry);
#endif
@@ -140,7 +140,7 @@ static inline void list_replace_init(struct list_head *old,
*/
static inline void list_del_init(struct list_head *entry)
{
- __list_del_entry(entry);
+ __list_del(entry);
INIT_LIST_HEAD(entry);
}
@@ -151,7 +151,7 @@ static inline void list_del_init(struct list_head *entry)
*/
static inline void list_move(struct list_head *list, struct list_head *head)
{
- __list_del_entry(list);
+ __list_del(list);
list_add(list, head);
}
@@ -163,7 +163,7 @@ static inline void list_move(struct list_head *list, struct list_head *head)
static inline void list_move_tail(struct list_head *list,
struct list_head *head)
{
- __list_del_entry(list);
+ __list_del(list);
list_add_tail(list, head);
}
diff --git a/lib/list_debug.c b/lib/list_debug.c
index 7e37695..9ca2d3a 100644
--- a/lib/list_debug.c
+++ b/lib/list_debug.c
@@ -35,7 +35,7 @@ void __list_add(struct list_head *new,
}
EXPORT_SYMBOL(__list_add);
-void __list_del_entry(struct list_head *entry)
+void __list_del(struct list_head *entry)
{
struct list_head *prev, *next;
@@ -58,7 +58,7 @@ void __list_del_entry(struct list_head *entry)
__list_link(prev, next);
}
-EXPORT_SYMBOL(__list_del_entry);
+EXPORT_SYMBOL(__list_del);
/**
* list_del - deletes entry from list.
@@ -68,7 +68,7 @@ EXPORT_SYMBOL(__list_del_entry);
*/
void list_del(struct list_head *entry)
{
- __list_del_entry(entry);
+ __list_del(entry);
entry->next = LIST_POISON1;
entry->prev = LIST_POISON2;
}
--
1.7.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists