All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/4] C23 string func() handling updates
@ 2026-02-25  0:48 Nicholas Vinson
  2026-02-25  0:48 ` [PATCH v2 1/4] grub-core/osdep/linux/ofpath.c: Update strstr() calls Nicholas Vinson
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Nicholas Vinson @ 2026-02-25  0:48 UTC (permalink / raw)
  To: grub-devel; +Cc: Nicholas Vinson, dkiper

With C23, the following 12 functions were updated to have 'const-aware'
return types:

bsearch(), bsearch_s(), memchr(), strchr(), strpbrk(), strrchr(),
strstr(), wcschr(), wcspbrk(), wcsrchr(), wcsstr(), and wmemchr().

Of these functions, strchr(), strpbrk(), strrchr(), and strstr(), are
used within GRUB, and for 3 of these functions, strchr(), strrchr(), and
strstr(), some of their calls within GRUB are now resulting in
compile-time errors due to the C23 changes and 'discarding qualifier'
errors. The errors are generated by elevating 'discarding qualifier'
warnings to error-level. A promotion GRUB's build system defaults to
doing.

Most of the changes this patch series makes to fix these errors are
simple and only requiring changing a variable's type from 'char *' to
'const char *'.  However, the changes in ofpath.c are more involved as
they also update the way lengths are calculated and *printf() functions
are called as a result of these C23 changes.

Furthermore, the changes are needed as C runtime libraries, notably
glbc starting with version 2.43, are implementing the changes the C23
standard requires.

Signed-off-by: Nicholas Vinson <nvinson234@gmail.com>

Nicholas Vinson (4):
  grub-core/osdep/linux/ofpath.c: Update strstr() calls
  grub-core/osdep/linux/ofpath.c: correct path_size calculation
  util/probe.c: save strrchr() ret val to const data ptr.
  util/resolve.c: Save str[r]chr() ret val to const data ptr

 grub-core/osdep/linux/ofpath.c | 25 ++++++++++++-------------
 util/probe.c                   |  6 +++---
 util/resolve.c                 | 10 +++++-----
 3 files changed, 20 insertions(+), 21 deletions(-)

-- 
2.53.0


_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

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

end of thread, other threads:[~2026-02-26 14:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-25  0:48 [PATCH v2 0/4] C23 string func() handling updates Nicholas Vinson
2026-02-25  0:48 ` [PATCH v2 1/4] grub-core/osdep/linux/ofpath.c: Update strstr() calls Nicholas Vinson
2026-02-25  0:48 ` [PATCH v2 2/4] grub-core/osdep/linux/ofpath.c: correct path_size calculation Nicholas Vinson
2026-02-25  0:48 ` [PATCH v2 3/4] util/probe.c: save strrchr() ret val to const data ptr Nicholas Vinson
2026-02-25  0:48 ` [PATCH v2 4/4] util/resolve.c: Save str[r]chr() " Nicholas Vinson
2026-02-26 14:27 ` [PATCH v2 0/4] C23 string func() handling updates Daniel Kiper

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.