Vergelijk commits

...

1 Commits

Auteur SHA1 Bericht Datum
Vitaliy Filippov 9c33de5e57 Test: use submit_and_wait() 2020-03-03 17:48:47 +03:00
3 gewijzigde bestanden met toevoegingen van 1 en 8 verwijderingen

Bestand weergeven

@ -196,11 +196,6 @@ void blockstore_impl_t::loop()
{
flusher->loop();
}
int ret = ringloop->submit();
if (ret < 0)
{
throw std::runtime_error(std::string("io_uring_submit: ") + strerror(-ret));
}
if ((initial_ring_space - ringloop->space_left()) > 0)
{
live = true;

Bestand weergeven

@ -175,7 +175,6 @@ void osd_t::loop()
handle_peers();
read_requests();
send_replies();
ringloop->submit();
}
void osd_t::handle_epoll_events()

Bestand weergeven

@ -146,8 +146,7 @@ public:
}
inline int wait()
{
struct io_uring_cqe *cqe;
return io_uring_wait_cqe(&ring, &cqe);
return io_uring_submit_and_wait(&ring, 1);
}
inline unsigned space_left()
{