xen/memory: Fix compat XENMEM_acquire_resource for size requests
authorAndrew Cooper <andrew.cooper3@citrix.com>
Thu, 21 Jan 2021 15:20:00 +0000 (16:20 +0100)
committerJan Beulich <jbeulich@suse.com>
Thu, 21 Jan 2021 15:20:00 +0000 (16:20 +0100)
Copy the nr_frames from the structure which actually has the correct value, so
the caller doesn't unconditionally receive 0.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Paul Durrant <paul@xen.org>
master commit: 414be7b66349e7dca42bc1fd47c2b2f5b2d27432
master date: 2021-01-12 18:17:02 +0000

xen/common/compat/memory.c

index 3851f756c7b8865719322080e02d61dcf6e70a78..ed92e05b083377405ce14d1c414015ff37c9fa36 100644 (file)
@@ -599,7 +599,7 @@ int compat_memory_op(unsigned int cmd, XEN_GUEST_HANDLE_PARAM(void) compat)
                 if ( __copy_field_to_guest(
                          guest_handle_cast(compat,
                                            compat_mem_acquire_resource_t),
-                         &cmp.mar, nr_frames) )
+                         nat.mar, nr_frames) )
                     return -EFAULT;
             }
             else