summaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2011-03-24 21:34:32 +0100
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2011-03-29 16:01:03 +0200
commitb83c6e55ac482f08984504d61382ecf05f0afe32 (patch)
treea8f0881ab4ca243b9cb87193b259a9ff20023aa5 /drivers/xen
parentxen/p2m: Allocate p2m tracking pages on override (diff)
downloadlinux-b83c6e55ac482f08984504d61382ecf05f0afe32.tar.xz
linux-b83c6e55ac482f08984504d61382ecf05f0afe32.zip
xen: fix p2m section mismatches
Fix section mismatch warnings: set_phys_range_identity() is called by __init xen_set_identity(), so also mark set_phys_range_identity() as __init. then: __early_alloc_p2m() is called set_phys_range_identity(), so also mark __early_alloc_p2m() as __init. WARNING: arch/x86/built-in.o(.text+0x7856): Section mismatch in reference from the function __early_alloc_p2m() to the function .init.text:extend_brk() The function __early_alloc_p2m() references the function __init extend_brk(). This is often because __early_alloc_p2m lacks a __init annotation or the annotation of extend_brk is wrong. WARNING: arch/x86/built-in.o(.text+0x7967): Section mismatch in reference from the function set_phys_range_identity() to the function .init.text:extend_brk() The function set_phys_range_identity() references the function __init extend_brk(). This is often because set_phys_range_identity lacks a __init annotation or the annotation of extend_brk is wrong. [v2: Per Stephen Hemming recommonedation made __early_alloc_p2m static] Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen')
0 files changed, 0 insertions, 0 deletions