mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Alim Akhtar <alim.akhtar@samsung.com>
To: Marc Zyngier <marc.zyngier@arm.com>,
	tglx@linutronix.de, linux-kernel@vger.kernel.org
Cc: jason@lakedaemon.net, linux-arm-kernel@lists.infradead.org,
	shaik.ameer@samsung.com, aswani.reddy@samsung.com,
	abhinav.k@samsung.com, alim.akhtar@gmail.com,
	arjun.kv@samsung.com
Subject: Re: [PATCH RFC] irqchip: gic-v3: Support forced cpu irq affinity setting
Date: Tue, 8 Aug 2017 14:57:12 +0530	[thread overview]
Message-ID: <a13295d7-40cc-24d7-a99a-3d349fbb91cb@samsung.com> (raw)
In-Reply-To: <7ea6b8d3-762a-d4e9-3b64-609b534c3960@arm.com>



On 08/08/2017 02:52 PM, Marc Zyngier wrote:
> On 08/08/17 10:04, Alim Akhtar wrote:
>> Skip check for online cpu mask when setting irq affinity of per cpu timer
>> during early startup of not yet online cpu.
>>
>> Signed-off-by: Shaik Ameer Basha <shaik.ameer@samsung.com>
>> Signed-off-by: Aswani Reddy <aswani.reddy@samsung.com>
>> Signed-off-by: Alim Akhtar <alim.akhtar@samsung.com>
>> ---
>>   drivers/irqchip/irq-gic-v3.c | 7 ++++++-
>>   1 file changed, 6 insertions(+), 1 deletion(-)
>>
>> Currently when non boot CPUs comes up and if setting of IRQ affinity gets called
>> before cpu online status gets updated, gic_mpidr_to_affinity() returns
>> undesirable cpu number. Using __force__ flag ignore cpu_online_mask and setup
>> the intended cpu affinity for the irq.
>>
>> The same approch is used in gicv2
>> (commit: ffde1de64012c: irqchip: Gic: Support forced affinity setting)
>>
>> diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c
>> index dbffb7a..c238c64 100644
>> --- a/drivers/irqchip/irq-gic-v3.c
>> +++ b/drivers/irqchip/irq-gic-v3.c
>> @@ -640,11 +640,16 @@ static void gic_smp_init(void)
>>   static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
>>   			    bool force)
>>   {
>> -	unsigned int cpu = cpumask_any_and(mask_val, cpu_online_mask);
>> +	unsigned int cpu;
>>   	void __iomem *reg;
>>   	int enabled;
>>   	u64 val;
>>   
>> +	if (!force)
>> +		cpu = cpumask_any_and(mask_val, cpu_online_mask);
>> +	else
>> +		cpu = cpumask_first(mask_val);
>> +
>>   	if (cpu >= nr_cpu_ids)
>>   		return -EINVAL;
>>   
>>
> 
> See
> 
> https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git/commit/?h=irq/irqchip-4.13&id=65a30f8b300107266f316d550f060ccc186201a3
> 

Thanks Marc for above link. Is this already queued in some tree? I can't 
find this is linux-next.

> 	M.
> 

  reply	other threads:[~2017-08-08  9:34 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20170808091129epcas1p48d0523675178cb841d97e64d5baab75f@epcas1p4.samsung.com>
2017-08-08  9:04 ` Alim Akhtar
2017-08-08  9:22   ` Marc Zyngier
2017-08-08  9:27     ` Alim Akhtar [this message]
2017-08-08  9:44       ` Marc Zyngier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a13295d7-40cc-24d7-a99a-3d349fbb91cb@samsung.com \
    --to=alim.akhtar@samsung.com \
    --cc=abhinav.k@samsung.com \
    --cc=alim.akhtar@gmail.com \
    --cc=arjun.kv@samsung.com \
    --cc=aswani.reddy@samsung.com \
    --cc=jason@lakedaemon.net \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marc.zyngier@arm.com \
    --cc=shaik.ameer@samsung.com \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®