diff options
author | Ian Campbell <ian.campbell@citrix.com> | 2011-02-11 15:23:58 +0000 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-02-11 14:46:25 -0500 |
commit | 6b08cfebd3bd346d8a2fd68a2265fc7736849802 (patch) | |
tree | ef88667416dc536887f514fdc3f79a41e9822173 /arch/x86/xen/p2m.c | |
parent | b052181a985592f81767f631f9f42accb4b436cd (diff) | |
download | linux-3.10-6b08cfebd3bd346d8a2fd68a2265fc7736849802.tar.gz linux-3.10-6b08cfebd3bd346d8a2fd68a2265fc7736849802.tar.bz2 linux-3.10-6b08cfebd3bd346d8a2fd68a2265fc7736849802.zip |
xen p2m: annotate variable which appears unused
CC arch/x86/xen/p2m.o
arch/x86/xen/p2m.c: In function 'm2p_remove_override':
arch/x86/xen/p2m.c:460: warning: 'address' may be used uninitialized in this function
arch/x86/xen/p2m.c: In function 'm2p_add_override':
arch/x86/xen/p2m.c:426: warning: 'address' may be used uninitialized in this function
In actual fact address is inialised in one "if (!PageHighMem(page))"
statement and used in a second and so is always initialised before
use.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'arch/x86/xen/p2m.c')
-rw-r--r-- | arch/x86/xen/p2m.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/xen/p2m.c b/arch/x86/xen/p2m.c index fd12d7ce7ff..89342e5fd08 100644 --- a/arch/x86/xen/p2m.c +++ b/arch/x86/xen/p2m.c @@ -421,7 +421,7 @@ int m2p_add_override(unsigned long mfn, struct page *page) { unsigned long flags; unsigned long pfn; - unsigned long address; + unsigned long uninitialized_var(address); unsigned level; pte_t *ptep = NULL; @@ -455,7 +455,7 @@ int m2p_remove_override(struct page *page) unsigned long flags; unsigned long mfn; unsigned long pfn; - unsigned long address; + unsigned long uninitialized_var(address); unsigned level; pte_t *ptep = NULL; |