All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Dan Williams <dan.j.williams@intel.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v8 9/9] PCI/TSM: Report active IDE streams
Date: Tue, 4 Nov 2025 21:24:21 +0800	[thread overview]
Message-ID: <202511042139.GgeNKhRY-lkp@intel.com> (raw)
In-Reply-To: <20251031212902.2256310-10-dan.j.williams@intel.com>

Hi Dan,

kernel test robot noticed the following build errors:

[auto build test ERROR on 211ddde0823f1442e4ad052a2f30f050145ccada]

url:    https://github.com/intel-lab-lkp/linux/commits/Dan-Williams/coco-tsm-Introduce-a-core-device-for-TEE-Security-Managers/20251101-053254
base:   211ddde0823f1442e4ad052a2f30f050145ccada
patch link:    https://lore.kernel.org/r/20251031212902.2256310-10-dan.j.williams%40intel.com
patch subject: [PATCH v8 9/9] PCI/TSM: Report active IDE streams
config: sparc-randconfig-r064-20251104 (https://download.01.org/0day-ci/archive/20251104/202511042139.GgeNKhRY-lkp@intel.com/config)
compiler: sparc-linux-gcc (GCC) 15.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251104/202511042139.GgeNKhRY-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/202511042139.GgeNKhRY-lkp@intel.com/

All errors (new ones prefixed by >>):

   sparc-linux-ld: drivers/pci/ide.o: in function `pci_ide_stream_release':
>> drivers/pci/ide.c:266:(.text+0x498): undefined reference to `tsm_ide_stream_unregister'
   sparc-linux-ld: drivers/pci/tsm.o: in function `connect_store':
   drivers/pci/tsm.c:256:(.text+0xbdc): undefined reference to `find_tsm_dev'

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for TSM
   Depends on [n]: VIRT_DRIVERS [=n]
   Selected by [y]:
   - PCI_TSM [=y] && PCI [=y]


vim +266 drivers/pci/ide.c

   242	
   243	/**
   244	 * pci_ide_stream_release() - unwind and release an @ide context
   245	 * @ide: partially or fully registered IDE settings descriptor
   246	 *
   247	 * In support of automatic cleanup of IDE setup routines perform IDE
   248	 * teardown in expected reverse order of setup and with respect to which
   249	 * aspects of IDE setup have successfully completed.
   250	 *
   251	 * Be careful that setup order mirrors this shutdown order. Otherwise,
   252	 * open code releasing the IDE context.
   253	 */
   254	void pci_ide_stream_release(struct pci_ide *ide)
   255	{
   256		struct pci_dev *pdev = ide->pdev;
   257		struct pci_dev *rp = pcie_find_root_port(pdev);
   258	
   259		if (ide->partner[PCI_IDE_RP].enable)
   260			pci_ide_stream_disable(rp, ide);
   261	
   262		if (ide->partner[PCI_IDE_EP].enable)
   263			pci_ide_stream_disable(pdev, ide);
   264	
   265		if (ide->tsm_dev)
 > 266			tsm_ide_stream_unregister(ide);
   267	
   268		if (ide->partner[PCI_IDE_RP].setup)
   269			pci_ide_stream_teardown(rp, ide);
   270	
   271		if (ide->partner[PCI_IDE_EP].setup)
   272			pci_ide_stream_teardown(pdev, ide);
   273	
   274		if (ide->name)
   275			pci_ide_stream_unregister(ide);
   276	
   277		pci_ide_stream_free(ide);
   278	}
   279	EXPORT_SYMBOL_GPL(pci_ide_stream_release);
   280	

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

  reply	other threads:[~2025-11-04 13:25 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-31 21:28 [PATCH v8 0/9] PCI/TSM: Core infrastructure for PCI device security (TDISP) Dan Williams
2025-10-31 21:28 ` [PATCH v8 1/9] coco/tsm: Introduce a core device for TEE Security Managers Dan Williams
2025-11-08 15:45   ` Xu Yilun
2025-10-31 21:28 ` [PATCH v8 2/9] PCI/IDE: Enumerate Selective Stream IDE capabilities Dan Williams
2025-11-08 16:15   ` Xu Yilun
2025-10-31 21:28 ` [PATCH v8 3/9] PCI: Introduce pci_walk_bus_reverse(), for_each_pci_dev_reverse() Dan Williams
2025-10-31 21:28 ` [PATCH v8 4/9] PCI/TSM: Establish Secure Sessions and Link Encryption Dan Williams
2025-11-04 10:46   ` kernel test robot
2025-11-10  3:44   ` Xu Yilun
2025-11-10 23:19     ` dan.j.williams
2025-10-31 21:28 ` [PATCH v8 5/9] PCI: Add PCIe Device 3 Extended Capability enumeration Dan Williams
2025-11-10  3:45   ` Xu Yilun
2025-10-31 21:28 ` [PATCH v8 6/9] PCI: Establish document for PCI host bridge sysfs attributes Dan Williams
2025-10-31 21:28 ` [PATCH v8 7/9] PCI/IDE: Add IDE establishment helpers Dan Williams
2025-11-03 15:04   ` Jonathan Cameron
2025-11-10  4:16   ` Xu Yilun
2025-11-10 23:21     ` dan.j.williams
2025-10-31 21:29 ` [PATCH v8 8/9] PCI/IDE: Report available IDE streams Dan Williams
2025-11-10  4:49   ` Xu Yilun
2025-11-10 23:49     ` dan.j.williams
2025-10-31 21:29 ` [PATCH v8 9/9] PCI/TSM: Report active " Dan Williams
2025-11-04 13:24   ` kernel test robot [this message]
2025-11-10  4:52   ` Xu Yilun

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=202511042139.GgeNKhRY-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=dan.j.williams@intel.com \
    --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.