mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Dheeraj Kumar Srivastava <dheerajkumar.srivastava@amd.com>,
	joro@8bytes.org, will@kernel.org, robin.murphy@arm.com,
	iommu@lists.linux.dev, linux-kernel@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, suravee.suthikulpanit@amd.com,
	Vasant.Hegde@amd.com, Santosh.Shukla@amd.com,
	Dheeraj Kumar Srivastava <dheerajkumar.srivastava@amd.com>
Subject: Re: [PATCH v2] iommu/amd: Enhance "Completion-wait Time-out" error message
Date: Sat, 25 Oct 2025 08:31:54 +0800	[thread overview]
Message-ID: <202510250855.7wiC1wSz-lkp@intel.com> (raw)
In-Reply-To: <20251024061041.707-1-dheerajkumar.srivastava@amd.com>

Hi Dheeraj,

kernel test robot noticed the following build warnings:

[auto build test WARNING on linus/master]
[also build test WARNING on v6.18-rc2 next-20251024]
[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/Dheeraj-Kumar-Srivastava/iommu-amd-Enhance-Completion-wait-Time-out-error-message/20251024-141312
base:   linus/master
patch link:    https://lore.kernel.org/r/20251024061041.707-1-dheerajkumar.srivastava%40amd.com
patch subject: [PATCH v2] iommu/amd: Enhance "Completion-wait Time-out" error message
config: x86_64-buildonly-randconfig-003-20251025 (https://download.01.org/0day-ci/archive/20251025/202510250855.7wiC1wSz-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251025/202510250855.7wiC1wSz-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/202510250855.7wiC1wSz-lkp@intel.com/

All warnings (new ones prefixed by >>):

   drivers/iommu/amd/iommu.c: In function 'wait_on_sem':
>> drivers/iommu/amd/iommu.c:1171:21: warning: variable 'head' set but not used [-Wunused-but-set-variable]
    1171 |                 int head, tail;
         |                     ^~~~


vim +/head +1171 drivers/iommu/amd/iommu.c

  1153	
  1154	/****************************************************************************
  1155	 *
  1156	 * IOMMU command queuing functions
  1157	 *
  1158	 ****************************************************************************/
  1159	
  1160	static int wait_on_sem(struct amd_iommu *iommu, u64 data)
  1161	{
  1162		struct iommu_cmd *cmd;
  1163		int i = 0;
  1164	
  1165		while (*iommu->cmd_sem != data && i < LOOP_TIMEOUT) {
  1166			udelay(1);
  1167			i += 1;
  1168		}
  1169	
  1170		if (i == LOOP_TIMEOUT) {
> 1171			int head, tail;
  1172	
  1173			head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
  1174			tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
  1175	
  1176			pr_alert("IOMMU %04x:%02x:%02x.%01x: Completion-Wait loop timed out\n",
  1177				 iommu->pci_seg->id, PCI_BUS_NUM(iommu->devid),
  1178				 PCI_SLOT(iommu->devid), PCI_FUNC(iommu->devid));
  1179			/*
  1180			 * On command buffer completion timeout, step back by 2 commands
  1181			 * to locate the actual command that is causing the issue.
  1182			 */
  1183			tail = (MMIO_CMD_BUFFER_TAIL(tail) - 2) & (CMD_BUFFER_ENTRIES - 1);
  1184			cmd = (struct iommu_cmd *)(iommu->cmd_buf + tail * sizeof(*cmd));
  1185			dump_command(iommu_virt_to_phys(cmd));
  1186	
  1187			return -EIO;
  1188		}
  1189	
  1190		return 0;
  1191	}
  1192	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

      reply	other threads:[~2025-10-25  0:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-24  6:10 Dheeraj Kumar Srivastava
2025-10-25  0:31 ` kernel test robot [this message]

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=202510250855.7wiC1wSz-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=Santosh.Shukla@amd.com \
    --cc=Vasant.Hegde@amd.com \
    --cc=dheerajkumar.srivastava@amd.com \
    --cc=iommu@lists.linux.dev \
    --cc=joro@8bytes.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=robin.murphy@arm.com \
    --cc=suravee.suthikulpanit@amd.com \
    --cc=will@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®