Better io tags handling (#269)

This commit is contained in:
Nikolay Kim 2023-12-14 15:42:19 +06:00 committed by GitHub
parent 6adeadfff0
commit fb1d2a268d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 108 additions and 60 deletions

View file

@ -46,7 +46,7 @@ impl ReadContext {
// dest buffer has new data, wake up dispatcher
if inner.buffer.read_destination_size() >= hw {
log::trace!(
"{}Io read buffer is too large {}, enable read back-pressure",
"{}: Io read buffer is too large {}, enable read back-pressure",
self.0.tag(),
total
);
@ -62,7 +62,7 @@ impl ReadContext {
inner.read_task.wake();
}
}
log::trace!("{}New {} bytes available, wakeup dispatcher", self.0.tag(), nbytes);
log::trace!("{}: New {} bytes available, wakeup dispatcher", self.0.tag(), nbytes);
inner.dispatch_task.wake();
} else {
if nbytes >= hw {