linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Mario Limonciello (AMD)" <superm1@kernel.org>,
	"Rafael J . Wysocki" <rafael@kernel.org>,
	Bjorn Helgaas <helgaas@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, "Pavel Machek" <pavel@kernel.org>,
	"Len Brown" <lenb@kernel.org>,
	"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	"Danilo Krummrich" <dakr@kernel.org>,
	"Christian König" <christian.koenig@amd.com>,
	"James E . J . Bottomley" <James.Bottomley@hansenpartnership.com>,
	"Martin K . Petersen" <martin.petersen@oracle.com>,
	"Steven Rostedt" <rostedt@goodmis.org>,
	"(open list:HIBERNATION (aka Software Suspend,
	aka swsusp))" <linux-pm@vger.kernel.org>,
	amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
	linux-pci@vger.kernel.org, linux-scsi@vger.kernel.org,
	linux-usb@vger.kernel.org, linux-trace-kernel@vger.kernel.org,
	"AceLan Kao" <acelan.kao@canonical.com>,
	"Kai-Heng Feng" <kaihengf@nvidia.com>,
	"Mark Pearson" <mpearson-lenovo@squebb.ca>,
	"Merthan Karakaş" <m3rthn.k@gmail.com>,
	"Eric Naim" <dnaim@cachyos.org>,
	"Mario Limonciello (AMD)" <superm1@kernel.org>
Subject: Re: [PATCH v5 04/11] USB: Pass PMSG_POWEROFF event to suspend_common() for poweroff with S4 flow
Date: Wed, 13 Aug 2025 00:23:28 +0800	[thread overview]
Message-ID: <202508130049.aA2DXgHW-lkp@intel.com> (raw)
In-Reply-To: <20250811194102.864225-5-superm1@kernel.org>

Hi Mario,

kernel test robot noticed the following build errors:

[auto build test ERROR on 8f5ae30d69d7543eee0d70083daf4de8fe15d585]

url:    https://github.com/intel-lab-lkp/linux/commits/Mario-Limonciello-AMD/PM-Introduce-new-PMSG_POWEROFF-event/20250812-034228
base:   8f5ae30d69d7543eee0d70083daf4de8fe15d585
patch link:    https://lore.kernel.org/r/20250811194102.864225-5-superm1%40kernel.org
patch subject: [PATCH v5 04/11] USB: Pass PMSG_POWEROFF event to suspend_common() for poweroff with S4 flow
config: i386-randconfig-013-20250812 (https://download.01.org/0day-ci/archive/20250813/202508130049.aA2DXgHW-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14+deb12u1) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250813/202508130049.aA2DXgHW-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/202508130049.aA2DXgHW-lkp@intel.com/

All errors (new ones prefixed by >>):

>> drivers/usb/core/hcd-pci.c:650:27: error: 'hcd_pci_poweroff' undeclared here (not in a function); did you mean 'hcd_pci_poweroff_late'?
     650 |         .poweroff       = hcd_pci_poweroff,
         |                           ^~~~~~~~~~~~~~~~
         |                           hcd_pci_poweroff_late


vim +650 drivers/usb/core/hcd-pci.c

   640	
   641	const struct dev_pm_ops usb_hcd_pci_pm_ops = {
   642		.suspend	= hcd_pci_suspend,
   643		.suspend_noirq	= hcd_pci_suspend_noirq,
   644		.resume_noirq	= hcd_pci_resume_noirq,
   645		.resume		= hcd_pci_resume,
   646		.freeze		= hcd_pci_freeze,
   647		.freeze_noirq	= check_root_hub_suspended,
   648		.thaw_noirq	= NULL,
   649		.thaw		= hcd_pci_resume,
 > 650		.poweroff	= hcd_pci_poweroff,
   651		.poweroff_late	= hcd_pci_poweroff_late,
   652		.poweroff_noirq	= hcd_pci_suspend_noirq,
   653		.restore_noirq	= hcd_pci_resume_noirq,
   654		.restore	= hcd_pci_restore,
   655		.runtime_suspend = hcd_pci_runtime_suspend,
   656		.runtime_resume	= hcd_pci_runtime_resume,
   657	};
   658	EXPORT_SYMBOL_GPL(usb_hcd_pci_pm_ops);
   659	

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

  reply	other threads:[~2025-08-12 16:24 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-11 19:40 [PATCH v5 00/11] Improvements to S5 power consumption Mario Limonciello (AMD)
2025-08-11 19:40 ` [PATCH v5 01/11] PM: Introduce new PMSG_POWEROFF event Mario Limonciello (AMD)
2025-08-11 19:40 ` [PATCH v5 02/11] scsi: Add PM_EVENT_POWEROFF into suspend callbacks Mario Limonciello (AMD)
2025-08-11 19:40 ` [PATCH v5 03/11] usb: sl811-hcd: " Mario Limonciello (AMD)
2025-08-11 19:40 ` [PATCH v5 04/11] USB: Pass PMSG_POWEROFF event to suspend_common() for poweroff with S4 flow Mario Limonciello (AMD)
2025-08-12 16:23   ` kernel test robot [this message]
2025-08-11 19:40 ` [PATCH v5 05/11] PCI: PM: Disable device wakeups when halting system through " Mario Limonciello (AMD)
2025-08-11 19:40 ` [PATCH v5 06/11] PCI: PM: Split out code from pci_pm_suspend_noirq() into helper Mario Limonciello (AMD)
2025-08-11 19:40 ` [PATCH v5 07/11] PCI: PM: Run bridge power up actions as part of restore phase Mario Limonciello (AMD)
2025-08-11 19:40 ` [PATCH v5 08/11] PCI: PM: Use pci_power_manageable() in pci_pm_poweroff_noirq() Mario Limonciello (AMD)
2025-08-11 19:41 ` [PATCH v5 09/11] PCI: Put PCIe ports with downstream devices into D3 at hibernate Mario Limonciello (AMD)
2025-08-11 19:41 ` [PATCH v5 10/11] drm/amd: Avoid evicting resources at S5 Mario Limonciello (AMD)
2025-08-11 19:41 ` [PATCH v5 11/11] PM: Use hibernate flows for system power off Mario Limonciello (AMD)

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=202508130049.aA2DXgHW-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=James.Bottomley@hansenpartnership.com \
    --cc=acelan.kao@canonical.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=christian.koenig@amd.com \
    --cc=dakr@kernel.org \
    --cc=dnaim@cachyos.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=helgaas@kernel.org \
    --cc=kaihengf@nvidia.com \
    --cc=lenb@kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=linux-trace-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=m3rthn.k@gmail.com \
    --cc=martin.petersen@oracle.com \
    --cc=mpearson-lenovo@squebb.ca \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=pavel@kernel.org \
    --cc=rafael@kernel.org \
    --cc=rostedt@goodmis.org \
    --cc=superm1@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;
as well as URLs for NNTP newsgroup(s).