aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavem <davem>2002-01-15 07:11:15 +0000
committerdavem <davem>2002-01-15 07:11:15 +0000
commit1c5cb44de8746a2ff5a7d5e0dea1ee21ffb0bf75 (patch)
treec3c05cf9b27620ca3c49c7075e160133f64c6cfa
parentb812f5e02faa4c3ef7074ace4b2dc4df5781a636 (diff)
downloadnetdev-vger-cvs-1c5cb44de8746a2ff5a7d5e0dea1ee21ffb0bf75.tar.gz
Revert local change, will go to 2.5.x when
Trond merges his latest nfs stuff in.
-rw-r--r--include/linux/list.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/linux/list.h b/include/linux/list.h
index b6238cdd4..8c03f2f35 100644
--- a/include/linux/list.h
+++ b/include/linux/list.h
@@ -164,16 +164,6 @@ static __inline__ void list_splice(struct list_head *list, struct list_head *hea
for (pos = (head)->next, n = pos->next; pos != (head); \
pos = n, n = pos->next)
-/**
- * list_for_each_prev - iterate over a list in reverse order
- * @pos: the &struct list_head to use as a loop counter.
- * @head: the head for your list.
- */
-#define list_for_each_prev(pos, head) \
- for (pos = (head)->prev, prefetch(pos->prev); pos != (head); \
- pos = pos->prev, prefetch(pos->prev))
-
-
#endif /* __KERNEL__ || _LVM_H_INCLUDE */
#endif