We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45b664f commit f06e43dCopy full SHA for f06e43d
1 file changed
compio-driver/src/sys/driver/iour/mod.rs
@@ -201,10 +201,7 @@ impl Driver {
201
match entry.user_data() {
202
Self::CANCEL => {}
203
Self::NOTIFY => {
204
- let flags = entry.flags();
205
- if !more(flags) {
206
- self.need_push_notifier = true;
207
- }
+ self.need_push_notifier = true;
208
if let Err(_e) = self.notifier.clear() {
209
error!("failed to clear notifier: {_e}");
210
}
@@ -363,7 +360,6 @@ impl Driver {
363
360
#[allow(clippy::useless_conversion)]
364
361
self.push_raw(
365
362
PollAdd::new(Fd(self.notifier.as_raw_fd()), libc::POLLIN as _)
366
- .multi(true)
367
.build()
368
.user_data(Self::NOTIFY)
369
.into(),
0 commit comments