Browse Source

KVM: shut up uninit compiler warning in paging_tmpl.h

Dixes compilation warning:
  CC      arch/x86/kernel/io_delay.o
 arch/x86/kvm/paging_tmpl.h: In function ‘paging64_fetch’:
 arch/x86/kvm/paging_tmpl.h:279: warning: ‘sptep’ may be used uninitialized in this function
 arch/x86/kvm/paging_tmpl.h: In function ‘paging32_fetch’:
 arch/x86/kvm/paging_tmpl.h:279: warning: ‘sptep’ may be used uninitialized in this function

warning is bogus (always have a least one level), but need to shut the compiler
up.

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Jaswinder Singh Rajput 16 years ago
parent
commit
bde8922325
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/x86/kvm/paging_tmpl.h

+ 1 - 1
arch/x86/kvm/paging_tmpl.h

@@ -281,7 +281,7 @@ static u64 *FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr,
 {
 {
 	unsigned access = gw->pt_access;
 	unsigned access = gw->pt_access;
 	struct kvm_mmu_page *shadow_page;
 	struct kvm_mmu_page *shadow_page;
-	u64 spte, *sptep;
+	u64 spte, *sptep = NULL;
 	int direct;
 	int direct;
 	gfn_t table_gfn;
 	gfn_t table_gfn;
 	int r;
 	int r;