Re: [PATCH v9 10/27] gunyah: rsc_mgr: Add VM lifecycle RPC
From: Elliot Berman <hidden>
Date: 2023-01-30 21:43:50
Also in:
linux-arm-msm, linux-devicetree, linux-doc, lkml
From: Elliot Berman <hidden>
Date: 2023-01-30 21:43:50
Also in:
linux-arm-msm, linux-devicetree, linux-doc, lkml
On 1/24/2023 10:12 PM, Srivatsa Vaddagiri wrote:
* Elliot Berman [off-list ref] [2023-01-20 14:46:09]:quoted
+int gh_rm_vm_stop(struct gh_rm *rm, u16 vmid) +{ + struct gh_vm_stop_req req_payload = { + .vmid = cpu_to_le16(vmid), + }; + void *resp; + size_t resp_size; + int ret; + + ret = gh_rm_call(rm, GH_RM_RPC_VM_STOP, &req_payload, sizeof(req_payload), + &resp, &resp_size);Why not use gh_rm_common_vmid_call() here as well? return gh_rm_common_vmid_call(rm, GH_RM_RPC_VM_STOP, vmid);
gh_vm_stop_req isn't the same as the common payload. _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel