lkml.org 
[lkml]   [2020]   [Oct]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [RFC PATCH 0/7] RAS/CEC: Extend CEC for errors count check on short time period
From
Date
Hi Shiju,

On 06/10/2020 17:13, Shiju Jose wrote:

[...]

> Please find following pseudo code we added for the kernel side to make sure
> we correctly understand your suggestions.
>
> 1. Create edac device and edac device sysfs entries for the online CPU caches.
> /drivers/edac/edac_device.c
> struct edac_device_ctl_info *edac_device_add_cache(unsigned int id, u8 level, u8 type) {

Eh? Ah, you are adding helpers for devices that are a cache. As far as I can see, edac
only cares about 'devices', I don't think this is needed unless there are multiple users,
or it makes a visible difference to user-space.

Otherwise this could just go into ghes_edac.c


How this looks to user-space probably needs discussing. We should avoid inventing anything
new. I'd expect user-space to see something like the structure described at the top of
edac_device.h... but I can't spot a driver using this.
(its a shame its not the other way up, to avoid duplicating shared caches)

Some archaeology may be needed!

(if there is some existing structure, I agree it should be wrapped up in helpers to ensure
its easiest to be the same. This may be what a edac_device_block is...)


> }


> /drivers/base/cacheinfo.c
> int cache_create_edac_entries(u64 mpidr, u8 cache_level, u8 cache_type)
> {
> ...
> /* Get cacheinfo for each online cpus */
> for_each_online_cpu(i) {
> struct cpu_cacheinfo *cpu_ci = get_cpu_cacheinfo(i);

I agree the structure of the caches should come from cacheinfo, and you spotted it only
works for online CPUs!. This means there is an interaction with cpuhp here)


> if (!cpu_ci || !cpu_ci->id)

cpu->id? 0 is a valid id, there is an attribute flag to say this is valid.
This field exists in struct cacheinfo, not struct cpu_cacheinfo.


> continue;
> ...
> /*Add the edac entry for the CPU cache */
> edev_cache = edac_device_add_cache(cpu_ci->id, cpu_ci ->level, cpu_ci ->type)
> if (!edev_cache)
> break;

This would break all other edac users.
The edac driver for the platform should take care of creating this stuff, not the core
cacheinfo code.

The edac driver for the platform may know that L2 doesn't report RAS errors, so there is
no point exposing it.

For firmware-first, we can't know this until an error shows up, so have to create
everything. This stuff should only be created/exported when ghes_edac.c is determined to
be this platforms edac driver. This code should live in ghes_edac.c.


> ...
> }
> ...
> }

> unsigned int cache_get_cache_id(u64 proc_id, u8 cache_level, u8 cache_type)

See get_cpu_cacheinfo_id(int cpu, int level) in next. (something very similar to this
lived in arch/x86, bits of the MPAM tree that moved it got queued for next)


> {
> unsigned int cache_id = 0;
> ...
> /* Walk looking for matching cache node */
> for_each_online_cpu(i) {

(there is an interaction with cpuhp here)


> struct cpu_cacheinfo *cpu_ci = get_cpu_cacheinfo(i);
> if (!cpu_ci || !cpu_ci->id)
> continue;


> id = CONV(proc_id); /* need to check */

No idea what is going on here.

(Deriving an ID from the CPU_s_ that are attached to the cache is arm64 specific. This has
to work for x86 too.
The MPAM out-of-tree code does this as we don't have anything else. Feedback when it was
posted as RFC was that the id values should be compacted, I was hoping we would get
something like an id from the PPTT before needing this value as resctrl ABI for MPAM)


> if((id == cpu_ci->id) && (cache_level == cpu_ci->level) && (cache_type == cpu_ci->type)) {
> cache_id = cpu_ci->id;
> break;
> }
> }
> return cache_id;
> }


> 2. Store CPU CE count in the edac sysfs entry for the CPU cache.
>
> drivers/edac/ghes_edac.c
> void ghes_edac_report_cpu_error(int cache_id, u8 cache_level, u8 cache_type , uint32 ce_count)
> {
> ...
> /* Check edac entry for cache already present, if not add new entry */

You can't create devices at runtime! The notification comes in irq context, and
edac_device_add_device() takes a mutex, and you need to allocate memory.

This could be deferred to process context - but I bet its a nuisance for user-space to now
know what counters are available until errors show up.


> edev_cache = find_edac_device_cache(cache_id, cache_level, cache_type);
> if (!edev_cache) {
> /*Add the edac entry for the cache */
> edev_cache = edac_device_add_cache(cache_id, cache_level, cache_type);
> if (!edev_cache)
> return;
> }

Better would be to lookup the device based on the CPER. (It already looks up the DIMM
based on the CPER)


> /* Store the ce_count to /sys/devices/system/edac/ cpu/cpu<no>/L<N>cache/ce_count */
> edac_device_handle_ce_count(edev_cache, ce_count, ...)
> }
>
> drivers/acpi/apei/ghes.c
> void ghes_handle_arm_hw_error(struct acpi_hest_generic_data *gdata) {
> ...
> if (sec_sev != GHES_SEV_CORRECTED)
> return;

(Xiaofei Tan is looking at supporting some other of these, so you need to interact with
that work too)


> mpidr = cper_sec_proc_arm->mpidr;

You want an arch-specific call to convert this to the linux CPU number, and then use that
everywhere. This makes the code more re-usable, and less surprising to other readers.

arm64's get_logical_index() looks like it does what you want.


> for(i = 0; i < cper_sec_proc_arm->err_info_num; i++) {
> if(cper_sec_proc_info->type != CPER_ARM_CACHE_ERROR)
> continue;
> ce_count = cper_arm_err_info->multiple_error + 1;
> cache_type = cper_arm_err_info->type;
> cache_level = cper_arm_err_info->error_info<24: 22>;

> cache_id = cache_get_cache_id(mpidr, cache_level, cache_type);

This needs to be architecture agnostic, it must take the cpu number.


> if (!cache_id)
> return;

0 is a valid id.


> ghes_edac_report_cpu_error(cache_id, cache_level, cache_type , ce_count);
> }
> ...
> return;
> }


Thanks,

James

\
 
 \ /
  Last update: 2020-10-07 18:46    [W:0.039 / U:1.396 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site