mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-04 19:11:11 +00:00
vmm: Only warn on error when setting up SIGWINCH handler
Setting up the SIGWINCH handler requires at least Linux 5.7. However this functionality is not required for basic PTY operation. Fixes: #3456 Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
df21e15148
commit
afe386bc13
@ -1712,9 +1712,14 @@ impl DeviceManager {
|
||||
let seccomp_filter =
|
||||
get_seccomp_filter(&self.seccomp_action, Thread::PtyForeground).unwrap();
|
||||
|
||||
let pipe = start_sigwinch_listener(seccomp_filter, pty)?;
|
||||
|
||||
self.console_resize_pipe = Some(Arc::new(pipe));
|
||||
match start_sigwinch_listener(seccomp_filter, pty) {
|
||||
Ok(pipe) => {
|
||||
self.console_resize_pipe = Some(Arc::new(pipe));
|
||||
}
|
||||
Err(e) => {
|
||||
warn!("Ignoring error from setting up SIGWINCH listener: {}", e)
|
||||
}
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user