From: Tony Lindgren <tony@atomide.com>
To: kernel test robot <oliver.sang@intel.com>
Cc: oe-lkp@lists.linux.dev, lkp@intel.com,
"Andy Shevchenko" <andriy.shevchenko@linux.intel.com>,
linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Jiri Slaby" <jirislaby@kernel.org>,
"Andy Shevchenko" <andriy.shevchenko@intel.com>,
"Dhruva Gole" <d-gole@ti.com>,
"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
"John Ogness" <john.ogness@linutronix.de>,
"Johan Hovold" <johan@kernel.org>,
"Sebastian Andrzej Siewior" <bigeasy@linutronix.de>,
"Vignesh Raghavendra" <vigneshr@ti.com>
Subject: Re: [PATCH v5 3/3] serial: core: Fix serial core controller port name to show controller id
Date: Wed, 2 Aug 2023 12:23:54 +0300 [thread overview]
Message-ID: <20230802092354.GC14799@atomide.com> (raw)
In-Reply-To: <202308021529.35b3ad6c-oliver.sang@intel.com>
* kernel test robot <oliver.sang@intel.com> [230802 08:16]:
> from serial, we observed last print out is:
>
> [ 15.584772][ T954] EDAC MC0: Giving out device to module skx_edac controller Skylake Socket#0 IMC#0: DEV 0000:3a:0a.0 (INTERRUPT)
> [ 15.597328][ T954] EDAC MC1: Giving out device to module skx_edac controller Skylake Socket#0 IMC#1: DEV 0000:3a:0c.0 (INTERRUPT)
> [ 15.610326][ T954] EDAC MC2: Giving out device to module skx_edac controller Skylake Socket#1 IMC#0: DEV 0000:ae:0a.0 (INTERRUPT)
> [ 15.623375][ T954] EDAC MC3: Giving out device to module skx_edac controller Skylake Socket#1 IMC#1: DEV 0000:ae:0c.0 (INTERRUPT)
> [ 15.640145][ T19] intel_rapl_common: Found RAPL domain package
> [ 15.655890][ T19] intel_rapl_common: Found RAPL domain dram
> [ 15.661983][ T19] intel_rapl_common: package-0:package:long_term locked by BIOS
> [ 15.678564][ T19] intel_rapl_common: package-0:package:short_term locked by BIOS
> [ 15.695259][ T19] intel_rapl_common: package-0:dram:long_term locked by BIOS
> [ 15.713068][ T158] intel_rapl_common: Found RAPL domain package
> [ 15.728719][ T158] intel_rapl_common: Found RAPL domain dram
> [ 15.734743][ T158] intel_rapl_common: package-1:package:long_term locked by BIOS
> [ 15.745244][ T1154] raid6: avx512x4 gen() 18153 MB/s
> [ 15.761297][ T158] intel_rapl_common: package-1:package:short_term locked by BIOS
> [ 15.767244][ T1154] raid6: avx512x2 gen() 18130 MB/s
> [ 15.768866][ T158] intel_rapl_common: package-1:dram:long_term locked by BIOS
> [ 15.790243][ T1154] raid6: avx512x1 gen() 18155 MB/s
> [ 15.812245][ T1154] raid6: avx2x4 gen() 18060 MB/s
> [ 15.834244][ T1154] raid6: avx2x2 gen() 18076 MB/s
> [ 15.856244][ T1154] raid6: avx2x1 gen() 13836 MB/s
> [ 15.861474][ T1154] raid6: using algorithm avx512x1 gen() 18155 MB/s
> [ 15.884243][ T1154] raid6: .... xor() 27974 MB/s, rmw enabled
> [ 15.890254][ T1154] raid6: using avx512x2 recovery algorithm
> [ 15.897891][ T1154] xor: measuring software checksum speed
> [ 15.904013][ T1154] prefetch64-sse : 31308 MB/sec
> [ 15.909878][ T1154] generic_sse : 22929 MB/sec
> [ 15.915230][ T1154] xor: using function: prefetch64-sse (31308 MB/sec)
> [ 16.042623][ T1154] Btrfs loaded, zoned=no, fsverity=no
> [ 16.054593][ T930] BTRFS: device fsid e422031c-19be-42f5-ab4f-be5f306aa6e1 devid 1 transid 39725 /dev/sda2 scanned by systemd-udevd (930)
>
>
> then the machine is just stuck there. (whole dmesg captured from serial is
> attached), and the issue is 100% reproducible for this commit.
>
> for parent, we never observed the boot failure.
>
> it looks quite strange to us why this commit could cause this behavior on our
> machine. could you help check dmesg, config and kernel command line which is
> also captured in dmesg, etc. and guide us if anything need to be updated to be
> compatible with this change? Thanks!
Thanks for the report. With the ctrl and port prefixes dropped, I broke
serial_base_match() looks like. As we attempt to continue anyways, things
still mostly work..
Greg, can you please drop the related commit?
It's the following commit:
1ef2c2df1199 ("serial: core: Fix serial core controller port name to show controller id")
Regards,
Tony
next prev parent reply other threads:[~2023-08-02 9:23 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-25 5:42 [PATCH v5 0/3] Serial core controller port device name fixes Tony Lindgren
2023-07-25 5:42 ` [PATCH v5 1/3] serial: core: Controller id cannot be negative Tony Lindgren
2023-07-25 5:42 ` [PATCH v5 2/3] serial: core: Fix serial core port id to not use port->line Tony Lindgren
2023-07-25 5:42 ` [PATCH v5 3/3] serial: core: Fix serial core controller port name to show controller id Tony Lindgren
2023-07-25 9:07 ` Andy Shevchenko
2023-07-26 3:28 ` Tony Lindgren
2023-07-31 15:14 ` Greg Kroah-Hartman
2023-07-31 20:02 ` Andy Shevchenko
[not found] ` <202308021529.35b3ad6c-oliver.sang@intel.com>
2023-08-02 9:23 ` Tony Lindgren [this message]
2023-08-02 9:39 ` Greg Kroah-Hartman
2023-08-02 10:47 ` Tony Lindgren
2023-08-02 11:52 ` Tony Lindgren
2023-08-02 18:19 ` Mark Brown
2023-08-03 6:52 ` Tony Lindgren
2023-08-03 22:18 ` Guenter Roeck
2023-08-04 4:20 ` Andy Shevchenko
2023-08-04 4:38 ` Guenter Roeck
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=20230802092354.GC14799@atomide.com \
--to=tony@atomide.com \
--cc=andriy.shevchenko@intel.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=bigeasy@linutronix.de \
--cc=d-gole@ti.com \
--cc=gregkh@linuxfoundation.org \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=jirislaby@kernel.org \
--cc=johan@kernel.org \
--cc=john.ogness@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=lkp@intel.com \
--cc=oe-lkp@lists.linux.dev \
--cc=oliver.sang@intel.com \
--cc=vigneshr@ti.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;
as well as URLs for NNTP newsgroup(s).