Re: [PATCH] [1/9] Add rcustring ADT for RCU protected strings v2

From: Paul E. McKenney
Date: Tue Jan 05 2010 - 09:12:10 EST


On Tue, Jan 05, 2010 at 11:47:46AM +0100, Andi Kleen wrote:
> On Mon, Jan 04, 2010 at 09:32:52PM -0800, Paul E. McKenney wrote:
> > > +/*
> > > + * Get a local private copy of a RCU protected string.
> > > + * Mostly useful to get a string that is stable while sleeping.
> > > + * Caller must free returned string.
> > > + */
> > > +char *access_rcu_string(char **str, int size, gfp_t gfp)
> > > +{
> > > + char *copy = kmalloc(size, gfp);
> > > + if (!str)
> > > + return NULL;
> > > + rcu_read_lock();
> > > + strlcpy(copy, rcu_dereference(*str), size);
> >
> > What if "str" is non-NULL, but "*str" is NULL? Or is that disallowed
> > somehow?
>
> I would consider it disallowed, all the strings have some default value.
> Empty string would be ""
>
> If we allowed it the caller couldn't easily distingush error from expected NULL.

OK, then:

Reviewed-by: Paul E. McKenney <paulmck@xxxxxxxxxxxxxxxxxx>

Thanx, Paul
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/