* [PATCH] Introduce rculist.h
@ 2008-07-01 2:56 Stephen Rothwell
2008-07-01 5:59 ` Ingo Molnar
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Stephen Rothwell @ 2008-07-01 2:56 UTC (permalink / raw)
To: Linus
Cc: Franck Bui-Huu, Paul E. McKenney, Josh Triplett, Andrew Morton,
Ingo Molnar, LKML, linux-next
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 <fbuihuu@gmail.com>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Josh Triplett <josh@kernel.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
include/linux/rculist.h | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
create mode 100644 include/linux/rculist.h
Linus, would you consider patches like this for 2.6.26 that have no
effect on the current tree but help with conflicts in various subsystems
during the next merge window? I already have three build fixups for this
one in particular.
diff --git a/include/linux/rculist.h b/include/linux/rculist.h
new file mode 100644
index 0000000..bde4586
--- /dev/null
+++ b/include/linux/rculist.h
@@ -0,0 +1,6 @@
+#ifndef _LINUX_RCULIST_H
+#define _LINUX_RCULIST_H
+
+#include <linux/list.h>
+
+#endif /* _LINUX_RCULIST_H */
--
1.5.6
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] Introduce rculist.h
2008-07-01 2:56 [PATCH] Introduce rculist.h Stephen Rothwell
@ 2008-07-01 5:59 ` Ingo Molnar
2008-07-01 20:13 ` Paul E. McKenney
2008-08-01 21:09 ` Paul E. McKenney
2 siblings, 0 replies; 4+ messages in thread
From: Ingo Molnar @ 2008-07-01 5:59 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Linus, Franck Bui-Huu, Paul E. McKenney, Josh Triplett,
Andrew Morton, LKML, linux-next
* Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> 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 <fbuihuu@gmail.com>
> Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> Cc: Josh Triplett <josh@kernel.org>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Ingo Molnar <mingo@elte.hu>
Acked-by: Ingo Molnar <mingo@elte.hu>
Ingo
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] Introduce rculist.h
2008-07-01 2:56 [PATCH] Introduce rculist.h Stephen Rothwell
2008-07-01 5:59 ` Ingo Molnar
@ 2008-07-01 20:13 ` Paul E. McKenney
2008-08-01 21:09 ` Paul E. McKenney
2 siblings, 0 replies; 4+ messages in thread
From: Paul E. McKenney @ 2008-07-01 20:13 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Linus, Franck Bui-Huu, Josh Triplett, Andrew Morton, Ingo Molnar,
LKML, linux-next
On Tue, Jul 01, 2008 at 12:56:07PM +1000, Stephen Rothwell wrote:
> 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.
Works for me!
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> Cc: Franck Bui-Huu <fbuihuu@gmail.com>
> Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> Cc: Josh Triplett <josh@kernel.org>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Ingo Molnar <mingo@elte.hu>
> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
> ---
> include/linux/rculist.h | 6 ++++++
> 1 files changed, 6 insertions(+), 0 deletions(-)
> create mode 100644 include/linux/rculist.h
>
> Linus, would you consider patches like this for 2.6.26 that have no
> effect on the current tree but help with conflicts in various subsystems
> during the next merge window? I already have three build fixups for this
> one in particular.
>
> diff --git a/include/linux/rculist.h b/include/linux/rculist.h
> new file mode 100644
> index 0000000..bde4586
> --- /dev/null
> +++ b/include/linux/rculist.h
> @@ -0,0 +1,6 @@
> +#ifndef _LINUX_RCULIST_H
> +#define _LINUX_RCULIST_H
> +
> +#include <linux/list.h>
> +
> +#endif /* _LINUX_RCULIST_H */
> --
> 1.5.6
>
> --
> Cheers,
> Stephen Rothwell sfr@canb.auug.org.au
> http://www.canb.auug.org.au/~sfr/
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] Introduce rculist.h
2008-07-01 2:56 [PATCH] Introduce rculist.h Stephen Rothwell
2008-07-01 5:59 ` Ingo Molnar
2008-07-01 20:13 ` Paul E. McKenney
@ 2008-08-01 21:09 ` Paul E. McKenney
2 siblings, 0 replies; 4+ messages in thread
From: Paul E. McKenney @ 2008-08-01 21:09 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Linus, Franck Bui-Huu, Josh Triplett, Andrew Morton, Ingo Molnar,
LKML, linux-next
On Tue, Jul 01, 2008 at 12:56:07PM +1000, Stephen Rothwell wrote:
> 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.
Works for me!
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> Cc: Franck Bui-Huu <fbuihuu@gmail.com>
> Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> Cc: Josh Triplett <josh@kernel.org>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Ingo Molnar <mingo@elte.hu>
> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
> ---
> include/linux/rculist.h | 6 ++++++
> 1 files changed, 6 insertions(+), 0 deletions(-)
> create mode 100644 include/linux/rculist.h
>
> Linus, would you consider patches like this for 2.6.26 that have no
> effect on the current tree but help with conflicts in various subsystems
> during the next merge window? I already have three build fixups for this
> one in particular.
>
> diff --git a/include/linux/rculist.h b/include/linux/rculist.h
> new file mode 100644
> index 0000000..bde4586
> --- /dev/null
> +++ b/include/linux/rculist.h
> @@ -0,0 +1,6 @@
> +#ifndef _LINUX_RCULIST_H
> +#define _LINUX_RCULIST_H
> +
> +#include <linux/list.h>
> +
> +#endif /* _LINUX_RCULIST_H */
> --
> 1.5.6
>
> --
> Cheers,
> Stephen Rothwell sfr@canb.auug.org.au
> http://www.canb.auug.org.au/~sfr/
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-08-01 21:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-01 2:56 [PATCH] Introduce rculist.h Stephen Rothwell
2008-07-01 5:59 ` Ingo Molnar
2008-07-01 20:13 ` Paul E. McKenney
2008-08-01 21:09 ` Paul E. McKenney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).