]> git.baikalelectronics.ru Git - kernel.git/commit
block: use flags instead of bit fields for blkdev_dio
authorJens Axboe <axboe@kernel.dk>
Thu, 14 Oct 2021 17:17:43 +0000 (11:17 -0600)
committerJens Axboe <axboe@kernel.dk>
Mon, 18 Oct 2021 12:17:36 +0000 (06:17 -0600)
commit54c20dccbe20abec6969e1c2bfb0c6d726d58621
tree819a1176d8f146fc9939b2924470831c23377187
parent81e8126c0e1c79889534f3f7f9fa126dde7d41aa
block: use flags instead of bit fields for blkdev_dio

This generates a lot better code for me, and bumps performance from
7650K IOPS to 7750K IOPS. Looking at profiles for the run and running
perf diff, it confirms that we're now sending a lot less time there:

     6.38%     -2.80%  [kernel.vmlinux]  [k] blkdev_direct_IO

Taking it from the 2nd most cycle consumer to only the 9th most at
3.35% of the CPU time.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/fops.c