All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Duan Chenghao <duanchenghao@kylinos.cn>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v3] USB: Fix the issue of task recovery failure caused by USB status when S4 wakes up
Date: Tue, 15 Oct 2024 17:32:18 +0800	[thread overview]
Message-ID: <202410151722.rfjtknRz-lkp@intel.com> (raw)
In-Reply-To: <20241012094633.126736-1-duanchenghao@kylinos.cn>

Hi Duan,

kernel test robot noticed the following build errors:

[auto build test ERROR on usb/usb-testing]
[also build test ERROR on usb/usb-next usb/usb-linus rafael-pm/linux-next rafael-pm/bleeding-edge linus/master v6.12-rc3 next-20241014]
[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/Duan-Chenghao/USB-Fix-the-issue-of-task-recovery-failure-caused-by-USB-status-when-S4-wakes-up/20241012-174830
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing
patch link:    https://lore.kernel.org/r/20241012094633.126736-1-duanchenghao%40kylinos.cn
patch subject: [PATCH v3] USB: Fix the issue of task recovery failure caused by USB status when S4 wakes up
config: i386-randconfig-004-20241015 (https://download.01.org/0day-ci/archive/20241015/202410151722.rfjtknRz-lkp@intel.com/config)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241015/202410151722.rfjtknRz-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/202410151722.rfjtknRz-lkp@intel.com/

All errors (new ones prefixed by >>):

>> drivers/usb/core/hcd-pci.c:637:13: error: use of undeclared identifier 'hcd_pci_freeze'
     637 |         .freeze         = hcd_pci_freeze,
         |                           ^
   1 error generated.

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for GET_FREE_REGION
   Depends on [n]: SPARSEMEM [=n]
   Selected by [m]:
   - RESOURCE_KUNIT_TEST [=m] && RUNTIME_TESTING_MENU [=y] && KUNIT [=m]


vim +/hcd_pci_freeze +637 drivers/usb/core/hcd-pci.c

   631	
   632	const struct dev_pm_ops usb_hcd_pci_pm_ops = {
   633		.suspend	= hcd_pci_suspend,
   634		.suspend_noirq	= hcd_pci_suspend_noirq,
   635		.resume_noirq	= hcd_pci_resume_noirq,
   636		.resume		= hcd_pci_resume,
 > 637		.freeze		= hcd_pci_freeze,
   638		.freeze_noirq	= check_root_hub_suspended,
   639		.thaw_noirq	= NULL,
   640		.thaw		= hcd_pci_resume,
   641		.poweroff	= hcd_pci_suspend,
   642		.poweroff_late	= hcd_pci_poweroff_late,
   643		.poweroff_noirq	= hcd_pci_suspend_noirq,
   644		.restore_noirq	= hcd_pci_resume_noirq,
   645		.restore	= hcd_pci_restore,
   646		.runtime_suspend = hcd_pci_runtime_suspend,
   647		.runtime_resume	= hcd_pci_runtime_resume,
   648	};
   649	EXPORT_SYMBOL_GPL(usb_hcd_pci_pm_ops);
   650	

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

  parent reply	other threads:[~2024-10-15  9:32 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-06  3:05 [PATCH] USB: Fix the issue of task recovery failure caused by USB status when S4 wakes up Duan Chenghao
2024-09-06 14:05 ` Alan Stern
     [not found] ` <1725931490447646.3.seg@mailgw.kylinos.cn>
2024-09-10  9:34   ` duanchenghao
2024-09-10  9:36   ` duanchenghao
2024-09-11 14:40     ` Alan Stern
2024-09-12  3:21       ` duanchenghao
2024-09-12  6:26         ` [PATCH v2] " Duan Chenghao
2024-09-12 15:00         ` [PATCH] " Alan Stern
2024-09-13  1:51           ` duanchenghao
2024-09-13  9:38             ` duanchenghao
2024-09-14  2:43           ` Hongyu Xie
2024-09-23  8:00             ` duanchenghao
2024-09-24 13:38               ` Alan Stern
2024-09-29  3:14                 ` duanchenghao
2024-10-09  1:19                   ` duanchenghao
2024-10-09  1:54                     ` Alan Stern
2024-10-09  2:35                 ` duanchenghao
2024-10-09  6:29                   ` Gopal, Saranya
2024-10-09 15:50                   ` Alan Stern
2024-10-10  5:53                     ` duanchenghao
2024-10-10  5:59                     ` duanchenghao
2024-10-10 14:21                       ` Alan Stern
2024-10-11  1:42                         ` duanchenghao
2024-10-11 13:53                           ` Alan Stern
2024-10-12  9:46                             ` [PATCH v3] " Duan Chenghao
2024-10-12 12:39                               ` Greg KH
2024-10-12 12:40                               ` Greg KH
2024-10-12 15:06                                 ` Alan Stern
2024-10-15  2:08                               ` kernel test robot
2024-10-15  9:32                               ` kernel test robot [this message]
2024-10-12  9:51                             ` [PATCH] " duanchenghao
2024-10-12 15:01                               ` Alan Stern
2024-10-14  1:32                                 ` duanchenghao
2024-10-14  1:41                                 ` duanchenghao
2024-10-14  4:10                                   ` Gopal, Saranya
2024-10-16  8:57                                   ` Gopal, Saranya
2024-10-16  9:06                                     ` duanchenghao
2024-10-24  2:40                                       ` [PATCH v4] " Duan Chenghao
2024-10-24  2:53                                         ` duanchenghao
2024-10-24  7:05                                         ` Greg KH
2024-10-24  8:46                                           ` duanchenghao
2024-10-29  3:27                                             ` Greg KH
2024-10-29  8:01                                               ` duanchenghao
2024-11-06  1:29                                                 ` duanchenghao
2024-11-21 19:09                                                   ` Greg KH
2024-11-20  2:14                                               ` 回复:[PATCH " Duan Chenghao

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=202410151722.rfjtknRz-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=duanchenghao@kylinos.cn \
    --cc=llvm@lists.linux.dev \
    --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.