Page MenuHomeFreeBSD

linuxkpi: Add `strtomem()` and `strtomem_pad()`
ClosedPublic

Authored by dumbbell on Mar 8 2026, 1:17 PM.
Tags
None
Referenced Files
F163144347: D55729.id174982.diff
Mon, Jul 20, 12:13 PM
Unknown Object (File)
Sat, Jul 18, 8:01 PM
Unknown Object (File)
Sat, Jul 18, 3:22 AM
Unknown Object (File)
Wed, Jul 15, 1:54 PM
Unknown Object (File)
Wed, Jul 15, 7:11 AM
Unknown Object (File)
Wed, Jul 15, 7:11 AM
Unknown Object (File)
Sat, Jul 11, 11:14 PM
Unknown Object (File)
Wed, Jul 8, 5:29 AM
Subscribers

Details

Summary

The DRM generic code started to use strtomem_pad() in Linux 6.11.

This is part of the update of DRM drivers to Linux 6.11.

Sponsored by: The FreeBSD Foundation

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

sys/compat/linuxkpi/common/include/linux/string.h
311

what is this 4-arg memcpy?

Fix use of memcpy() as reported by @emaste

dumbbell added inline comments.
sys/compat/linuxkpi/common/include/linux/string.h
311

Too much copy-paste

bz requested changes to this revision.Mar 29 2026, 11:29 PM
bz added a subscriber: bz.
bz added inline comments.
sys/compat/linuxkpi/common/include/linux/string.h
307

Reading the description it sounds like (here and down) dest should use ARRAY_SIZE (nitems)?

This revision now requires changes to proceed.Mar 29 2026, 11:29 PM
sys/compat/linuxkpi/common/include/linux/string.h
307

So you suggest:

size_t dstlen = ARRAY_SIZE(dst);
``` instead, is that correct?

I’m not sure i get the difference. Is it semantically more correct?

In this case, should `ARRAY_SIZE()` be used for `srclen` too?
sys/compat/linuxkpi/common/include/linux/string.h
307

Only for dstlen as dst that is supposed to be a Pointer of destination character array (marked as __nonstring) according to the documentation. Making in ARRAY_SIZE I hope will catch other possible kinds of buffers--while Linux should catch that already for drivers I would hope, in case we use this internally in LinuxKPI it's just to be saver.

Use ARRAY_SIZE() as suggested by @bz.

This revision is now accepted and ready to land.Apr 6 2026, 5:04 PM