From: kernel test robot <lkp@intel.com>
To: Yunhui Cui <cuiyunhui@bytedance.com>,
arnd@arndb.de, andriy.shevchenko@linux.intel.com,
benjamin.larsson@genexis.eu, gregkh@linuxfoundation.org,
heikki.krogerus@linux.intel.com, ilpo.jarvinen@linux.intel.com,
jirislaby@kernel.org, jkeeping@inmusicbrands.com,
john.ogness@linutronix.de, linux-kernel@vger.kernel.org,
linux-serial@vger.kernel.org, markus.mayer@linaro.org,
matt.porter@linaro.org, namcao@linutronix.de, paulmck@kernel.org,
pmladek@suse.com, schnelle@linux.ibm.com,
sunilvl@ventanamicro.com, tim.kryger@linaro.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v4 2/4] serial: 8250: introduce serial8250_discard_data()
Date: Sat, 26 Apr 2025 13:59:57 +0800 [thread overview]
Message-ID: <202504261327.CEtXsr6g-lkp@intel.com> (raw)
In-Reply-To: <20250425062425.68761-2-cuiyunhui@bytedance.com>
Hi Yunhui,
kernel test robot noticed the following build errors:
[auto build test ERROR on soc/for-next]
[cannot apply to tty/tty-testing tty/tty-next tty/tty-linus usb/usb-testing usb/usb-next usb/usb-linus linus/master v6.15-rc3 next-20250424]
[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/Yunhui-Cui/serial-8250-introduce-serial8250_discard_data/20250425-142655
base: https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git for-next
patch link: https://lore.kernel.org/r/20250425062425.68761-2-cuiyunhui%40bytedance.com
patch subject: [PATCH v4 2/4] serial: 8250: introduce serial8250_discard_data()
config: hexagon-allmodconfig (https://download.01.org/0day-ci/archive/20250426/202504261327.CEtXsr6g-lkp@intel.com/config)
compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project 6009708b4367171ccdbf4b5905cb6a803753fe18)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250426/202504261327.CEtXsr6g-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/202504261327.CEtXsr6g-lkp@intel.com/
All errors (new ones prefixed by >>):
>> drivers/tty/serial/8250/8250_port.c:2146:32: error: use of undeclared identifier 'flags'
2146 | uart_port_lock_irqsave(port, &flags);
| ^
drivers/tty/serial/8250/8250_port.c:2150:36: error: use of undeclared identifier 'flags'
2150 | uart_port_unlock_irqrestore(port, flags);
| ^
2 errors generated.
vim +/flags +2146 drivers/tty/serial/8250/8250_port.c
2131
2132 #ifdef CONFIG_CONSOLE_POLL
2133 /*
2134 * Console polling routines for writing and reading from the uart while
2135 * in an interrupt or debug context.
2136 */
2137
2138 static int serial8250_get_poll_char(struct uart_port *port)
2139 {
2140 struct uart_8250_port *up = up_to_u8250p(port);
2141 int status = NO_POLL_CHAR;
2142 u16 lsr;
2143
2144 serial8250_rpm_get(up);
2145
> 2146 uart_port_lock_irqsave(port, &flags);
2147 lsr = serial_port_in(port, UART_LSR);
2148 if ((lsr & UART_LSR_DR))
2149 status = serial_port_in(port, UART_RX);
2150 uart_port_unlock_irqrestore(port, flags);
2151 out:
2152 serial8250_rpm_put(up);
2153 return status;
2154 }
2155
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-04-26 6:00 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-25 6:24 [PATCH v4 1/4] serial: 8250: fix panic due to PSLVERR Yunhui Cui
2025-04-25 6:24 ` [PATCH v4 2/4] serial: 8250: introduce serial8250_discard_data() Yunhui Cui
2025-04-25 6:48 ` Jiri Slaby
2025-05-06 10:38 ` [External] " yunhui cui
2025-04-25 8:22 ` John Ogness
2025-04-26 4:47 ` kernel test robot
2025-04-26 5:59 ` kernel test robot [this message]
2025-04-25 6:24 ` [PATCH v4 3/4] serial: 8250: warning on entering dw8250_force_idle unlocked Yunhui Cui
2025-04-25 6:24 ` [PATCH v4 4/4] serial: 8250_dw: fix PSLVERR on RX_TIMEOUT Yunhui Cui
2025-04-25 6:41 ` Jiri Slaby
2025-04-25 6:43 ` Jiri Slaby
2025-04-27 11:17 ` [External] " yunhui cui
2025-04-29 3:41 ` yunhui cui
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=202504261327.CEtXsr6g-lkp@intel.com \
--to=lkp@intel.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=arnd@arndb.de \
--cc=benjamin.larsson@genexis.eu \
--cc=cuiyunhui@bytedance.com \
--cc=gregkh@linuxfoundation.org \
--cc=heikki.krogerus@linux.intel.com \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=jirislaby@kernel.org \
--cc=jkeeping@inmusicbrands.com \
--cc=john.ogness@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=markus.mayer@linaro.org \
--cc=matt.porter@linaro.org \
--cc=namcao@linutronix.de \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=paulmck@kernel.org \
--cc=pmladek@suse.com \
--cc=schnelle@linux.ibm.com \
--cc=sunilvl@ventanamicro.com \
--cc=tim.kryger@linaro.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