Re: [PATCH 23/35] cpumask: cpumask_any_but() From: Rusty Russell<rusty@rustcorp.com.au>

From: Ingo Molnar
Date: Thu Oct 23 2008 - 07:01:10 EST



* Mike Travis <travis@xxxxxxx> wrote:

> +int cpumask_any_but(const struct cpumask *mask, unsigned int cpu)
> +{
> + unsigned int i;
> +
> + for_each_cpu(i, mask)
> + if (i != cpu)
> + break;
> + return i;
> +}
> +
> /* These are not inline because of header tangles. */

i've added a missing export here.

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