mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-18 23:28:29 +00:00
vfs_pipe: Fix large transfers after 23.02
Readers need to be woken up when data is ready. Issue #4785
This commit is contained in:
committed by
Norman Feske
parent
d5051c439d
commit
9e0ef550a8
@ -209,8 +209,10 @@ struct Vfs_pipe::Pipe
|
|||||||
|
|
||||||
out_count = out;
|
out_count = out;
|
||||||
|
|
||||||
if (out > 0)
|
if (out > 0) {
|
||||||
vfs_user.wakeup_vfs_user();
|
vfs_user.wakeup_vfs_user();
|
||||||
|
notify_read();
|
||||||
|
}
|
||||||
|
|
||||||
return Write_result::WRITE_OK;
|
return Write_result::WRITE_OK;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user