lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <0bea885c-6647-4552-a7f7-4fef260ef97c@arm.com>
Date: Mon, 24 Nov 2025 18:01:10 +0000
From: Robin Murphy <robin.murphy@....com>
To: Will Deacon <will@...nel.org>, Shouping Wang <allen.wang@...micro.com>
Cc: mark.rutland@....com, linux-arm-kernel@...ts.infradead.org,
 linux-kernel@...r.kernel.org, andy.xu@...micro.com, peter.du@...micro.com
Subject: Re: [PATCH 1/2] perf/arm-ni: rename PMU device name

On 2025-11-24 3:47 pm, Will Deacon wrote:
> On Fri, Nov 07, 2025 at 04:43:18PM +0800, Shouping Wang wrote:
>> The PMU device names are arm_ni_1_*,arm_ni_2_*, etc.
>> The device names change based on the order of registration
>> for multiple NI instances. By naming the PMU device using
>> its address, the device name can be made independent of
>> the registration order.
>>
>> Signed-off-by: Shouping Wang <allen.wang@...micro.com>
>> ---
>>   drivers/perf/arm-ni.c | 6 ++----
>>   1 file changed, 2 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/perf/arm-ni.c b/drivers/perf/arm-ni.c
>> index 1615a0564031..32eabdbe877a 100644
>> --- a/drivers/perf/arm-ni.c
>> +++ b/drivers/perf/arm-ni.c
>> @@ -53,6 +53,7 @@
>>   
>>   #define NI_NUM_COUNTERS		8
>>   #define NI_CCNT_IDX		31
>> +#define NI_PMU_PA_SHIFT		12
>>   
>>   /* Event attributes */
>>   #define NI_CONFIG_TYPE		GENMASK_ULL(15, 0)
>> @@ -115,7 +116,6 @@ struct arm_ni {
>>   	struct device *dev;
>>   	void __iomem *base;
>>   	enum ni_part part;
>> -	int id;
>>   	int cpu;
>>   	int num_cds;
>>   	struct hlist_node cpuhp_node;
>> @@ -560,7 +560,7 @@ static int arm_ni_init_cd(struct arm_ni *ni, struct arm_ni_node *node, u64 res_s
>>   		.read = arm_ni_event_read,
>>   	};
>>   
>> -	name = devm_kasprintf(ni->dev, GFP_KERNEL, "arm_ni_%d_cd_%d", ni->id, cd->id);
>> +	name = devm_kasprintf(ni->dev, GFP_KERNEL, "arm_ni_%llx", res_start >> NI_PMU_PA_SHIFT);
> 
> Doesn't this have the potential to break userspace (e.g. scripts) that
> expect the current naming to be stable?

Certainly on platforms where only arm_ni_0 ever exists. For 
multi-instance cases it's always been documented that this ID is 
arbitrary, and users should look at the platform device that is the 
sysfs parent of the PMU device(s) in order to disambiguate - from there 
they already have the freedom to use whatever information they like, 
including MMIO resources, but also interrupt numbers, ACPI _UIDs or 
whatever. So although changing one arbitrary value to a different 
arbitrary value is in theory something well-behaved users should be OK 
with, in practice changing it from a small decimal integer to a massive 
hex number may well still break parsing expectations.

Thanks,
Robin.

> 
> Either way, I'll need Robin's acks for these changes.
> 
> Will

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ