mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-10 12:09:31 +00:00
devices: vvu-proxy: Rename offset variable for shared memory bar
This change renames the `mem_offset` variable to a more readable name. BUG=None TEST=cargo build. Change-Id: I4cecd1caed73a7d112110934e0db0fc5d4baa4b8 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3806072 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Auto-Submit: Abhishek Bhardwaj <abhishekbh@chromium.org> Tested-by: Abhishek Bhardwaj <abhishekbh@chromium.org> Reviewed-by: Abhishek Bhardwaj <abhishekbh@chromium.org> Commit-Queue: Abhishek Bhardwaj <abhishekbh@chromium.org>
This commit is contained in:
parent
03b083907b
commit
4b42a6e5e4
1 changed files with 7 additions and 7 deletions
|
@ -248,9 +248,9 @@ struct Worker {
|
|||
// The bar representing the shared memory regions.
|
||||
shmem_pci_bar: Alloc,
|
||||
|
||||
// Offset at which to allocate the next shared memory region, corresponding
|
||||
// to the |SET_MEM_TABLE| sibling message.
|
||||
mem_offset: usize,
|
||||
// Offset within `shmem_pci_bar`at which to allocate the next shared memory region,
|
||||
// corresponding to the |SET_MEM_TABLE| sibling message.
|
||||
shmem_pci_bar_mem_offset: usize,
|
||||
|
||||
// Vring related data sent through |SET_VRING_KICK| and |SET_VRING_CALL|
|
||||
// messages.
|
||||
|
@ -770,7 +770,7 @@ impl Worker {
|
|||
}
|
||||
|
||||
let sibling_memory_size: u64 = contexts.iter().map(|region| region.memory_size).sum();
|
||||
if self.mem.memory_size() - self.mem_offset as u64 <= sibling_memory_size {
|
||||
if self.mem.memory_size() - self.shmem_pci_bar_mem_offset as u64 <= sibling_memory_size {
|
||||
bail!(
|
||||
"Memory size of Sibling VM ({}) must be smaller than the current memory size ({})",
|
||||
sibling_memory_size,
|
||||
|
@ -786,10 +786,10 @@ impl Worker {
|
|||
};
|
||||
let dest = VmMemoryDestination::ExistingAllocation {
|
||||
allocation: self.shmem_pci_bar,
|
||||
offset: self.mem_offset as u64,
|
||||
offset: self.shmem_pci_bar_mem_offset as u64,
|
||||
};
|
||||
self.register_memory(source, dest)?;
|
||||
self.mem_offset += region.memory_size as usize;
|
||||
self.shmem_pci_bar_mem_offset += region.memory_size as usize;
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
@ -1465,7 +1465,7 @@ impl VirtioVhostUser {
|
|||
tx_queue,
|
||||
main_process_tube,
|
||||
shmem_pci_bar,
|
||||
mem_offset: 0,
|
||||
shmem_pci_bar_mem_offset: 0,
|
||||
vrings,
|
||||
slave_req_helper,
|
||||
registered_memory: Vec::new(),
|
||||
|
|
Loading…
Reference in a new issue