From: Nathan Chancellor <nathan@kernel.org>
To: David Laight <David.Laight@aculab.com>
Cc: 'Mateusz Guzik' <mjguzik@gmail.com>,
"tglx@linutronix.de" <tglx@linutronix.de>,
"bp@alien8.de" <bp@alien8.de>,
"andy@kernel.org" <andy@kernel.org>,
"akpm@linux-foundation.org" <akpm@linux-foundation.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"x86@kernel.org" <x86@kernel.org>
Subject: Re: [PATCH 2/2] string: retire bcmp()
Date: Sat, 23 Nov 2024 12:09:22 -0700 [thread overview]
Message-ID: <20241123190922.GA3314432@thelio-3990X> (raw)
In-Reply-To: <5f510b8238824aa6b3534e755f965d85@AcuMS.aculab.com>
Hi David,
Thanks for the CC.
On Sat, Nov 23, 2024 at 03:13:09PM +0000, David Laight wrote:
> From: Mateusz Guzik
> > Sent: 23 November 2024 09:47
> >
> > While architectures could override it thanks to __HAVE_ARCH_BCMP, none
> > of them did. Instead it was implemented as a call to memcmp().
> >
> > These routines differ in the API contract: memcmp()'s result indicates
> > which way the difference goes (making it usable for sorting), whereas
> > bcmp()'s result merely states whether the buffers differ in any way.
> >
> > This means that a dedicated optimized bcmp() is cheaper to execute than
> > memcmp() for differing buffers as there is no need to compute the return
> > value.
> >
> > However, per the above nobody bothered to write one and it is unclear if
> > it makes sense to do it.
> >
> > Users which really want to compare stuff may want to handle it
> > differently (like e.g., the path lookup).
> >
> > As there are no users and the code is merely a wrapper around memcmp(),
> > just whack it.
> >
> ...
> >
> > -/*
> > - * Clang may lower `memcmp == 0` to `bcmp == 0`.
> > - */
> > -int bcmp(const void *s1, const void *s2, size_t len)
> > -{
> > - return memcmp(s1, s2, len);
> > -}
> > -
>
> As per the comment I thought that clang would sometimes generate
> calls to bcmp().
>
> So while the two symbols could refer to the same code I don't
> think it can be removed.
Right, commit 5f074f3e192f ("lib/string.c: implement a basic bcmp")
explicitly added bcmp() to lib/string.c because LLVM will emit calls to
bcmp instead of memcmp in certain circumstances [1], an optimization
that still exists, thus this patch would trigger new errors at link or
modpost time:
ERROR: modpost: "bcmp" [arch/x86/kvm/kvm.ko] undefined!
ERROR: modpost: "bcmp" [arch/x86/kvm/kvm-intel.ko] undefined!
ERROR: modpost: "bcmp" [fs/quota/quota_v2.ko] undefined!
ERROR: modpost: "bcmp" [fs/dlm/dlm.ko] undefined!
ERROR: modpost: "bcmp" [fs/netfs/netfs.ko] undefined!
ERROR: modpost: "bcmp" [fs/ext4/ext4.ko] undefined!
ERROR: modpost: "bcmp" [fs/minix/minix.ko] undefined!
ERROR: modpost: "bcmp" [fs/fat/fat.ko] undefined!
ERROR: modpost: "bcmp" [fs/isofs/isofs.ko] undefined!
ERROR: modpost: "bcmp" [fs/nfs/nfs.ko] undefined!
WARNING: modpost: suppressed 254 unresolved symbol warnings because there were too many)
ld.lld: error: undefined symbol: bcmp
>>> referenced by fortify-string.h:715 (include/linux/fortify-string.h:715)
>>> vmlinux.o:(load_pdptrs)
>>> referenced by fortify-string.h:715 (include/linux/fortify-string.h:715)
>>> vmlinux.o:(kvm_arch_irqfd_route_changed)
>>> referenced by fortify-string.h:715 (include/linux/fortify-string.h:715)
>>> vmlinux.o:(vmx_check_processor_compat)
>>> referenced 438 more times
>>> did you mean: bacmp
>>> defined in: vmlinux.o
Please do not apply this patch. If we need to shore up the comment to
make this explicit, I am happy to do so.
[1]: https://github.com/llvm/llvm-project/commit/8e16d73346f8091461319a7dfc4ddd18eedcff13
Cheers,
Nathan
next prev parent reply other threads:[~2024-11-23 19:09 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-23 9:47 [PATCH 0/2] retire bcmp, a redundant wrapper around memcmp Mateusz Guzik
2024-11-23 9:47 ` [PATCH 1/2] x86/callthunks: s/bcmp/memcmp/ Mateusz Guzik
2024-11-23 9:47 ` [PATCH 2/2] string: retire bcmp() Mateusz Guzik
2024-11-23 15:13 ` David Laight
2024-11-23 18:31 ` Andy Shevchenko
2024-11-23 19:09 ` Nathan Chancellor [this message]
2024-11-23 19:15 ` Mateusz Guzik
2024-11-25 9:02 ` kernel test robot
2024-11-25 11:42 ` kernel test robot
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=20241123190922.GA3314432@thelio-3990X \
--to=nathan@kernel.org \
--cc=David.Laight@aculab.com \
--cc=akpm@linux-foundation.org \
--cc=andy@kernel.org \
--cc=bp@alien8.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mjguzik@gmail.com \
--cc=tglx@linutronix.de \
--cc=x86@kernel.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
all inboxes | Powered by JetHome®