From: David Howells <dhowells@redhat.com>
To: David Laight <David.Laight@ACULAB.COM>
Cc: dhowells@redhat.com,
Linus Torvalds <torvalds@linux-foundation.org>,
Al Viro <viro@zeniv.linux.org.uk>, Jens Axboe <axboe@kernel.dk>,
"Christoph Hellwig" <hch@list.de>,
Christian Brauner <christian@brauner.io>,
"Matthew Wilcox" <willy@infradead.org>,
Jeff Layton <jlayton@kernel.org>,
"linux-fsdevel@vger.kernel.org" <linux-fsdevel@vger.kernel.org>,
"linux-block@vger.kernel.org" <linux-block@vger.kernel.org>,
"linux-mm@kvack.org" <linux-mm@kvack.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v3 2/2] iov_iter: Don't deal with iter->copy_mc in memcpy_from_iter_mc()
Date: Fri, 18 Aug 2023 17:48:40 +0100 [thread overview]
Message-ID: <2093413.1692377320@warthog.procyon.org.uk> (raw)
In-Reply-To: <d8fce3c159b04fdca65cc4d5c307854d@AcuMS.aculab.com>
David Laight <David.Laight@ACULAB.COM> wrote:
> > iov_iter_init inc 0x27 -> 0x31 +0xa
>
> Are you hitting the gcc bug that loads the constant from memory?
I'm not sure what that looks like. For your perusal, here's a disassembly of
the use-switch-on-enum variant:
0xffffffff8177726c <+0>: cmp $0x1,%esi
0xffffffff8177726f <+3>: jbe 0xffffffff81777273 <iov_iter_init+7>
0xffffffff81777271 <+5>: ud2
0xffffffff81777273 <+7>: test %esi,%esi
0xffffffff81777275 <+9>: movw $0x1,(%rdi)
0xffffffff8177727a <+14>: setne 0x3(%rdi)
0xffffffff8177727e <+18>: xor %eax,%eax
0xffffffff81777280 <+20>: movb $0x0,0x2(%rdi)
0xffffffff81777284 <+24>: movb $0x1,0x4(%rdi)
0xffffffff81777288 <+28>: mov %rax,0x8(%rdi)
0xffffffff8177728c <+32>: mov %rdx,0x10(%rdi)
0xffffffff81777290 <+36>: mov %r8,0x18(%rdi)
0xffffffff81777294 <+40>: mov %rcx,0x20(%rdi)
0xffffffff81777298 <+44>: jmp 0xffffffff81d728a0 <__x86_return_thunk>
versus the use-bitmap variant:
0xffffffff81777311 <+0>: cmp $0x1,%esi
0xffffffff81777314 <+3>: jbe 0xffffffff81777318 <iov_iter_init+7>
0xffffffff81777316 <+5>: ud2
0xffffffff81777318 <+7>: test %esi,%esi
0xffffffff8177731a <+9>: movb $0x2,(%rdi)
0xffffffff8177731d <+12>: setne 0x1(%rdi)
0xffffffff81777321 <+16>: xor %eax,%eax
0xffffffff81777323 <+18>: mov %rdx,0x10(%rdi)
0xffffffff81777327 <+22>: mov %rax,0x8(%rdi)
0xffffffff8177732b <+26>: mov %r8,0x18(%rdi)
0xffffffff8177732f <+30>: mov %rcx,0x20(%rdi)
0xffffffff81777333 <+34>: jmp 0xffffffff81d72960 <__x86_return_thunk>
It seems to be that the former is loading byte constants individually, whereas
Linus combined all those fields into a single byte and eliminated one of them.
David
next prev parent reply other threads:[~2023-08-18 16:50 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-16 12:07 [PATCH v3 0/2] iov_iter: Convert the iterator macros into inline funcs David Howells
2023-08-16 12:07 ` [PATCH v3 1/2] iov_iter: Convert iterate*() to " David Howells
2023-08-16 12:07 ` [PATCH v3 2/2] iov_iter: Don't deal with iter->copy_mc in memcpy_from_iter_mc() David Howells
2023-08-16 12:28 ` David Laight
2023-08-16 13:00 ` David Howells
2023-08-16 14:19 ` David Laight
2023-08-16 18:50 ` Linus Torvalds
2023-08-16 20:35 ` David Howells
2023-08-17 4:18 ` Linus Torvalds
2023-08-17 8:41 ` David Laight
2023-08-17 14:38 ` Linus Torvalds
2023-08-17 15:16 ` David Laight
2023-08-17 15:31 ` Linus Torvalds
2023-08-17 16:06 ` David Laight
2023-08-18 15:19 ` David Howells
2023-08-18 15:42 ` David Laight
2023-08-18 16:48 ` David Howells [this message]
2023-08-18 21:39 ` David Laight
2023-08-18 11:42 ` David Howells
2023-08-18 12:16 ` David Laight
2023-08-18 12:26 ` Matthew Wilcox
2023-08-18 12:41 ` David Laight
2023-08-18 13:33 ` David Howells
2023-08-18 11:39 ` David Howells
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=2093413.1692377320@warthog.procyon.org.uk \
--to=dhowells@redhat.com \
--cc=David.Laight@ACULAB.COM \
--cc=axboe@kernel.dk \
--cc=christian@brauner.io \
--cc=hch@list.de \
--cc=jlayton@kernel.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=torvalds@linux-foundation.org \
--cc=viro@zeniv.linux.org.uk \
--cc=willy@infradead.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;
as well as URLs for NNTP newsgroup(s).