All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: null console related kerne performance issue
       [not found] <CA+DW03VfQpOJUWAM9CZMCM4Vkw8KVbNWAxgsq-g615QPz_3=YQ@mail.gmail.com>
@ 2021-11-04 18:14 ` Yi Fan
  2021-11-04 18:56   ` Greg KH
  0 siblings, 1 reply; 8+ messages in thread
From: Yi Fan @ 2021-11-04 18:14 UTC (permalink / raw)
  To: stable, Greg Kroah-Hartman, shreyas.joshi
  Cc: Joshua Levasseur, pmladek, sashal

Resend the email using plain text.

I found some kernel performance regression issues that might be
related w/ 4.14.y LTS commit.

4.14.y commit: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v4.14.253&id=27d185697322f9547bfd381c71252ce0bc1c0ee4

The issue is observed when "console=" is used as a kernel parameter to
disable the kernel console.

I browsed android common kernel logs and the upstream stable kernel
tree, found some related changes.

printk: handle blank console arguments passed in. (link:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.14.15&id=3cffa06aeef7ece30f6b5ac0ea51f264e8fea4d0)
Revert "init/console: Use ttynull as a fallback when there is no
console" (link:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.14.15&id=a91bd6223ecd46addc71ee6fcd432206d39365d2)

It looks like upstream also noticed the regression introduced by the
commit, and the workaround is to use "ttynull" to handle "console="
case. But the "ttynull" was reverted due to some other reasons
mentioned in the commit message.

Any insight or recommendation will be appreciated.

Thanks,
Yi Fan

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: null console related kerne performance issue
  2021-11-04 18:14 ` null console related kerne performance issue Yi Fan
@ 2021-11-04 18:56   ` Greg KH
  2021-11-04 19:40     ` Yi Fan
  0 siblings, 1 reply; 8+ messages in thread
From: Greg KH @ 2021-11-04 18:56 UTC (permalink / raw)
  To: Yi Fan
  Cc: stable, Greg Kroah-Hartman, shreyas.joshi, Joshua Levasseur,
	pmladek, sashal

On Thu, Nov 04, 2021 at 11:14:55AM -0700, Yi Fan wrote:
> Resend the email using plain text.
> 
> I found some kernel performance regression issues that might be
> related w/ 4.14.y LTS commit.
> 
> 4.14.y commit: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v4.14.253&id=27d185697322f9547bfd381c71252ce0bc1c0ee4
> 
> The issue is observed when "console=" is used as a kernel parameter to
> disable the kernel console.

What exact "performance issue" are you seeing?

And what kernel version are you seeing it on?

> I browsed android common kernel logs and the upstream stable kernel
> tree, found some related changes.
> 
> printk: handle blank console arguments passed in. (link:
> https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.14.15&id=3cffa06aeef7ece30f6b5ac0ea51f264e8fea4d0)
> Revert "init/console: Use ttynull as a fallback when there is no
> console" (link:
> https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.14.15&id=a91bd6223ecd46addc71ee6fcd432206d39365d2)
> 
> It looks like upstream also noticed the regression introduced by the
> commit, and the workaround is to use "ttynull" to handle "console="
> case. But the "ttynull" was reverted due to some other reasons
> mentioned in the commit message.
> 
> Any insight or recommendation will be appreciated.

What problem exactly are you now seeing?  And does it also happen on
5.15?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: null console related kerne performance issue
  2021-11-04 18:56   ` Greg KH
@ 2021-11-04 19:40     ` Yi Fan
  2021-11-08  8:00       ` Greg KH
  0 siblings, 1 reply; 8+ messages in thread
From: Yi Fan @ 2021-11-04 19:40 UTC (permalink / raw)
  To: Greg KH
  Cc: stable, Greg Kroah-Hartman, shreyas.joshi, Joshua Levasseur,
	pmladek, sashal

Reply inline.

On Thu, Nov 4, 2021 at 11:56 AM Greg KH <gregkh@linuxfoundation.org> wrote:
>
> On Thu, Nov 04, 2021 at 11:14:55AM -0700, Yi Fan wrote:
> > Resend the email using plain text.
> >
> > I found some kernel performance regression issues that might be
> > related w/ 4.14.y LTS commit.
> >
> > 4.14.y commit: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v4.14.253&id=27d185697322f9547bfd381c71252ce0bc1c0ee4
> >
> > The issue is observed when "console=" is used as a kernel parameter to
> > disable the kernel console.
>
> What exact "performance issue" are you seeing?
>
[YF] one kernel thread was randomly blocked for more than ~40
milliseconds, causing a certain task to fail to process in time.
[YF] the issue is highly random on a single device. But it might
happen a few times per 24 hours on a certain percentage of devices.
The overall percentage of devices that show the issue seems quite
stable over a long period of time (somehow the magic number is ~40%.).
[YF] local test on a pool of devices does not show any correlation w/
any particular devices.
[YF] local test after reverting the above single commit passes, no
issue is observed.

> And what kernel version are you seeing it on?
>
[YF] it was first found on some products w/ kernel version 4.14.210.
through bisection, we located the commit on 4.14.200.

> > I browsed android common kernel logs and the upstream stable kernel
> > tree, found some related changes.
> >
> > printk: handle blank console arguments passed in. (link:
> > https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.14.15&id=3cffa06aeef7ece30f6b5ac0ea51f264e8fea4d0)
> > Revert "init/console: Use ttynull as a fallback when there is no
> > console" (link:
> > https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.14.15&id=a91bd6223ecd46addc71ee6fcd432206d39365d2)
> >
> > It looks like upstream also noticed the regression introduced by the
> > commit, and the workaround is to use "ttynull" to handle "console="
> > case. But the "ttynull" was reverted due to some other reasons
> > mentioned in the commit message.
> >
> > Any insight or recommendation will be appreciated.
>
> What problem exactly are you now seeing?  And does it also happen on
> 5.15?
>
[YF] we do not perform any tests on 5.15 yet. so no idea about whether
the issue happens on 5.15.

> thanks,
>
> greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: null console related kerne performance issue
  2021-11-04 19:40     ` Yi Fan
@ 2021-11-08  8:00       ` Greg KH
  2021-11-08 19:17         ` Yi Fan
  0 siblings, 1 reply; 8+ messages in thread
From: Greg KH @ 2021-11-08  8:00 UTC (permalink / raw)
  To: Yi Fan
  Cc: stable, Greg Kroah-Hartman, shreyas.joshi, Joshua Levasseur,
	pmladek, sashal

On Thu, Nov 04, 2021 at 12:40:32PM -0700, Yi Fan wrote:
> Reply inline.
> 
> On Thu, Nov 4, 2021 at 11:56 AM Greg KH <gregkh@linuxfoundation.org> wrote:
> >
> > On Thu, Nov 04, 2021 at 11:14:55AM -0700, Yi Fan wrote:
> > > Resend the email using plain text.
> > >
> > > I found some kernel performance regression issues that might be
> > > related w/ 4.14.y LTS commit.
> > >
> > > 4.14.y commit: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v4.14.253&id=27d185697322f9547bfd381c71252ce0bc1c0ee4
> > >
> > > The issue is observed when "console=" is used as a kernel parameter to
> > > disable the kernel console.
> >
> > What exact "performance issue" are you seeing?
> >
> [YF] one kernel thread was randomly blocked for more than ~40
> milliseconds, causing a certain task to fail to process in time.
> [YF] the issue is highly random on a single device. But it might
> happen a few times per 24 hours on a certain percentage of devices.
> The overall percentage of devices that show the issue seems quite
> stable over a long period of time (somehow the magic number is ~40%.).
> [YF] local test on a pool of devices does not show any correlation w/
> any particular devices.
> [YF] local test after reverting the above single commit passes, no
> issue is observed.

And what type of device is this?

If you see this thread:
	https://lore.kernel.org/r/f19c18fd-20b3-b694-5448-7d899966a868@roeck-us.net
it looks like chromeos devices have now disabled this change, and there
was a long discussion about possible issues and solutions.

Can you try the patch set referenced in that thread to see if that
resolves the issue for you or not?  Given that I have not seen any
reports of this being an issue since over a year ago, odds are it has
been resolved already with some change that we probably also need to
backport to 4.14.y.

So any help in identifying that change would be appreciated.

> > And what kernel version are you seeing it on?
> >
> [YF] it was first found on some products w/ kernel version 4.14.210.
> through bisection, we located the commit on 4.14.200.
> 
> > > I browsed android common kernel logs and the upstream stable kernel
> > > tree, found some related changes.
> > >
> > > printk: handle blank console arguments passed in. (link:
> > > https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.14.15&id=3cffa06aeef7ece30f6b5ac0ea51f264e8fea4d0)
> > > Revert "init/console: Use ttynull as a fallback when there is no
> > > console" (link:
> > > https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.14.15&id=a91bd6223ecd46addc71ee6fcd432206d39365d2)
> > >
> > > It looks like upstream also noticed the regression introduced by the
> > > commit, and the workaround is to use "ttynull" to handle "console="
> > > case. But the "ttynull" was reverted due to some other reasons
> > > mentioned in the commit message.
> > >
> > > Any insight or recommendation will be appreciated.
> >
> > What problem exactly are you now seeing?  And does it also happen on
> > 5.15?
> >
> [YF] we do not perform any tests on 5.15 yet. so no idea about whether
> the issue happens on 5.15.

How about any other newer stable kernel version like 5.4.y or 5.10.y?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: null console related kerne performance issue
  2021-11-08  8:00       ` Greg KH
@ 2021-11-08 19:17         ` Yi Fan
  2021-11-09  6:27           ` Greg KH
  0 siblings, 1 reply; 8+ messages in thread
From: Yi Fan @ 2021-11-08 19:17 UTC (permalink / raw)
  To: Greg KH
  Cc: stable, Greg Kroah-Hartman, shreyas.joshi, Joshua Levasseur,
	pmladek, sashal

On Mon, Nov 8, 2021 at 12:00 AM Greg KH <gregkh@linuxfoundation.org> wrote:
>
> On Thu, Nov 04, 2021 at 12:40:32PM -0700, Yi Fan wrote:
> > Reply inline.
> >
> > On Thu, Nov 4, 2021 at 11:56 AM Greg KH <gregkh@linuxfoundation.org> wrote:
> > >
> > > On Thu, Nov 04, 2021 at 11:14:55AM -0700, Yi Fan wrote:
> > > > Resend the email using plain text.
> > > >
> > > > I found some kernel performance regression issues that might be
> > > > related w/ 4.14.y LTS commit.
> > > >
> > > > 4.14.y commit: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v4.14.253&id=27d185697322f9547bfd381c71252ce0bc1c0ee4
> > > >
> > > > The issue is observed when "console=" is used as a kernel parameter to
> > > > disable the kernel console.
> > >
> > > What exact "performance issue" are you seeing?
> > >
> > [YF] one kernel thread was randomly blocked for more than ~40
> > milliseconds, causing a certain task to fail to process in time.
> > [YF] the issue is highly random on a single device. But it might
> > happen a few times per 24 hours on a certain percentage of devices.
> > The overall percentage of devices that show the issue seems quite
> > stable over a long period of time (somehow the magic number is ~40%.).
> > [YF] local test on a pool of devices does not show any correlation w/
> > any particular devices.
> > [YF] local test after reverting the above single commit passes, no
> > issue is observed.
>
> And what type of device is this?
[YF] it happens on multiple devices on the 4.14.y kernel. (sorry
cannot disclose the device type here.)

>
> If you see this thread:
>         https://lore.kernel.org/r/f19c18fd-20b3-b694-5448-7d899966a868@roeck-us.net
> it looks like chromeos devices have now disabled this change, and there
> was a long discussion about possible issues and solutions.
>
> Can you try the patch set referenced in that thread to see if that
> resolves the issue for you or not?  Given that I have not seen any
> reports of this being an issue since over a year ago, odds are it has
> been resolved already with some change that we probably also need to
> backport to 4.14.y.
>
> So any help in identifying that change would be appreciated.
>

[YF] thanks for the context. I did not find a clear patch that seems
to solve this issue yet.
[YF] for the time being, reverting the offending commit seems the
safest solution for the 4.14.y.

> > > And what kernel version are you seeing it on?
> > >
> > [YF] it was first found on some products w/ kernel version 4.14.210.
> > through bisection, we located the commit on 4.14.200.
> >
> > > > I browsed android common kernel logs and the upstream stable kernel
> > > > tree, found some related changes.
> > > >
> > > > printk: handle blank console arguments passed in. (link:
> > > > https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.14.15&id=3cffa06aeef7ece30f6b5ac0ea51f264e8fea4d0)
> > > > Revert "init/console: Use ttynull as a fallback when there is no
> > > > console" (link:
> > > > https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.14.15&id=a91bd6223ecd46addc71ee6fcd432206d39365d2)
> > > >
> > > > It looks like upstream also noticed the regression introduced by the
> > > > commit, and the workaround is to use "ttynull" to handle "console="
> > > > case. But the "ttynull" was reverted due to some other reasons
> > > > mentioned in the commit message.
> > > >
> > > > Any insight or recommendation will be appreciated.
> > >
> > > What problem exactly are you now seeing?  And does it also happen on
> > > 5.15?
> > >
> > [YF] we do not perform any tests on 5.15 yet. so no idea about whether
> > the issue happens on 5.15.
>
> How about any other newer stable kernel version like 5.4.y or 5.10.y?
>

[YF] so far there is no easy way to replicate the issue. We have
future products that are on 5.4.y and 5.10.y. I will keep monitoring
whether similar issues are found.

> thanks,
>
> greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: null console related kerne performance issue
  2021-11-08 19:17         ` Yi Fan
@ 2021-11-09  6:27           ` Greg KH
  2021-11-09 15:28             ` Petr Mladek
  0 siblings, 1 reply; 8+ messages in thread
From: Greg KH @ 2021-11-09  6:27 UTC (permalink / raw)
  To: Yi Fan
  Cc: stable, Greg Kroah-Hartman, shreyas.joshi, Joshua Levasseur,
	pmladek, sashal

On Mon, Nov 08, 2021 at 11:17:07AM -0800, Yi Fan wrote:
> On Mon, Nov 8, 2021 at 12:00 AM Greg KH <gregkh@linuxfoundation.org> wrote:
> >
> > On Thu, Nov 04, 2021 at 12:40:32PM -0700, Yi Fan wrote:
> > > Reply inline.
> > >
> > > On Thu, Nov 4, 2021 at 11:56 AM Greg KH <gregkh@linuxfoundation.org> wrote:
> > > >
> > > > On Thu, Nov 04, 2021 at 11:14:55AM -0700, Yi Fan wrote:
> > > > > Resend the email using plain text.
> > > > >
> > > > > I found some kernel performance regression issues that might be
> > > > > related w/ 4.14.y LTS commit.
> > > > >
> > > > > 4.14.y commit: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v4.14.253&id=27d185697322f9547bfd381c71252ce0bc1c0ee4
> > > > >
> > > > > The issue is observed when "console=" is used as a kernel parameter to
> > > > > disable the kernel console.
> > > >
> > > > What exact "performance issue" are you seeing?
> > > >
> > > [YF] one kernel thread was randomly blocked for more than ~40
> > > milliseconds, causing a certain task to fail to process in time.
> > > [YF] the issue is highly random on a single device. But it might
> > > happen a few times per 24 hours on a certain percentage of devices.
> > > The overall percentage of devices that show the issue seems quite
> > > stable over a long period of time (somehow the magic number is ~40%.).
> > > [YF] local test on a pool of devices does not show any correlation w/
> > > any particular devices.
> > > [YF] local test after reverting the above single commit passes, no
> > > issue is observed.
> >
> > And what type of device is this?
> [YF] it happens on multiple devices on the 4.14.y kernel. (sorry
> cannot disclose the device type here.)

That's not helpful :(

Can you say "server" or "tiny device you hold in your hand"?

How about architecture type?

> > If you see this thread:
> >         https://lore.kernel.org/r/f19c18fd-20b3-b694-5448-7d899966a868@roeck-us.net
> > it looks like chromeos devices have now disabled this change, and there
> > was a long discussion about possible issues and solutions.
> >
> > Can you try the patch set referenced in that thread to see if that
> > resolves the issue for you or not?  Given that I have not seen any
> > reports of this being an issue since over a year ago, odds are it has
> > been resolved already with some change that we probably also need to
> > backport to 4.14.y.
> >
> > So any help in identifying that change would be appreciated.
> >
> 
> [YF] thanks for the context. I did not find a clear patch that seems
> to solve this issue yet.
> [YF] for the time being, reverting the offending commit seems the
> safest solution for the 4.14.y.

What about for the 4.19.y kernel tree?  Why is this limited to just
4.14.y?

Can you send a patch that reverts this from 4.14 that explains why it
should be removed?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: null console related kerne performance issue
  2021-11-09  6:27           ` Greg KH
@ 2021-11-09 15:28             ` Petr Mladek
  2021-11-09 17:51               ` Yi Fan
  0 siblings, 1 reply; 8+ messages in thread
From: Petr Mladek @ 2021-11-09 15:28 UTC (permalink / raw)
  To: Greg KH
  Cc: Yi Fan, stable, Greg Kroah-Hartman, shreyas.joshi,
	Joshua Levasseur, sashal

On Tue 2021-11-09 07:27:35, Greg KH wrote:
> On Mon, Nov 08, 2021 at 11:17:07AM -0800, Yi Fan wrote:
> > On Mon, Nov 8, 2021 at 12:00 AM Greg KH <gregkh@linuxfoundation.org> wrote:
> > >
> > > On Thu, Nov 04, 2021 at 12:40:32PM -0700, Yi Fan wrote:
> > > > Reply inline.
> > > >
> > > > On Thu, Nov 4, 2021 at 11:56 AM Greg KH <gregkh@linuxfoundation.org> wrote:
> > > > >
> > > > > On Thu, Nov 04, 2021 at 11:14:55AM -0700, Yi Fan wrote:
> > > > > > Resend the email using plain text.
> > > > > >
> > > > > > I found some kernel performance regression issues that might be
> > > > > > related w/ 4.14.y LTS commit.
> > > > > >
> > > > > > 4.14.y commit: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v4.14.253&id=27d185697322f9547bfd381c71252ce0bc1c0ee4
> > > > > >
> > > > > > The issue is observed when "console=" is used as a kernel parameter to
> > > > > > disable the kernel console.

I think that I see the problem. linux-4.14.y stable branch currently
ignores "console=" parameter. As a result, a console (ttyX) is enabled
by default.

> > > > > What exact "performance issue" are you seeing?
> > > > >
> > > > [YF] one kernel thread was randomly blocked for more than ~40
> > > > milliseconds, causing a certain task to fail to process in time.
> > > > [YF] the issue is highly random on a single device. But it might
> > > > happen a few times per 24 hours on a certain percentage of devices.
> > > > The overall percentage of devices that show the issue seems quite
> > > > stable over a long period of time (somehow the magic number is ~40%.).
> > > > [YF] local test on a pool of devices does not show any correlation w/
> > > > any particular devices.

This might happen when there is a flood of messages to be printed to
the console. It does not happen when there is no console.

It has been fixed by the upstream commit 3cffa06aeef7ece30f6b5ac0
("printk/console: Allow to disable console output by using  console=""
or console=null")

The fix needs some tweaking for the stable branches because
__add_preferred_console() has gained more parameters over time.

It seems that all longterm stable branches are affected. I am going
to prepare the backports.

Best Regards,
Petr

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: null console related kerne performance issue
  2021-11-09 15:28             ` Petr Mladek
@ 2021-11-09 17:51               ` Yi Fan
  0 siblings, 0 replies; 8+ messages in thread
From: Yi Fan @ 2021-11-09 17:51 UTC (permalink / raw)
  To: Petr Mladek
  Cc: Greg KH, stable, Greg Kroah-Hartman, shreyas.joshi,
	Joshua Levasseur, sashal

Thanks a lot, Petr and Greg.

I saw the patches and just started to prepare the test on devices
using the 4.14.y tree. will update the test result later.

@Greg Kroah-Hartman Sorry for not providing the details in the public
thread. I can sync w/ you offline.

Thanks,
Yi Fan

On Tue, Nov 9, 2021 at 7:28 AM Petr Mladek <pmladek@suse.com> wrote:
>
> On Tue 2021-11-09 07:27:35, Greg KH wrote:
> > On Mon, Nov 08, 2021 at 11:17:07AM -0800, Yi Fan wrote:
> > > On Mon, Nov 8, 2021 at 12:00 AM Greg KH <gregkh@linuxfoundation.org> wrote:
> > > >
> > > > On Thu, Nov 04, 2021 at 12:40:32PM -0700, Yi Fan wrote:
> > > > > Reply inline.
> > > > >
> > > > > On Thu, Nov 4, 2021 at 11:56 AM Greg KH <gregkh@linuxfoundation.org> wrote:
> > > > > >
> > > > > > On Thu, Nov 04, 2021 at 11:14:55AM -0700, Yi Fan wrote:
> > > > > > > Resend the email using plain text.
> > > > > > >
> > > > > > > I found some kernel performance regression issues that might be
> > > > > > > related w/ 4.14.y LTS commit.
> > > > > > >
> > > > > > > 4.14.y commit: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v4.14.253&id=27d185697322f9547bfd381c71252ce0bc1c0ee4
> > > > > > >
> > > > > > > The issue is observed when "console=" is used as a kernel parameter to
> > > > > > > disable the kernel console.
>
> I think that I see the problem. linux-4.14.y stable branch currently
> ignores "console=" parameter. As a result, a console (ttyX) is enabled
> by default.
>
> > > > > > What exact "performance issue" are you seeing?
> > > > > >
> > > > > [YF] one kernel thread was randomly blocked for more than ~40
> > > > > milliseconds, causing a certain task to fail to process in time.
> > > > > [YF] the issue is highly random on a single device. But it might
> > > > > happen a few times per 24 hours on a certain percentage of devices.
> > > > > The overall percentage of devices that show the issue seems quite
> > > > > stable over a long period of time (somehow the magic number is ~40%.).
> > > > > [YF] local test on a pool of devices does not show any correlation w/
> > > > > any particular devices.
>
> This might happen when there is a flood of messages to be printed to
> the console. It does not happen when there is no console.
>
> It has been fixed by the upstream commit 3cffa06aeef7ece30f6b5ac0
> ("printk/console: Allow to disable console output by using  console=""
> or console=null")
>
> The fix needs some tweaking for the stable branches because
> __add_preferred_console() has gained more parameters over time.
>
> It seems that all longterm stable branches are affected. I am going
> to prepare the backports.
>
> Best Regards,
> Petr

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-11-09 17:51 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CA+DW03VfQpOJUWAM9CZMCM4Vkw8KVbNWAxgsq-g615QPz_3=YQ@mail.gmail.com>
2021-11-04 18:14 ` null console related kerne performance issue Yi Fan
2021-11-04 18:56   ` Greg KH
2021-11-04 19:40     ` Yi Fan
2021-11-08  8:00       ` Greg KH
2021-11-08 19:17         ` Yi Fan
2021-11-09  6:27           ` Greg KH
2021-11-09 15:28             ` Petr Mladek
2021-11-09 17:51               ` Yi Fan

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.