mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-27 09:02:06 +00:00
xen: branch for v5.11-rc8
-----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQRTLbB6QfY48x44uB6AXGG7T9hjvgUCYCUrYAAKCRCAXGG7T9hj voF2AP9x3wKo+kYAqlRQrrDBb/AoMezoJ3pFiqJ+1Lg4yK4N6AD+IQxHuIODBfgj bK12hr5oE6S3e7tTaVWweWzys5UmWA4= =zleO -----END PGP SIGNATURE----- Merge tag 'for-linus-5.11-rc8-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip Pull xen fix from Juergen Gross: "A single fix for an issue introduced this development cycle: when running as a Xen guest on Arm systems the kernel will hang during boot" * tag 'for-linus-5.11-rc8-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip: arm/xen: Don't probe xenbus as part of an early initcall
This commit is contained in:
commit
2dbbaae5f7
4 changed files with 1 additions and 6 deletions
|
@ -370,8 +370,6 @@ static int __init xen_guest_init(void)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
gnttab_init();
|
gnttab_init();
|
||||||
if (!xen_initial_domain())
|
|
||||||
xenbus_probe();
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Making sure board specific code will not set up ops for
|
* Making sure board specific code will not set up ops for
|
||||||
|
|
|
@ -115,7 +115,6 @@ int xenbus_probe_node(struct xen_bus_type *bus,
|
||||||
const char *type,
|
const char *type,
|
||||||
const char *nodename);
|
const char *nodename);
|
||||||
int xenbus_probe_devices(struct xen_bus_type *bus);
|
int xenbus_probe_devices(struct xen_bus_type *bus);
|
||||||
void xenbus_probe(void);
|
|
||||||
|
|
||||||
void xenbus_dev_changed(const char *node, struct xen_bus_type *bus);
|
void xenbus_dev_changed(const char *node, struct xen_bus_type *bus);
|
||||||
|
|
||||||
|
|
|
@ -683,7 +683,7 @@ void unregister_xenstore_notifier(struct notifier_block *nb)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(unregister_xenstore_notifier);
|
EXPORT_SYMBOL_GPL(unregister_xenstore_notifier);
|
||||||
|
|
||||||
void xenbus_probe(void)
|
static void xenbus_probe(void)
|
||||||
{
|
{
|
||||||
xenstored_ready = 1;
|
xenstored_ready = 1;
|
||||||
|
|
||||||
|
|
|
@ -192,8 +192,6 @@ void xs_suspend_cancel(void);
|
||||||
|
|
||||||
struct work_struct;
|
struct work_struct;
|
||||||
|
|
||||||
void xenbus_probe(void);
|
|
||||||
|
|
||||||
#define XENBUS_IS_ERR_READ(str) ({ \
|
#define XENBUS_IS_ERR_READ(str) ({ \
|
||||||
if (!IS_ERR(str) && strlen(str) == 0) { \
|
if (!IS_ERR(str) && strlen(str) == 0) { \
|
||||||
kfree(str); \
|
kfree(str); \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue