From: Simona Vetter <simona.vetter@ffwll.ch>
To: Jocelyn Falempe <jfalempe@redhat.com>
Cc: Dan Carpenter <dan.carpenter@linaro.org>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
John Ogness <john.ogness@linutronix.de>,
Javier Martinez Canillas <javierm@redhat.com>,
"Guilherme G . Piccoli" <gpiccoli@igalia.com>,
bluescreen_avenger@verizon.net,
Caleb Connolly <caleb.connolly@linaro.org>,
Petr Mladek <pmladek@suse.com>,
Jani Nikula <jani.nikula@linux.intel.com>,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v9 2/6] drm/log: Introduce a new boot logger to draw the kmsg on the screen
Date: Thu, 12 Dec 2024 11:07:33 +0100 [thread overview]
Message-ID: <Z1q15aOiTTozQMmE@phenom.ffwll.local> (raw)
In-Reply-To: <88abb273-13e3-4969-96c3-c7d677a082d4@redhat.com>
On Thu, Dec 12, 2024 at 09:49:19AM +0100, Jocelyn Falempe wrote:
> On 12/12/2024 08:41, Dan Carpenter wrote:
> > This patch breaks "make oldconfig" for me. It just gets into an endless
> > loop of:
> >
> > Default DRM Client
> > choice[1-0?]: 0
> > Default DRM Client
> > choice[1-0?]: 0
> > Default DRM Client
> > choice[1-0?]: 0
> > Default DRM Client
> > choice[1-0?]: 0
> > ...
> >
> > I don't have to type anything, it just spams that forever. It's weird
> > that it's 1-0 instead of 0-1. Does that means something? I don't know
> > much about Kconfig.
>
> I can reproduce it with your provided config.
>
> It looks like it happens if DRM_CLIENT_SELECTION is enabled, but none of the
> client is.
> The attached patch should fix it, can you try it ?
>
> I will submit that shortly.
>
> Thanks for reporting it.
>
> Best regards,
>
> --
>
> Jocelyn
>
>
> >
> > I'm using this arm64 randconfig as a base. I type "make oldconfig" and
> > press enter until it gets to "Default DRM Client" and then it starts
> > scrolling endlessly.
> > https://download.01.org/0day-ci/archive/20241212/202412121555.Fp663tyH-lkp@intel.com/config
> >
> > regards,
> > dan carpenter
> >
> From e4d197debd2c199c9f2d8e35e41e36c2836926b9 Mon Sep 17 00:00:00 2001
> From: Jocelyn Falempe <jfalempe@redhat.com>
> Date: Thu, 12 Dec 2024 09:43:50 +0100
> Subject: [PATCH] Fix endless Kconfig loop
>
> Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
Since I haven't seen the patch anywhere else I'll drop my ack here.
Acked-by: Simona Vetter <simona.vetter@ffwll.ch>
Please push directly to drm-misc-next so the breakage doesn't linger.
-Sima
> ---
> drivers/gpu/drm/clients/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/clients/Kconfig b/drivers/gpu/drm/clients/Kconfig
> index c18decc90200..82a7d4e584dd 100644
> --- a/drivers/gpu/drm/clients/Kconfig
> +++ b/drivers/gpu/drm/clients/Kconfig
> @@ -87,6 +87,7 @@ config DRM_CLIENT_LOG
> choice
> prompt "Default DRM Client"
> depends on DRM_CLIENT_SELECTION
> + depends on DRM_FBDEV_EMULATION || DRM_CLIENT_LOG
> default DRM_CLIENT_DEFAULT_FBDEV
> help
> Selects the default drm client.
> --
> 2.47.1
>
--
Simona Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
next prev parent reply other threads:[~2024-12-12 10:07 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-04 15:44 [PATCH v9 0/6] " Jocelyn Falempe
2024-12-04 15:45 ` [PATCH v9 1/6] drm/panic: Move drawing functions to drm_draw Jocelyn Falempe
2024-12-11 21:34 ` [v9,1/6] " Kees Bakker
2024-12-12 8:36 ` Jocelyn Falempe
2024-12-04 15:45 ` [PATCH v9 2/6] drm/log: Introduce a new boot logger to draw the kmsg on the screen Jocelyn Falempe
2024-12-05 16:21 ` Thomas Zimmermann
2024-12-12 7:41 ` Dan Carpenter
2024-12-12 8:49 ` Jocelyn Falempe
2024-12-12 8:53 ` Dan Carpenter
2024-12-12 10:07 ` Simona Vetter [this message]
2024-12-18 12:25 ` Markus Elfring
2024-12-04 15:45 ` [PATCH v9 3/6] drm/log: Do not draw if drm_master is taken Jocelyn Falempe
2024-12-04 15:45 ` [PATCH v9 4/6] drm/log: Color the timestamp, to improve readability Jocelyn Falempe
2024-12-04 15:45 ` [PATCH v9 5/6] drm/log: Implement suspend/resume Jocelyn Falempe
2024-12-04 15:45 ` [PATCH v9 6/6] drm/log: Add integer scaling support Jocelyn Falempe
2024-12-10 13:42 ` [PATCH v9 0/6] drm/log: Introduce a new boot logger to draw the kmsg on the screen Jocelyn Falempe
2024-12-17 14:19 ` Geert Uytterhoeven
2024-12-17 14:46 ` Jocelyn Falempe
2024-12-17 14:54 ` Geert Uytterhoeven
2024-12-18 10:14 ` Jocelyn Falempe
2024-12-18 11:00 ` Geert Uytterhoeven
2024-12-18 11:41 ` Jocelyn Falempe
2024-12-18 14:18 ` Petr Mladek
2024-12-18 14:25 ` Geert Uytterhoeven
2024-12-18 14:58 ` Jocelyn Falempe
2024-12-18 15:03 ` Geert Uytterhoeven
2024-12-18 16:18 ` Petr Mladek
2024-12-19 11:24 ` Jocelyn Falempe
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=Z1q15aOiTTozQMmE@phenom.ffwll.local \
--to=simona.vetter@ffwll.ch \
--cc=airlied@gmail.com \
--cc=bluescreen_avenger@verizon.net \
--cc=caleb.connolly@linaro.org \
--cc=dan.carpenter@linaro.org \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=gpiccoli@igalia.com \
--cc=jani.nikula@linux.intel.com \
--cc=javierm@redhat.com \
--cc=jfalempe@redhat.com \
--cc=john.ogness@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=pmladek@suse.com \
--cc=tzimmermann@suse.de \
/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
all inboxes | Powered by JetHome®