Re: [-mm patch] make kcalloc() a static inline

From: Arjan van de Ven
Date: Mon Aug 15 2005 - 03:15:38 EST


On Mon, 2005-08-15 at 11:06 +0300, Denis Vlasenko wrote:

> > +static inline void *kcalloc(size_t n, size_t size, unsigned int __nocast flags)
> > +{
> > + if (n != 0 && size > INT_MAX / n)
> > + return NULL;
> > + return kzalloc(n * size, flags);
> > +}

> Can you conditionalize it on __builtin_constant_p(n) ?
> Otherwise with variable n you have 3 oprations in inlined
> code, one of them a division.

you can't conditionalize the security check really. If it's constant,
gcc will optimize it anyway, and if it's not constant you for sure want
the check there...


-
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/