mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-02-22 11:22:26 +00:00
vmm: Directly clone console resize pipe
Beta clippy fix: warning: this call to `as_ref.map(...)` does nothing --> vmm/src/device_manager.rs🔢9 | 1234 | self.console_resize_pipe.as_ref().map(Arc::clone) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `self.console_resize_pipe.clone()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_asref = note: `#[warn(clippy::useless_asref)]` on by default Signed-off-by: Rob Bradford <rbradford@rivosinc.com> (cherry picked from commit e70bf598097b78e43d4f2dfef5fe41f1348dba70)
This commit is contained in:
parent
196a59f209
commit
448fafd23a
@ -1177,7 +1177,7 @@ impl DeviceManager {
|
||||
}
|
||||
|
||||
pub fn console_resize_pipe(&self) -> Option<Arc<File>> {
|
||||
self.console_resize_pipe.as_ref().map(Arc::clone)
|
||||
self.console_resize_pipe.clone()
|
||||
}
|
||||
|
||||
pub fn create_devices(
|
||||
|
Loading…
x
Reference in New Issue
Block a user