All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kernel@openeuler.org, Jianquan Lin <linjianquan2@huawei.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: [openeuler:OLK-6.6 3163/3163] drivers/ub/ubfi/irq.c:18:26: error: 'struct dev_msi_info' has no member named 'domain'
Date: Thu, 13 Nov 2025 12:52:28 +0800	[thread overview]
Message-ID: <202511130841.AMzPRIEd-lkp@intel.com> (raw)

tree:   https://gitee.com/openeuler/kernel.git OLK-6.6
head:   fbfb361fe93de1a562df2ace860f64c4067abfdc
commit: 028a4161a77d2e15d331a13599a6f06cdd7490b6 [3163/3163] ub:ubfi: register ubc usi domain
config: x86_64-buildonly-randconfig-004-20251113 (https://download.01.org/0day-ci/archive/20251113/202511130841.AMzPRIEd-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/20251113/202511130841.AMzPRIEd-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/202511130841.AMzPRIEd-lkp@intel.com/

All errors (new ones prefixed by >>):

   drivers/ub/ubfi/irq.c: In function 'ub_update_msi_domain':
>> drivers/ub/ubfi/irq.c:18:26: error: 'struct dev_msi_info' has no member named 'domain'
      18 |         domain = dev->msi.domain;
         |                          ^


vim +18 drivers/ub/ubfi/irq.c

    11	
    12	int ub_update_msi_domain(struct device *dev,
    13				 enum irq_domain_bus_token bus_token)
    14	{
    15		struct fwnode_handle *fwnode;
    16		struct irq_domain *domain;
    17	
  > 18		domain = dev->msi.domain;
    19		if (!domain) {
    20			dev_err(dev, "find base irq domain failed!\n");
    21			return -ENODEV;
    22		}
    23	
    24		fwnode = domain->fwnode;
    25		if (!fwnode) {
    26			dev_err(dev, "find fwnode failed!\n");
    27			return -ENODEV;
    28		}
    29	
    30		domain = irq_find_matching_fwnode(fwnode, bus_token);
    31		if (!domain) {
    32			dev_err(dev, "find irq domain failed!\n");
    33			return -ENODEV;
    34		}
    35	
    36		/* Update msi domain with new bus_token */
    37		dev_set_msi_domain(dev, domain);
    38	
    39		return 0;
    40	}
    41	EXPORT_SYMBOL_GPL(ub_update_msi_domain);
    42	

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

                 reply	other threads:[~2025-11-13  4:53 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=202511130841.AMzPRIEd-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kernel@openeuler.org \
    --cc=linjianquan2@huawei.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.