Re: [RFC PATCH 5/6] implement per-cpu&per-domain state machinecall_srcu()

From: Peter Zijlstra
Date: Tue Mar 06 2012 - 05:58:49 EST


On Tue, 2012-03-06 at 17:57 +0800, Lai Jiangshan wrote:
> /*
> + * 'return left < right;' but handle the overflow issues.
> + * The same as 'return (long)(right - left) > 0;' but it cares more.

About what? And why? We do the (long)(a - b) thing all over the kernel,
why would you care more?

> + */
> +static inline
> +bool safe_less_than(unsigned long left, unsigned long right, unsigned long max)
> +{
> + unsigned long a = right - left;
> + unsigned long b = max - left;
> +
> + return !!a && (a <= b);
> +}
--
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/