mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH][2.5] Single linked headed lists for Linux, v3
@ 2002-09-28  9:33 Lightweight Patch Manager
  2002-09-28  9:52 ` Thunder from the hill
                   ` (2 more replies)
  0 siblings, 3 replies; 18+ messages in thread
From: Lightweight Patch Manager @ 2002-09-28  9:33 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Rik van Riel, Tomas Szepe, Zach Brown

--- /dev/null	Wed Dec 31 17:00:00 1969
+++ slist-2.5/include/linux/shlist.h	Sat Sep 28 03:31:18 2002
@@ -0,0 +1,196 @@
+#ifdef __KERNEL__
+#ifndef _LINUX_SLIST_H
+#define _LINUX_SLIST_H
+
+#include <asm/processor.h>
+
+/*
+ * Type-preserving  single  linked  headed list  helper-functions  for
+ * circular and linear lists. (Code originally taken from list.h)
+ *
+ * Thomas 'Dent' Mirlacher, Daniel Phillips, Thunder from the hill
+ */
+
+/******************************************************************************
+ * Common stuff 
+ *****************************************************************************/
+
+/**
+ * slist_add_front - add a new entry at the first slot, moving the old head
+ *		     to the second slot
+ * @new:	new entry to be added
+ * @head:	head of the single linked list
+ *
+ * Insert a new entry before the specified head.
+ * This is good for implementing stacks.
+ */
+
+#define slist_add_front(_new_in, _head_in)	\
+do {						\
+	typeof(_head_in) _head = _head_in,	\
+		    _new = _new_in;		\
+	_new->next = _head;			\
+	_head = _new;				\
+} while (0)
+
+/**
+ * slist_add - add a new entry after the list head
+ * @new:       new entry to be added
+ * @head:      head of the single linked list
+ *
+ * Insert a new entry before the specified head.
+ * This is good for implementing stacks.
+ *
+ * Careful: if you do this concurrently, _head
+ * might get into nirvana...
+ */
+#define slist_add(_new_in, _head_in)		\
+do {						\
+	typeof(_head_in) _head = (_head_in),	\
+		    _new = (_new_in);		\
+	_new->next = _head->next;		\
+	_head->next = _new;			\
+} while (0)
+
+/**
+ * slist_del_single -	untag a list from an entry
+ * @list:	list entry to be untagged
+ */
+#define slist_del_single(_list)			\
+	((_list)->next = NULL)
+
+/**
+ * slist_pop	-	pop out list entry
+ * @list:	entry to be popped out
+ *
+ * Pop out an entry from a list.
+ */
+#define slist_pop(_list_in) ({			\
+	typeof(_list_in) _list = (_list_in),	\
+		    _NODE_ = _list;		\
+	if (_list) {				\
+	    (_list) = (_list)->next;		\
+	    _NODE_->next = NULL;		\
+	}					\
+	_NODE_; })
+
+/**
+ * slist_del -	remove an entry from a list, walking the list from the head
+ * @head:	list head, where the walking will start
+ * @entry:	entry to be removed
+ */
+#define slist_del(_entry_in,_head_in)			\
+do {							\
+	typeof(_entry_in) _entry = (_entry_in),		\
+			  _head  = (_head_in);		\
+	if (_head == _entry) {				\
+		_head = _entry->next;			\
+		slist_del_single(_entry);		\
+	} else {					\
+		typeof(_entry) _pos, _prev=_head;	\
+		while (_prev && (_pos = _prev->next)) {	\
+			if (_pos == _entry) {		\
+				_prev->next = _pos->next;\
+				slist_del_single(_pos);	\
+				break;			\
+			}				\
+			_prev = _pos;			\
+			if (_prev == _head) break;	\
+		}					\
+		/* Entry is not on list. BUG? --ct */	\
+	}						\
+} while (0)
+
+/**
+ * slist_del_quick -	(re)move an entry from list
+ * @buf:	a storage area, just as long as the entry
+ * @entry:	entry to be removed
+ */
+#define slist_del_quick(_entry_in,_buf_in)		\
+do {							\
+	typeof(_entry_in) _entry = (_entry_in),		\
+			  _buf = (_buf_in), _free;	\
+	_free = _entry->next;				\
+	memcpy(_buf, _entry, sizeof(_entry));		\
+	memcpy(_entry, _free, sizeof(_entry));		\
+	memcpy(_buf, _free, sizeof(_entry));		\
+	slist_del_single(_entry);			\
+} while (0)
+
+/******************************************************************************
+ * Linear specific
+ *****************************************************************************/
+
+#define INIT_SLIST_HEAD(name)			\
+	(name->next = NULL)
+
+#define SLIST_HEAD_INIT(name)			\
+	{ .next = NULL; }
+
+#define SLIST_HEAD(type,name)			\
+	typeof(type) name = SLIST_HEAD_INIT(name)
+
+/**
+ * slist_for_each	-	iterate over a list
+ * @pos:	the pointer to use as a loop counter.
+ * @head:	the head for your list (this is also the first entry).
+ */
+#define slist_for_each(pos, head)				\
+	for (pos = head; pos && ({ prefetch(pos->next); 1; });	\
+	    pos = pos->next)
+
+/**
+ * slist_for_each_del	-	iterate over a list, popping off entries
+ * @pos:       the pointer to use as a loop counter.
+ * @head:      the head for your list (this is also the first entry).
+ */
+#define slist_for_each_del(pos, head)			\
+	for (pos = slist_pop(head); pos &&		\
+    	    ({ prefetch(pos->next); 1; });		\
+	    pos = slist_pop(head))
+
+/******************************************************************************
+ * Circular specific
+ *****************************************************************************/
+
+#define INIT_SLIST_LOOP(name)			\
+	(name->next = name)
+
+#define SLIST_LOOP_INIT(name)			\
+	{ .next = name; }
+
+#define SLIST_LOOP(type,name)			\
+	typeof(type) name = SLIST_LOOP_INIT(name);
+
+/**
+ * slist_del_init -	remove an entry from list and initialize it
+ * @head:	head to remove it from
+ * @entry:	entry to be removed
+ */
+#define slist_del_init(_entry_in)			\
+({							\
+	typeof(_entry_in) _entry = (_entry_in), _head =	\
+	    kmalloc(sizeof(_entry), GFP_KERNEL), _free;	\
+	if (_head) {					\
+	    memcpy(_head, (_entry), sizeof(_entry));	\
+	    _free = (_entry);				\
+	    (_entry) = (_entry)->next;			\
+	    kfree(_free);				\
+	    _head->next = _head;			\
+	    _head;					\
+	} else						\
+	    NULL;					\
+})
+
+/**
+ * slist_for_each_circular	-	iterate over a circular list
+ * @pos:	the pointer to use as a loop counter.
+ * @head:	the head for your list (this is also the first entry).
+ */
+#define slist_for_each_circular(pos, head)		\
+	for (pos = head; pos && pos != head &&		\
+	    ({ prefetch(pos->next); 1; });		\
+	    pos = pos->next)
+
+#endif /* _LINUX_SLIST_H */
+#endif /* __KERNEL__ */

-- 
Lightweight Patch Manager, without pine.
If you have any objections (apart from who I am), tell me


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2002-09-28 19:52 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-09-28  9:33 [PATCH][2.5] Single linked headed lists for Linux, v3 Lightweight Patch Manager
2002-09-28  9:52 ` Thunder from the hill
2002-09-28 13:23 ` Christoph Hellwig
2002-09-28 13:27   ` Thunder from the hill
2002-09-28 13:30     ` Christoph Hellwig
2002-09-28 13:45       ` Thunder from the hill
2002-09-28 13:47         ` Christoph Hellwig
2002-09-28 14:00           ` Thunder from the hill
2002-09-28 14:10             ` Christoph Hellwig
2002-09-28 14:19               ` Thunder from the hill
2002-09-28 13:29   ` Zwane Mwaikambo
2002-09-28 13:34     ` Christoph Hellwig
2002-09-28 14:22   ` Roman Zippel
2002-09-28 14:27     ` Tomas Szepe
2002-09-28 15:49       ` Roman Zippel
2002-09-28 16:12         ` Thunder from the hill
2002-09-28 19:49 ` Zach Brown
2002-09-28 19:58   ` Thunder from the hill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®