The rapid growth of io_uring
The rapid growth of io_uring
Posted Jan 27, 2020 0:23 UTC (Mon) by cesarb (subscriber, #6266)In reply to: The rapid growth of io_uring by grober
Parent article: The rapid growth of io_uring
Actually, everything is asynchronous internally. The kernel submits a request to the disk hardware, and some time later, the disk hardware interrupts the kernel to tell it's done. In the meantime, the CPU can be doing something else, be it running another thread or (with asynchronous I/O like io_uring) doing something else on the same thread.
