Skip to content

Commit

Permalink
Introduce rculist.h
Browse files Browse the repository at this point in the history
In linux-next there is a commit ("rcu: split list.h and move rcu-protected
lists into rculist.h") that moved the rcu related list iterators from
list.h to rculist.h.  Add a trivial version of the file now so that
various subsystem trees can start using it now for -next changes and so
reduce the build errors caused by adding uses of the moved functions.

Cc: Franck Bui-Huu <[email protected]>
Acked-by: Paul E. McKenney <[email protected]>
Cc: Josh Triplett <[email protected]>
Acked-by: Ingo Molnar <[email protected]>
Signed-off-by: Stephen Rothwell <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
sfrothwell authored and torvalds committed Jul 4, 2008
1 parent fc26361 commit 93921f5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/linux/rculist.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#ifndef _LINUX_RCULIST_H
#define _LINUX_RCULIST_H

#include <linux/list.h>

#endif /* _LINUX_RCULIST_H */

0 comments on commit 93921f5

Please sign in to comment.