[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20081023110036.GA25132@elte.hu>
Date: Thu, 23 Oct 2008 13:00:36 +0200
From: Ingo Molnar <mingo@...e.hu>
To: Mike Travis <travis@....com>
Cc: Rusty Russell <rusty@...tcorp.com.au>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 23/35] cpumask: cpumask_any_but() From: Rusty Russell
<rusty@...tcorp.com.au>
* Mike Travis <travis@....com> 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@...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