Fix filter leak during Io drop (#274)

This commit is contained in:
Nikolay Kim 2023-12-25 11:15:59 +00:00 committed by GitHub
parent a4f9802d6d
commit dd6db862f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 20 additions and 7 deletions

View file

@ -62,7 +62,11 @@ 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 {