From: kernel test robot <lkp@intel.com>
To: Ruidong Tian <tianruidong@linux.alibaba.com>,
catalin.marinas@arm.com, will@kernel.org, lpieralisi@kernel.org,
guohanjun@huawei.com, sudeep.holla@arm.com, rafael@kernel.org,
robin.murphy@arm.com, mark.rutland@arm.com, tony.luck@intel.com,
bp@alien8.de, tglx@linutronix.de
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
lenb@kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, linux-acpi@vger.kernel.org,
linux-perf-users@vger.kernel.org, linux-edac@vger.kernel.org,
mchehab@kernel.org, xueshuai@linux.alibaba.com,
zhuo.song@linux.alibaba.com, oliver.yang@linux.alibaba.com,
Ruidong Tian <tianruidong@linux.alibaba.com>
Subject: Re: [PATCH v6 15/16] ras: AEST: support vendor node CMN700
Date: Wed, 28 Jan 2026 02:56:12 +0800 [thread overview]
Message-ID: <202601280228.CbJgYMRG-lkp@intel.com> (raw)
In-Reply-To: <20260122094656.73399-16-tianruidong@linux.alibaba.com>
Hi Ruidong,
kernel test robot noticed the following build warnings:
[auto build test WARNING on arm64/for-next/core]
[also build test WARNING on rafael-pm/linux-next rafael-pm/bleeding-edge linus/master v6.19-rc7 next-20260126]
[cannot apply to tip/smp/core]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Ruidong-Tian/ACPI-AEST-Parse-the-AEST-table/20260122-180219
base: https://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git for-next/core
patch link: https://lore.kernel.org/r/20260122094656.73399-16-tianruidong%40linux.alibaba.com
patch subject: [PATCH v6 15/16] ras: AEST: support vendor node CMN700
config: arm64-allmodconfig (https://download.01.org/0day-ci/archive/20260128/202601280228.CbJgYMRG-lkp@intel.com/config)
compiler: clang version 19.1.7 (https://github.com/llvm/llvm-project cd708029e0b2869e80abe31ddb175f7c35361f90)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260128/202601280228.CbJgYMRG-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202601280228.CbJgYMRG-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/ras/aest/aest-cmn.c:209:19: warning: variable 'hnd_base' set but not used [-Wunused-but-set-variable]
209 | u64 errgsr_addr, hnd_base;
| ^
1 warning generated.
vim +/hnd_base +209 drivers/ras/aest/aest-cmn.c
203
204 static int aest_cmn_reorgnize_node(struct aest_device *adev,
205 struct acpi_aest_node *anode, u64 base)
206 {
207 struct aest_node *cmn_node;
208 u64 hnd_offset, cmn_node_offset, reg, logic_id, type, node_id;
> 209 u64 errgsr_addr, hnd_base;
210 struct aest_record *record;
211 int ret, node_index;
212 struct cmn_vendor_data *vendor_data;
213
214 if (anode->interface_hdr->type !=
215 ACPI_AEST_NODE_SINGLE_RECORD_MEMORY_MAPPED) {
216 aest_dev_err(adev, "CMN just use single memory mapping\n");
217 return -ENODEV;
218 }
219
220 hnd_offset = *((u64 *)anode->vendor->vendor_specific_data);
221 cmn_node_offset = *((u64 *)&anode->vendor->vendor_specific_data[8]);
222
223 reg = readq_relaxed((void *)base + cmn_node_offset + CMN_NODE_INFO);
224
225 logic_id = FIELD_GET(CMN_NI_LOGICAL_ID, reg);
226 type = FIELD_GET(CMN_NI_NODE_TYPE, reg);
227 node_id = FIELD_GET(CMN_NI_NODE_ID, reg);
228
229 hnd_base = base + hnd_offset;
230 node_index = cmn_config->node_id_map[type];
231 errgsr_addr = base + cmn_config->errgsr_offset(hnd_offset, node_index);
232
233 // node not register, create it
234 cmn_node = &adev->nodes[node_index];
235 if (!cmn_node->errgsr) {
236 ret = aest_cmn_init_node(adev, cmn_node, anode, type,
237 errgsr_addr);
238 if (ret)
239 return -ENOMEM;
240 }
241
242 aest_dev_dbg(adev, "node type %llx, id %llx, offset %llx\n", type,
243 logic_id, cmn_node_offset);
244
245 if (!test_bit(0, anode->record_implemented))
246 clear_bit(logic_id, cmn_node->record_implemented);
247
248 if (!test_bit(0, anode->status_reporting))
249 clear_bit(logic_id, cmn_node->status_reporting);
250
251 record = &cmn_node->records[logic_id];
252 record->name =
253 devm_kasprintf(adev->dev, GFP_KERNEL, "record%lld", logic_id);
254 if (!record->name)
255 return -ENOMEM;
256 record->regs_base = devm_ioremap(
257 adev->dev, (resource_size_t)anode->interface_hdr->address,
258 sizeof(struct ras_ext_regs));
259 if (!record->regs_base)
260 return -ENOMEM;
261 record->addressing_mode = test_bit(0, anode->addressing_mode);
262 record->node = cmn_node;
263 record->index = logic_id;
264 record->access = &aest_access[anode->interface_hdr->type];
265
266 vendor_data = devm_kzalloc(adev->dev, sizeof(struct cmn_vendor_data),
267 GFP_KERNEL);
268 vendor_data->node_type = type;
269 vendor_data->node_id = node_id;
270 vendor_data->logic_id = logic_id;
271
272 record->vendor_data = vendor_data;
273 record->vendor_data_size = sizeof(struct cmn_vendor_data);
274
275 aest_record_dbg(record, "base %llx\n", anode->interface_hdr->address);
276
277 return 0;
278 }
279
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-01-27 18:57 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-22 9:46 [PATCH v6 00/16] Support Armv8 RAS Extensions for Kernel-first error handling Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 01/16] ACPI/AEST: Parse the AEST table Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 02/16] ras: AEST: Add probe/remove for AEST driver Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 03/16] ras: AEST: support different group format Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 04/16] ras: AEST: Unify the read/write interface for system and MMIO register Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 05/16] ras: AEST: Probe RAS system architecture version Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 06/16] ras: AEST: Support RAS Common Fault Injection Model Extension Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 07/16] ras: AEST: Support CE threshold of error record Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 08/16] ras: AEST: Enable and register IRQs Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 09/16] ras: AEST: Add cpuhp callback Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 10/16] ras: AEST: Introduce AEST driver sysfs interface Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 11/16] ras: AEST: Add error count tracking and debugfs interface Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 12/16] ras: AEST: Allow configuring CE threshold via debugfs Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 13/16] ras: AEST: Introduce AEST inject interface to test AEST driver Ruidong Tian
2026-01-27 12:52 ` kernel test robot
2026-01-22 9:46 ` [PATCH v6 14/16] ras: AEST: Add framework to process AEST vendor node Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 15/16] ras: AEST: support vendor node CMN700 Ruidong Tian
2026-01-27 18:56 ` kernel test robot [this message]
2026-03-09 19:21 ` Robin Murphy
2026-03-13 9:49 ` Ruidong Tian
2026-01-22 9:46 ` [PATCH v6 16/16] trace, ras: add ARM RAS extension trace event Ruidong Tian
2026-03-09 13:28 ` [PATCH v6 00/16] Support Armv8 RAS Extensions for Kernel-first error handling Umang Chheda
2026-03-11 3:25 ` Ruidong Tian
2026-03-17 7:21 ` Umang Chheda
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=202601280228.CbJgYMRG-lkp@intel.com \
--to=lkp@intel.com \
--cc=bp@alien8.de \
--cc=catalin.marinas@arm.com \
--cc=guohanjun@huawei.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-edac@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=lpieralisi@kernel.org \
--cc=mark.rutland@arm.com \
--cc=mchehab@kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=oliver.yang@linux.alibaba.com \
--cc=rafael@kernel.org \
--cc=robin.murphy@arm.com \
--cc=sudeep.holla@arm.com \
--cc=tglx@linutronix.de \
--cc=tianruidong@linux.alibaba.com \
--cc=tony.luck@intel.com \
--cc=will@kernel.org \
--cc=xueshuai@linux.alibaba.com \
--cc=zhuo.song@linux.alibaba.com \
/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