From: kernel test robot <lkp@intel.com>
To: Andrew Jones <andrew.jones@oss.qualcomm.com>
Cc: oe-kbuild-all@lists.linux.dev, Anup Patel <anup@brainfault.org>
Subject: [avpatel:riscv_trace_support_v5 59/108] drivers/iommu/riscv/iommu-ir.c:325:27: error: implicit declaration of function 'virt_to_pfn'; did you mean 'virt_to_phys'?
Date: Fri, 14 Aug 2026 14:37:11 +0800 [thread overview]
Message-ID: <202608141436.HEryshDf-lkp@intel.com> (raw)
tree: https://github.com/avpatel/linux.git riscv_trace_support_v5
head: d5f1be8d8fd44129a93976f98cc0153408015030
commit: 1e5a582db6a5ae1479214eeb2f2d37b2f85928db [59/108] iommu/riscv: Add guest file irqbypass support
config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20260814/202608141436.HEryshDf-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 16.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260814/202608141436.HEryshDf-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/202608141436.HEryshDf-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/iommu/riscv/iommu-ir.c: In function 'riscv_iommu_ir_msiptp_update':
>> drivers/iommu/riscv/iommu-ir.c:325:27: error: implicit declaration of function 'virt_to_pfn'; did you mean 'virt_to_phys'? [-Wimplicit-function-declaration]
325 | .msiptp = virt_to_pfn(domain->msi_root) |
| ^~~~~~~~~~~
| virt_to_phys
vim +325 drivers/iommu/riscv/iommu-ir.c
306
307 static void riscv_iommu_ir_msiptp_update(struct riscv_iommu_domain *domain)
308 {
309 struct pt_iommu_riscv_64_hw_info pt_info, gstage_info;
310 struct riscv_iommu_device *iommu, *prev;
311 struct riscv_iommu_bond *bond;
312 struct riscv_iommu_dc new_dc;
313
314 pt_iommu_riscv_64_hw_info(&domain->riscvpt, &pt_info);
315 pt_iommu_riscv_64_hw_info(&domain->gstage_riscvpt, &gstage_info);
316
317 new_dc = (struct riscv_iommu_dc){
318 .ta = FIELD_PREP(RISCV_IOMMU_PC_TA_PSCID, domain->pscid) |
319 RISCV_IOMMU_PC_TA_V,
320 .iohgatp = FIELD_PREP(RISCV_IOMMU_DC_IOHGATP_MODE, gstage_info.fsc_iosatp_mode) |
321 FIELD_PREP(RISCV_IOMMU_DC_IOHGATP_GSCID, domain->gscid) |
322 FIELD_PREP(RISCV_IOMMU_DC_IOHGATP_PPN, gstage_info.ppn),
323 .fsc = FIELD_PREP(RISCV_IOMMU_PC_FSC_MODE, pt_info.fsc_iosatp_mode) |
324 FIELD_PREP(RISCV_IOMMU_PC_FSC_PPN, pt_info.ppn),
> 325 .msiptp = virt_to_pfn(domain->msi_root) |
326 FIELD_PREP(RISCV_IOMMU_DC_MSIPTP_MODE,
327 RISCV_IOMMU_DC_MSIPTP_MODE_FLAT),
328 .msi_addr_mask = domain->msi_addr_mask,
329 .msi_addr_pattern = domain->msi_addr_pattern,
330 };
331
332 /* Like riscv_iommu_ir_msitbl_inval(), synchronize with riscv_iommu_bond_link() */
333 smp_mb();
334
335 rcu_read_lock();
336
337 prev = NULL;
338 list_for_each_entry_rcu(bond, &domain->bonds, list) {
339 iommu = dev_to_iommu(bond->dev);
340 if (iommu == prev)
341 continue;
342
343 riscv_iommu_iodir_update(iommu, bond->dev, &new_dc);
344 prev = iommu;
345 }
346
347 rcu_read_unlock();
348 }
349
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
reply other threads:[~2026-08-14 6:37 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=202608141436.HEryshDf-lkp@intel.com \
--to=lkp@intel.com \
--cc=andrew.jones@oss.qualcomm.com \
--cc=anup@brainfault.org \
--cc=oe-kbuild-all@lists.linux.dev \
/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.