[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100922140310.GA30730@Krystal>
Date: Wed, 22 Sep 2010 10:03:11 -0400
From: Mathieu Desnoyers <mathieu.desnoyers@...ymtl.ca>
To: Thomas Gleixner <tglx@...utronix.de>,
"Paul E. McKenney" <paulmck@...ux.vnet.ibm.com>
Cc: Andi Kleen <andi@...stfloor.org>, jbaron@...hat.com,
rostedt@...dmis.com, linux-kernel@...r.kernel.org, mingo@...e.hu,
hpa@...or.com, roland@...hat.com, rth@...hat.com,
mhiramat@...hat.com, fweisbec@...il.com, avi@...hat.com,
davem@...emloft.net, vgoyal@...hat.com, sam@...nborg.org,
tony@...eyournoodle.com, Andi Kleen <ak@...ux.intel.com>
Subject: Re: [PATCH 1/2] Add for_each_module iterator function
* Thomas Gleixner (tglx@...utronix.de) wrote:
>
>
> On Wed, 22 Sep 2010, Andi Kleen wrote:
>
> > From: Andi Kleen <ak@...ux.intel.com>
> >
> > This is a generic function to iterate over all modules.
> > To be used in the next patch.
> >
> > Signed-off-by: Andi Kleen <ak@...ux.intel.com>
> > ---
> > include/linux/module.h | 1 +
> > kernel/module.c | 10 ++++++++++
> > 2 files changed, 11 insertions(+), 0 deletions(-)
> >
> > diff --git a/include/linux/module.h b/include/linux/module.h
> > index 403ac26..809b6db 100644
> > --- a/include/linux/module.h
> > +++ b/include/linux/module.h
> > @@ -410,6 +410,7 @@ struct module *__module_address(unsigned long addr);
> > bool is_module_address(unsigned long addr);
> > bool is_module_percpu_address(unsigned long addr);
> > bool is_module_text_address(unsigned long addr);
> > +void for_each_module(void (*op)(struct module *, void *arg), void *arg);
> >
> > static inline int within_module_core(unsigned long addr, struct module *mod)
> > {
> > diff --git a/kernel/module.c b/kernel/module.c
> > index eba1341..b8fb3e6 100644
> > --- a/kernel/module.c
> > +++ b/kernel/module.c
> > @@ -384,6 +384,16 @@ struct module *find_module(const char *name)
> > }
> > EXPORT_SYMBOL_GPL(find_module);
> >
> > +void for_each_module(void (*op)(struct module *, void *arg), void *arg)
> > +{
> > + struct module *mod;
> > +
> > + preempt_disable();
>
> That wants rcu_read_lock()
Then we might need to add synchronize_rcu() call when modules are
unloaded. For now, there is only synchronize_sched().
Mathieu
>
> > + list_for_each_entry_rcu(mod, &modules, list)
> > + op(mod, arg);
> > + preempt_enable();
>
> Thanks,
>
> tglx
--
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists