mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-28 22:54:05 +08:00
xen:pvhvm: Modpost section mismatch fix
Removing __init from check_platform_magic since it is called by xen_unplug_emulated_devices in non-init contexts (It probably gets inlined because of -finline-functions-called-once, removing __init is more to avoid mismatch being reported). Signed-off-by: Raghavendra D Prabhu <rprabhu@wnohang.net> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
This commit is contained in:
parent
ee339fe63a
commit
3c52b7bf69
@ -35,7 +35,7 @@ EXPORT_SYMBOL_GPL(xen_platform_pci_unplug);
|
||||
#ifdef CONFIG_XEN_PVHVM
|
||||
static int xen_emul_unplug;
|
||||
|
||||
static int __init check_platform_magic(void)
|
||||
static int check_platform_magic(void)
|
||||
{
|
||||
short magic;
|
||||
char protocol;
|
||||
|
Loading…
Reference in New Issue
Block a user