From: Thomas Zimmermann <tzimmermann@suse.de>
To: Nathan Chancellor <nathan@kernel.org>
Cc: gregkh@linuxfoundation.org, deller@gmx.de, sam@ravnborg.org,
linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 09/13] lib/fonts: Compare font data for equality with font_data_is_equal()
Date: Thu, 5 Mar 2026 10:31:13 +0100 [thread overview]
Message-ID: <4acb921b-6bce-4bbf-a607-cc3e991dfc3a@suse.de> (raw)
In-Reply-To: <20260305002347.GA4102761@ax162>
[-- Attachment #1: Type: text/plain, Size: 1348 bytes --]
Hi
Am 05.03.26 um 01:23 schrieb Nathan Chancellor:
[...]
>>
>> +static bool font_data_is_internal(font_data_t *fd)
>> +{
>> + return is_kernel_rodata((unsigned long)fd);
>> +}
>> +
[...]
>>
>> This breaks the build when CONFIG_FONT_SUPPORT is a module.
>>
>> $ cat allno.config
>> CONFIG_MODULES=y
>> CONFIG_DRM=m
>> CONFIG_DRM_PANIC=y
>>
>> $ make -skj"$(nproc)" ARCH=x86_64 CROSS_COMPILE=x86_64-linux- KCONFIG_ALLCONFIG=1 allnoconfig all
>> ERROR: modpost: "__end_rodata" [lib/fonts/font.ko] undefined!
>> make[4]: *** [scripts/Makefile.modpost:147: Module.symvers] Error 1
>> ...
>>
>> $ scripts/config -s FONT_SUPPORT
>> m
Thanks for testing. The attached patch fixes the problem for me. Could
you please test?
Best regards
Thomas
>>
>> Cheers,
>> Nathan
>>
>>
>> + if (font_data_size(lhs) != font_data_size(rhs))
>> + return false;
>> + if (FNTSUM(lhs) && FNTSUM(rhs) && FNTSUM(lhs) != FNTSUM(rhs))
>> + return false;
>> +
>> + return !memcmp(lhs, rhs, FNTSIZE(lhs));
>> +}
>> +EXPORT_SYMBOL_GPL(font_data_is_equal);
>> +
>> /*
>> * Font lookup
>> */
>> --
>> 2.53.0
>>
--
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstr. 146, 90461 Nürnberg, Germany, www.suse.com
GF: Jochen Jaser, Andrew McDonald, Werner Knoblich, (HRB 36809, AG Nürnberg)
[-- Attachment #2: 0001-test-for-internal-fonts-by-refcount.patch --]
[-- Type: text/x-patch, Size: 927 bytes --]
From 8dc48d2e676d1437584794f4df3dd20d08878655 Mon Sep 17 00:00:00 2001
From: Thomas Zimmermann <tzimmermann@suse.de>
Date: Thu, 5 Mar 2026 09:28:28 +0100
Subject: [PATCH] test for internal fonts by refcount
Internal font data is 'static const'. Hence test against the refcount
being zero.
---
lib/fonts/fonts.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/lib/fonts/fonts.c b/lib/fonts/fonts.c
index 198aae869be2..b73d74b977ec 100644
--- a/lib/fonts/fonts.c
+++ b/lib/fonts/fonts.c
@@ -45,14 +45,11 @@ static struct font_data *to_font_data_struct(font_data_t *fd)
static bool font_data_is_internal(font_data_t *fd)
{
- return is_kernel_rodata((unsigned long)fd);
+ return !REFCOUNT(fd); /* internal fonts have no reference counting */
}
static void font_data_free(font_data_t *fd)
{
- if (WARN_ON(font_data_is_internal(fd)))
- return;
-
kfree(to_font_data_struct(fd));
}
--
2.53.0
next prev parent reply other threads:[~2026-03-05 9:31 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-02 14:08 [PATCH v2 00/13] vc,fbcon,fonts: Proper handling of font data Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 01/13] fbdev: Declare src parameter of fb_pad_ helpers as constant Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 02/13] vt: Remove trailing whitespaces Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 03/13] vt: Store font in struct vc_font Thomas Zimmermann
2026-03-03 14:31 ` Helge Deller
2026-03-04 7:49 ` Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 04/13] vt: Calculate font-buffer size with vc_font_size() Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 05/13] lib/fonts: Remove trailing whitespaces Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 06/13] lib/fonts: Remove FNTCHARCNT() Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 07/13] lib/fonts: Store font data as font_data_t; update consoles Thomas Zimmermann
2026-03-03 14:57 ` Helge Deller
2026-03-04 7:51 ` Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 08/13] lib/fonts: Read font size with font_data_size() Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 09/13] lib/fonts: Compare font data for equality with font_data_is_equal() Thomas Zimmermann
2026-03-05 0:23 ` Nathan Chancellor
2026-03-05 9:31 ` Thomas Zimmermann [this message]
2026-03-05 20:12 ` Nathan Chancellor
2026-03-02 14:08 ` [PATCH v2 10/13] lib/fonts: Manage font-data lifetime with font_data_get/_put() Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 11/13] lib/fonts: Create font_data_t from struct console_font with font_data_import() Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 12/13] lib/fonts: Store font data for user space with font_data_export() Thomas Zimmermann
2026-03-02 14:08 ` [PATCH v2 13/13] lib/fonts: Remove internal symbols and macros from public header file Thomas Zimmermann
2026-03-03 15:29 ` [PATCH v2 00/13] vc,fbcon,fonts: Proper handling of font data Helge Deller
2026-03-04 9:11 ` Thomas Zimmermann
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=4acb921b-6bce-4bbf-a607-cc3e991dfc3a@suse.de \
--to=tzimmermann@suse.de \
--cc=deller@gmx.de \
--cc=dri-devel@lists.freedesktop.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nathan@kernel.org \
--cc=sam@ravnborg.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