Re: [PATCH] um: drivers: use libc strrchr() in cow_user.o
Johannes Berg <[email protected]>
| Newsgroups | gmane.linux.uml.devel,gmane.linux.kernel,gmane.linux.kernel.stable |
|---|---|
| Message-ID | <[email protected]> |
On Tue, 2026-04-07 at 12:44 -0400, Michael Bommarito wrote: > That framing is kept > here: the global strrchr remap is still needed for kernel-side > objects, but cow_user.o is host-side and should use libc strrchr > directly. Not sure. glibc has an unfortunate tendency to use a huge amount of stack space for just about anything (though I admit that's unlikely for strrchr) - we should probably just explicitly call kernel_strrchr() in the file instead. johannes