From: kernel test robot <lkp@intel.com>
To: Andrea Tomassetti <andrea.tomassetti@sipearl.com>,
sudeep.holla@arm.com, jassisinghbrar@gmail.com,
rafael@kernel.org
Cc: oe-kbuild-all@lists.linux.dev,
Andrea Tomassetti <andrea.tomassetti@sipearl.com>,
lenb@kernel.org, linux-acpi@vger.kernel.org,
linux-kernel@vger.kernel.org, olivierdautricourt@gmail.com,
Thibault Cantori <thibault.cantori@sipearl.com>,
Olivier Dautricourt <olivier.dautricourt@sipearl.com>
Subject: Re: [PATCH] mailbox: pcc: support polling mode when there is no platform IRQ
Date: Wed, 12 Nov 2025 02:29:37 +0800 [thread overview]
Message-ID: <202511120243.soxAFpqQ-lkp@intel.com> (raw)
In-Reply-To: <20251110150825.3548819-1-andrea.tomassetti@sipearl.com>
Hi Andrea,
kernel test robot noticed the following build warnings:
[auto build test WARNING on rafael-pm/linux-next]
[also build test WARNING on rafael-pm/bleeding-edge jassibrar-mailbox/for-next linus/master v6.18-rc5 next-20251111]
[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/Andrea-Tomassetti/mailbox-pcc-support-polling-mode-when-there-is-no-platform-IRQ/20251110-232950
base: https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git linux-next
patch link: https://lore.kernel.org/r/20251110150825.3548819-1-andrea.tomassetti%40sipearl.com
patch subject: [PATCH] mailbox: pcc: support polling mode when there is no platform IRQ
config: i386-randconfig-061-20251111 (https://download.01.org/0day-ci/archive/20251112/202511120243.soxAFpqQ-lkp@intel.com/config)
compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251112/202511120243.soxAFpqQ-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/202511120243.soxAFpqQ-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> drivers/acpi/acpi_pcc.c:89:70: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected void *mssg @@ got void [noderef] __iomem *shmem @@
drivers/acpi/acpi_pcc.c:89:70: sparse: expected void *mssg
drivers/acpi/acpi_pcc.c:89:70: sparse: got void [noderef] __iomem *shmem
vim +89 drivers/acpi/acpi_pcc.c
83
84 static acpi_status
85 acpi_pcc_send_msg_polling(struct pcc_data *data)
86 {
87 int ret;
88
> 89 ret = mbox_send_message(data->pcc_chan->mchan, data->pcc_chan->shmem);
90 if (ret == -ETIME) {
91 pr_err("PCC command executed timeout!\n");
92 return AE_TIME;
93 }
94
95 if (ret < 0)
96 return AE_ERROR;
97
98 if (!mbox_client_peek_data(data->pcc_chan->mchan))
99 return AE_ERROR;
100
101 return AE_OK;
102 }
103
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-11-11 18:30 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-10 15:08 [PATCH] mailbox: pcc: support polling mode when there is no platform IRQ Andrea Tomassetti
2025-11-11 18:29 ` kernel test robot [this message]
2025-11-11 21:47 ` kernel test robot
2025-11-12 0:07 ` kernel test robot
2025-11-19 9:01 ` [PATCH v2] " Andrea Tomassetti
2025-11-27 14:51 ` Sudeep Holla
2025-12-02 10:12 ` [PATCH v3 1/2] " Andrea Tomassetti
2025-12-03 10:28 ` Sudeep Holla
2025-12-04 12:59 ` Andrea Tomassetti
2025-12-04 13:14 ` Sudeep Holla
2025-12-09 10:39 ` Andrea Tomassetti
2025-12-09 11:11 ` Sudeep Holla
2025-12-02 10:12 ` [PATCH v3 2/2] mailbox: pcc: add peek_data handler Andrea Tomassetti
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=202511120243.soxAFpqQ-lkp@intel.com \
--to=lkp@intel.com \
--cc=andrea.tomassetti@sipearl.com \
--cc=jassisinghbrar@gmail.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=olivier.dautricourt@sipearl.com \
--cc=olivierdautricourt@gmail.com \
--cc=rafael@kernel.org \
--cc=sudeep.holla@arm.com \
--cc=thibault.cantori@sipearl.com \
/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