drivers/xen: Improve the late XenStore init protocol
authorHenry Wang <xin.wang2@amd.com>
Fri, 17 May 2024 01:15:16 +0000 (09:15 +0800)
committerJuergen Gross <jgross@suse.com>
Thu, 23 May 2024 10:41:18 +0000 (12:41 +0200)
commita3607581cd49c17128a486a526a36a97bafcb2bb
treee6bcd3b13fbd0cc92776de837bf3b4b61cb79dbe
parent89af61fb8f0f96646e1462246a825c1268ba70ba
drivers/xen: Improve the late XenStore init protocol

Currently, the late XenStore init protocol is only triggered properly
for the case that HVM_PARAM_STORE_PFN is ~0ULL (invalid). For the
case that XenStore interface is allocated but not ready (the connection
status is not XENSTORE_CONNECTED), Linux should also wait until the
XenStore is set up properly.

Introduce a macro to describe the XenStore interface is ready, use
it in xenbus_probe_initcall() to select the code path of doing the
late XenStore init protocol or not. Since now we have more than one
condition for XenStore late init, rework the check in xenbus_probe()
for the free_irq().

Take the opportunity to enhance the check of the allocated XenStore
interface can be properly mapped, and return error early if the
memremap() fails.

Fixes: 5b3353949e89 ("xen: add support for initializing xenstore later as HVM domain")
Signed-off-by: Henry Wang <xin.wang2@amd.com>
Signed-off-by: Michal Orzel <michal.orzel@amd.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Link: https://lore.kernel.org/r/20240517011516.1451087-1-xin.wang2@amd.com
Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/xen/xenbus/xenbus_probe.c