mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
x86/xen: Convert comma to semicolon
[ Upstream commit 349d271416c61f82b853336509b1d0dc04c1fcbb ]
Replace a comma between expression statements by a semicolon.
Fixes: 8310b77b48 ("Xen/gnttab: handle p2m update errors on a per-slot basis")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20240702031010.1411875-1-nichen@iscas.ac.cn
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4334c498e6
commit
4fea889d5d
@@ -736,7 +736,7 @@ int set_foreign_p2m_mapping(struct gnttab_map_grant_ref *map_ops,
|
|||||||
* immediate unmapping.
|
* immediate unmapping.
|
||||||
*/
|
*/
|
||||||
map_ops[i].status = GNTST_general_error;
|
map_ops[i].status = GNTST_general_error;
|
||||||
unmap[0].host_addr = map_ops[i].host_addr,
|
unmap[0].host_addr = map_ops[i].host_addr;
|
||||||
unmap[0].handle = map_ops[i].handle;
|
unmap[0].handle = map_ops[i].handle;
|
||||||
map_ops[i].handle = INVALID_GRANT_HANDLE;
|
map_ops[i].handle = INVALID_GRANT_HANDLE;
|
||||||
if (map_ops[i].flags & GNTMAP_device_map)
|
if (map_ops[i].flags & GNTMAP_device_map)
|
||||||
@@ -746,7 +746,7 @@ int set_foreign_p2m_mapping(struct gnttab_map_grant_ref *map_ops,
|
|||||||
|
|
||||||
if (kmap_ops) {
|
if (kmap_ops) {
|
||||||
kmap_ops[i].status = GNTST_general_error;
|
kmap_ops[i].status = GNTST_general_error;
|
||||||
unmap[1].host_addr = kmap_ops[i].host_addr,
|
unmap[1].host_addr = kmap_ops[i].host_addr;
|
||||||
unmap[1].handle = kmap_ops[i].handle;
|
unmap[1].handle = kmap_ops[i].handle;
|
||||||
kmap_ops[i].handle = INVALID_GRANT_HANDLE;
|
kmap_ops[i].handle = INVALID_GRANT_HANDLE;
|
||||||
if (kmap_ops[i].flags & GNTMAP_device_map)
|
if (kmap_ops[i].flags & GNTMAP_device_map)
|
||||||
|
|||||||
Reference in New Issue
Block a user