From: Julien Grall Date: Tue, 25 Feb 2020 18:36:33 +0000 (+0000) Subject: xen/grant-table: Remove 'led' variable in map_grant_ref X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~575 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e57b00f0b7e8a932fabd8524465972f9c4d2e507;p=xen.git xen/grant-table: Remove 'led' variable in map_grant_ref The name of the variable 'led' is confusing and only used in one place a line after. So remove it. Signed-off-by: Julien Grall Acked-by: Andrew Cooper --- diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c index 057c78f620..9fd6e60416 100644 --- a/xen/common/grant_table.c +++ b/xen/common/grant_table.c @@ -944,7 +944,6 @@ map_grant_ref( struct domain *ld, *rd, *owner = NULL; struct grant_table *lgt, *rgt; grant_ref_t ref; - struct vcpu *led; grant_handle_t handle; mfn_t mfn; struct page_info *pg = NULL; @@ -957,8 +956,7 @@ map_grant_ref( uint16_t *status; bool_t need_iommu; - led = current; - ld = led->domain; + ld = current->domain; if ( unlikely((op->flags & (GNTMAP_device_map|GNTMAP_host_map)) == 0) ) {