mirror of
https://github.com/samba-team/samba.git
synced 2025-01-03 01:18:10 +03:00
ldb: sync DLIST_DEMOTE_SHORT() changes to include/dlinklist.h
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
parent
4fe39d9e7c
commit
7672a29feb
@ -156,6 +156,27 @@ do { \
|
|||||||
DLIST_ADD_END(list, p); \
|
DLIST_ADD_END(list, p); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* like DLIST_DEMOTE(), but optimized
|
||||||
|
* for short lists with 0, 1 or 2 elements
|
||||||
|
*/
|
||||||
|
#define DLIST_DEMOTE_SHORT(list, p) \
|
||||||
|
do { \
|
||||||
|
if ((list) == NULL) { \
|
||||||
|
/* no reason to demote, just add */ \
|
||||||
|
DLIST_ADD(list, p); \
|
||||||
|
} else if ((list)->prev == (p)) { \
|
||||||
|
/* optimize if p is last */ \
|
||||||
|
} else if ((list) == (p)) { \
|
||||||
|
/* optimize if p is first */ \
|
||||||
|
(list)->prev->next = (p); \
|
||||||
|
(list) = (p)->next; \
|
||||||
|
(p)->next = NULL; \
|
||||||
|
} else { \
|
||||||
|
DLIST_DEMOTE(list, p); \
|
||||||
|
} \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
concatenate two lists - putting all elements of the 2nd list at the
|
concatenate two lists - putting all elements of the 2nd list at the
|
||||||
end of the first list.
|
end of the first list.
|
||||||
|
Loading…
Reference in New Issue
Block a user