Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1166322

Re: [PATCH 01/10] cpumask: Introduce cpumask_any_online_but

From Vikas Shivappa <vikas.shivappa@intel.com>
Newsgroups linux.kernel
Subject Re: [PATCH 01/10] cpumask: Introduce cpumask_any_online_but
Date 2015-06-16 21:10 +0200
Message-ID <pC4pc-32i-17@gated-at.bofh.it> (permalink)
References <pABSh-5cu-3@gated-at.bofh.it> <pABSh-5cu-5@gated-at.bofh.it> <pBBQd-3qS-7@gated-at.bofh.it> <pBFTR-RJ-29@gated-at.bofh.it> <pBUpR-5cG-29@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw



On Tue, 16 Jun 2015, Thomas Gleixner wrote:

> On Mon, 15 Jun 2015, Vikas Shivappa wrote:
>> On Mon, 15 Jun 2015, Peter Zijlstra wrote:
>>> On Fri, Jun 12, 2015 at 11:17:08AM -0700, Vikas Shivappa wrote:
>>>> +	cpumask_and(&tmp, cpu_online_mask, mask);
>>>> +	cpumask_clear_cpu(cpu, &tmp);
>>>> +	return cpumask_any(&tmp);
>>>> +}
>>>
>>> You had a good example in cpumask_any_but() copy that.
>>
>> I saw the cpumask_any_but but wanted to avoid the for loop in the
>> cpumask_any_but , but now i see why from your previous comment. Without the
>> cpumask_t I will have to use the cpumask_any_but .. the two were related.
>
> It can be done w/o a loop. Hint, you need a static cpumask in your
> code anyway.

Ah thats right, I always need the tmp mask. Confused this with 
avoiding the cpumask_clear_cpu line in the code vs. using cpumask_any_but.

something like this just making it static then ?

 	static cpumask_t tmp;

 	cpumask_and(&tmp, cpu_online_mask, mask);
 	cpumask_clear_cpu(cpu, &tmp);
 	return cpumask_any(&tmp);

Thanks,
Vikas

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

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

Re: [PATCH 01/10] cpumask: Introduce cpumask_any_online_but Vikas Shivappa <vikas.shivappa@intel.com> - 2015-06-16 21:10 +0200

csiph-web