From: Suzuki.Poulose@arm.com (Suzuki K Poulose)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 1/5] arm64: cpufeature: Add scope for capability check
Date: Wed, 20 Apr 2016 13:35:27 +0100 [thread overview]
Message-ID: <5717778F.5020702@arm.com> (raw)
In-Reply-To: <20160420112800.GC2514@arm.com>
On 20/04/16 12:28, Will Deacon wrote:
> On Mon, Apr 18, 2016 at 05:35:30PM +0100, Suzuki K Poulose wrote:
>> Add scope parameter to the arm64_cpu_capabilities::matches(), so that
>> this can be reused for checking the capability on a given CPU vs the
>> system wide. The system uses the default scope associated with the
>> capability for initialising the CPU_HWCAPs and ELF_HWCAPs.
>> +/* scope of capability check */
>> +enum {
>> + SCOPE_SYSTEM,
>> + SCOPE_CPU,
>> +};
>
> I think I actually prefer the GLOBAL/LOCAL naming, since SYSTEM is going
> to be the scope you want when talking about all CPUs. Or maybe just
> rename SCOPE_CPU to SCOPE_LOCAL_CPU.
OK
>
> We might want a preemptible() check when probing SCOPE_CPU properties,
> too.
Good point. The current users are all calling them from the CPU init phase,
where it is not preemptible. But it would be good to add a check to make sure
nobody violates this condition. Also, will add a comment for
"this_cpu_has_cap()" API to call it under !preemptible() state.
>> diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c
>> index 8c46621..db392c5 100644
>> --- a/arch/arm64/kernel/cpufeature.c
>> +++ b/arch/arm64/kernel/cpufeature.c
>> @@ -71,7 +71,9 @@ DECLARE_BITMAP(cpu_hwcaps, ARM64_NCAPS);
>>
>> /* meta feature for alternatives */
>> static bool __maybe_unused
>> -cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry);
>> +cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry, int __unused);
>> +
>> +static u64 __raw_read_system_reg(u32 sys_id);
>
> Can we not reorder the functions in this file to avoid the internal forward
> declarations?
We can. I had that in my initial version, but the patch looked a bit more complicated
with the code movement. I will bring it back and get rid of the declaration.
Cheers
Suzuki
WARNING: multiple messages have this Message-ID (diff)
From: Suzuki K Poulose <Suzuki.Poulose@arm.com>
To: Will Deacon <will.deacon@arm.com>
Cc: linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, mark.rutland@arm.com,
catalin.marinas@arm.com, Vadim.Lomovtsev@caviumnetworks.com,
marc.zyngier@arm.com, James Morse <james.morse@arm.com>,
Andre Przywara <andre.przywara@arm.com>
Subject: Re: [PATCH v2 1/5] arm64: cpufeature: Add scope for capability check
Date: Wed, 20 Apr 2016 13:35:27 +0100 [thread overview]
Message-ID: <5717778F.5020702@arm.com> (raw)
In-Reply-To: <20160420112800.GC2514@arm.com>
On 20/04/16 12:28, Will Deacon wrote:
> On Mon, Apr 18, 2016 at 05:35:30PM +0100, Suzuki K Poulose wrote:
>> Add scope parameter to the arm64_cpu_capabilities::matches(), so that
>> this can be reused for checking the capability on a given CPU vs the
>> system wide. The system uses the default scope associated with the
>> capability for initialising the CPU_HWCAPs and ELF_HWCAPs.
>> +/* scope of capability check */
>> +enum {
>> + SCOPE_SYSTEM,
>> + SCOPE_CPU,
>> +};
>
> I think I actually prefer the GLOBAL/LOCAL naming, since SYSTEM is going
> to be the scope you want when talking about all CPUs. Or maybe just
> rename SCOPE_CPU to SCOPE_LOCAL_CPU.
OK
>
> We might want a preemptible() check when probing SCOPE_CPU properties,
> too.
Good point. The current users are all calling them from the CPU init phase,
where it is not preemptible. But it would be good to add a check to make sure
nobody violates this condition. Also, will add a comment for
"this_cpu_has_cap()" API to call it under !preemptible() state.
>> diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c
>> index 8c46621..db392c5 100644
>> --- a/arch/arm64/kernel/cpufeature.c
>> +++ b/arch/arm64/kernel/cpufeature.c
>> @@ -71,7 +71,9 @@ DECLARE_BITMAP(cpu_hwcaps, ARM64_NCAPS);
>>
>> /* meta feature for alternatives */
>> static bool __maybe_unused
>> -cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry);
>> +cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry, int __unused);
>> +
>> +static u64 __raw_read_system_reg(u32 sys_id);
>
> Can we not reorder the functions in this file to avoid the internal forward
> declarations?
We can. I had that in my initial version, but the patch looked a bit more complicated
with the code movement. I will bring it back and get rid of the declaration.
Cheers
Suzuki
next prev parent reply other threads:[~2016-04-20 12:35 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-18 16:35 [PATCH v2 0/5] arm64: Fix behavior of maxcpus=n Suzuki K Poulose
2016-04-18 16:35 ` Suzuki K Poulose
2016-04-18 16:35 ` [PATCH v2 1/5] arm64: cpufeature: Add scope for capability check Suzuki K Poulose
2016-04-18 16:35 ` Suzuki K Poulose
2016-04-20 11:28 ` Will Deacon
2016-04-20 11:28 ` Will Deacon
2016-04-20 12:35 ` Suzuki K Poulose [this message]
2016-04-20 12:35 ` Suzuki K Poulose
2016-04-18 16:35 ` [PATCH v2 2/5] arm64: Allow a capability to be checked on a single CPU Suzuki K Poulose
2016-04-18 16:35 ` Suzuki K Poulose
2016-04-18 16:35 ` [PATCH v2 3/5] irqchip/gic: Restore CPU interface checking Suzuki K Poulose
2016-04-18 16:35 ` Suzuki K Poulose
2016-04-18 16:35 ` [PATCH v2 4/5] arm64: Verify CPU errata work arounds on hotplugged CPU Suzuki K Poulose
2016-04-18 16:35 ` Suzuki K Poulose
2016-04-18 16:35 ` [PATCH v2 5/5] arm64: Fix behavior of maxcpus=N Suzuki K Poulose
2016-04-18 16:35 ` Suzuki K Poulose
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=5717778F.5020702@arm.com \
--to=suzuki.poulose@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.