From: David Howells <dhowells@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: dhowells@redhat.com, Alexander Viro <viro@zeniv.linux.org.uk>,
Jens Axboe <axboe@kernel.dk>, Christoph Hellwig <hch@lst.de>,
Christian Brauner <christian@brauner.io>,
Matthew Wilcox <willy@infradead.org>,
jlayton@kernel.org, linux-block@vger.kernel.org,
linux-fsdevel@vger.kernel.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: Re: [RFC PATCH] iov_iter: Convert iterate*() to inline funcs
Date: Fri, 11 Aug 2023 18:07:07 +0100 [thread overview]
Message-ID: <3888331.1691773627@warthog.procyon.org.uk> (raw)
In-Reply-To: <CAHk-=wi1QZ+zdXkjnEY7u1GsVDaBv8yY+m4-9G3R34ihwg9pmQ@mail.gmail.com>
Linus Torvalds <torvalds@linux-foundation.org> wrote:
> I like this generally, the code generation deprovement worries me a
> bit, but from a quick look on a test-branch it didn't really look all
> that bad (but the changes are too big to usefully show up as asm
> diffs)
Hmmm... It seems that using if-if-if rather than switch() gets optimised
better in terms of .text space. The attached change makes things a bit
smaller (by 69 bytes).
David
---
diff --git a/lib/iov_iter.c b/lib/iov_iter.c
index 8943ac25e202..f61474ec1c89 100644
--- a/lib/iov_iter.c
+++ b/lib/iov_iter.c
@@ -190,22 +190,18 @@ size_t iterate_and_advance(struct iov_iter *iter, size_t len, void *priv,
if (unlikely(!len))
return 0;
- switch (iov_iter_type(iter)) {
- case ITER_UBUF:
+ if (likely(iter_is_ubuf(iter)))
return iterate_ubuf(iter, len, priv, NULL, ustep);
- case ITER_IOVEC:
+ if (likely(iter_is_iovec(iter)))
return iterate_iovec(iter, len, priv, NULL, ustep);
- case ITER_KVEC:
+ if (iov_iter_is_kvec(iter))
return iterate_kvec(iter, len, priv, NULL, step);
- case ITER_BVEC:
+ if (iov_iter_is_bvec(iter))
return iterate_bvec(iter, len, priv, NULL, step);
- case ITER_XARRAY:
+ if (iov_iter_is_xarray(iter))
return iterate_xarray(iter, len, priv, NULL, step);
- case ITER_DISCARD:
- iter->count -= len;
- return len;
- }
- return 0;
+ iter->count -= len;
+ return len;
}
static __always_inline
@@ -217,22 +213,18 @@ size_t iterate_and_advance_csum(struct iov_iter *iter, size_t len, void *priv,
if (unlikely(!len))
return 0;
- switch (iov_iter_type(iter)) {
- case ITER_UBUF:
+ if (likely(iter_is_ubuf(iter)))
return iterate_ubuf(iter, len, priv, csum, ustep);
- case ITER_IOVEC:
+ if (likely(iter_is_iovec(iter)))
return iterate_iovec(iter, len, priv, csum, ustep);
- case ITER_KVEC:
+ if (iov_iter_is_kvec(iter))
return iterate_kvec(iter, len, priv, csum, step);
- case ITER_BVEC:
+ if (iov_iter_is_bvec(iter))
return iterate_bvec(iter, len, priv, csum, step);
- case ITER_XARRAY:
+ if (iov_iter_is_xarray(iter))
return iterate_xarray(iter, len, priv, csum, step);
- case ITER_DISCARD:
- iter->count -= len;
- return len;
- }
- return 0;
+ iter->count -= len;
+ return len;
}
static size_t copy_to_user_iter(void __user *iter_to, size_t progress,
next prev parent reply other threads:[~2023-08-11 17:08 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-11 14:32 [RFC PATCH] iov_iter: Convert iterate*() to inline funcs David Howells
2023-08-11 16:38 ` Linus Torvalds
2023-08-11 17:07 ` David Howells [this message]
2023-08-11 18:08 ` Linus Torvalds
2023-08-14 13:13 ` David Howells
2023-08-14 13:23 ` Matthew Wilcox
2023-08-15 11:12 ` David Laight
2023-08-15 12:51 ` 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=3888331.1691773627@warthog.procyon.org.uk \
--to=dhowells@redhat.com \
--cc=axboe@kernel.dk \
--cc=christian@brauner.io \
--cc=hch@lst.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).