commit | 8cd54c1c848031a87820e58d772166ffdf8c08c0 | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Thu Apr 22 14:50:39 2021 -0400 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Thu Jun 10 11:45:08 2021 -0400 |
tree | 3945e5cf8c6639ec53c30da0cc9784adefec58d5 | |
parent | 556351c1c09ad6511bc2eaa2c214992192f50410 [diff] |
iov_iter: separate direction from flavour Instead of having them mixed in iter->type, use separate ->iter_type and ->data_source (u8 and bool resp.) And don't bother with (pseudo-) bitmap for the former - microoptimizations from being able to check if the flavour is one of two values are not worth the confusion for optimizer. It can't prove that we never get e.g. ITER_IOVEC | ITER_PIPE, so we end up with extra headache. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>