io_uring: remove duplicated calls to io_kiocb_ppos
io_kiocb_ppos is called in both branches, and it seems that the compiler does not fuse this. Fusing removes a few bytes from loop_rw_iter. Before: $ nm -S fs/io_uring.o | grep loop_rw_iter 0000000000002430 0000000000000124 t loop_rw_iter After: $ nm -S fs/io_uring.o | grep loop_rw_iter 0000000000002430 000000000000010d t loop_rw_iter Signed-off-by:Dylan Yudaken <dylany@fb.com> Reviewed-by:
Pavel Begunkov <asml.silence@gmail.com> Signed-off-by:
Jens Axboe <axboe@kernel.dk>
Loading
-
mentioned in commit b4955372
-
mentioned in commit bcf85df2
-
mentioned in commit d32b8ce4
-
mentioned in commit abfb4298
-
mentioned in commit f467cc2c
-
mentioned in commit eca2afd1
-
mentioned in commit dede81e6
-
mentioned in commit 72304013
-
mentioned in commit f27b21ce
-
mentioned in commit f568c7ae
-
mentioned in commit b543e0d2
-
mentioned in commit a7e5fbd5
-
mentioned in commit 2a22fa4b
-
mentioned in commit 8b49dcda
-
mentioned in commit e6288c6e
-
mentioned in commit 399dee5a
-
mentioned in commit 1447d9bc
-
mentioned in commit 35a7cb40
-
mentioned in commit 5fb3baa2
-
mentioned in commit eef5595a
-
mentioned in commit c984cec3
-
mentioned in commit 6c93223d
-
mentioned in commit b5797655
-
mentioned in commit b0b3d93a
Please sign in to comment