From: David Laight <David.Laight@ACULAB.COM>
To: 'Alexey Dobriyan' <adobriyan@gmail.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: RE: [PATCH] sysfs: make sysfs_emit() return ssize_t
Date: Sun, 10 Mar 2024 19:21:32 +0000 [thread overview]
Message-ID: <333d84d215c44589840e18cec9108fb0@AcuMS.aculab.com> (raw)
In-Reply-To: <f57ab790-d0a5-4454-977b-9bdc146e6e93@p183>
From: Alexey Dobriyan
> Sent: 08 March 2024 06:26
>
> On Thu, Mar 07, 2024 at 10:04:41PM +0000, Greg Kroah-Hartman wrote:
> > On Mon, Feb 05, 2024 at 01:11:36PM +0300, Alexey Dobriyan wrote:
> > > sysfs_emit() is most often found in functions returning ssize_t
> > > not int:
> > >
> > > static ssize_t oops_count_show(...)
> > > {
> > > return sysfs_emit(page, ...);
> > > }
> > >
> > > This pattern results in sign-extension instruction between
> > > sysfs_emit() return value (int) and caller return value (which is
> > > ssize_t).
> >
> > Is that a problem?
>
> Small problem, but, yes.
>
> If sysfs_emit() returns "int", then every user compiles to
>
> call sysfs_emit
> movsx rax, eax
> ret
>
> Given than sysfs_emit() is the official way to print in sysfs,
> there are lots of users and there will be more users in the future
> as it grows.
>
> This trailing "movsx" instruction is duplicated every time.
Actually you are missing a tail call...
But no one will notice the extra execution time, it will
be masked by the cost of the formatting.
So it is a small amount of I-cache.
In reality the best fix is not to use ssize_t for something
where the domain of the value is much smaller.
In this case it is probably unsigned as well.
Efficient calling conventions for 64bit code probably require
all non-negative types be passed/returned as 'unsigned long' and
then copied to an 'unsigned int' to get better code generation.
Signed values are much more difficult though.
But unless you are trying to get that last extra clock there
are likely to be much lower hanging fruit.
David
-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)
next prev parent reply other threads:[~2024-03-10 19:21 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-05 10:11 Alexey Dobriyan
2024-03-07 22:04 ` Greg Kroah-Hartman
2024-03-08 6:26 ` Alexey Dobriyan
2024-03-08 9:01 ` Greg Kroah-Hartman
2024-03-10 19:21 ` David Laight [this message]
2024-03-11 4:55 ` Alexey Dobriyan
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=333d84d215c44589840e18cec9108fb0@AcuMS.aculab.com \
--to=david.laight@aculab.com \
--cc=adobriyan@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rafael@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®