1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-10-15 19:33:17 +03:00

pvscan framework

This commit is contained in:
Alasdair Kergon
2001-10-02 17:09:05 +00:00
parent 0d3d7fdcf2
commit 112cb0dc28
13 changed files with 321 additions and 93 deletions

View File

@@ -3,8 +3,6 @@
#ifndef _LVM_LIST_H
#define _LVM_LIST_H
#ifdef __KERNEL__
/*
* Simple doubly linked list implementation.
*
@@ -109,6 +107,4 @@ static __inline__ void list_splice(struct list_head *list, struct list_head *hea
#define list_for_each(pos, head) \
for (pos = (head)->next; pos != (head); pos = pos->next)
#endif /* __KERNEL__ */
#endif