Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
4010ac6b
Commit
4010ac6b
authored
Jun 15, 2003
by
Arnaldo Carvalho de Melo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
o list.h: implement hlist_for_each_entry_{from,continue}
parent
aae1760a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
1 deletion
+25
-1
include/linux/list.h
include/linux/list.h
+25
-1
No files found.
include/linux/list.h
View file @
4010ac6b
...
@@ -380,7 +380,7 @@ static inline void list_splice_init(struct list_head *list,
...
@@ -380,7 +380,7 @@ static inline void list_splice_init(struct list_head *list,
/**
/**
* list_for_each_continue_rcu - iterate over an rcu-protected list
* list_for_each_continue_rcu - iterate over an rcu-protected list
* continuing
from
existing point.
* continuing
after
existing point.
* @pos: the &struct list_head to use as a loop counter.
* @pos: the &struct list_head to use as a loop counter.
* @head: the head for your list.
* @head: the head for your list.
*/
*/
...
@@ -522,6 +522,30 @@ static __inline__ void hlist_add_after(struct hlist_node *n,
...
@@ -522,6 +522,30 @@ static __inline__ void hlist_add_after(struct hlist_node *n,
pos && ({ prefetch(pos->next); 1;}) && \
pos && ({ prefetch(pos->next); 1;}) && \
({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
pos = pos->next)
pos = pos->next)
/**
* hlist_for_each_entry_continue - iterate over a hlist continuing after existing point
* @tpos: the type * to use as a loop counter.
* @pos: the &struct hlist_node to use as a loop counter.
* @member: the name of the hlist_node within the struct.
*/
#define hlist_for_each_entry_continue(tpos, pos, member) \
for (pos = (pos)->next; \
pos && ({ prefetch(pos->next); 1;}) && \
({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
pos = pos->next)
/**
* hlist_for_each_entry_from - iterate over a hlist continuing from existing point
* @tpos: the type * to use as a loop counter.
* @pos: the &struct hlist_node to use as a loop counter.
* @member: the name of the hlist_node within the struct.
*/
#define hlist_for_each_entry_from(tpos, pos, member) \
for (; pos && ({ prefetch(pos->next); 1;}) && \
({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
pos = pos->next)
/**
/**
* hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry
* hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry
* @tpos: the type * to use as a loop counter.
* @tpos: the type * to use as a loop counter.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment