[PATCH] KVM: PPC: Book3s HV: Fix tlbie compile error

2014-06-11 Thread Alexander Graf
Some compilers complain about uninitialized variables in the compute_tlbie_rb function. When you follow the code path you'll realize that we'll never get to that point, but the compiler isn't all that smart. So just default to 4k page sizes for everything, making the compiler happy and the code

Re: [PATCH] KVM: PPC: Book3s HV: Fix tlbie compile error

2014-06-11 Thread Paul Mackerras
On Wed, Jun 11, 2014 at 05:16:02PM +0200, Alexander Graf wrote: Some compilers complain about uninitialized variables in the compute_tlbie_rb function. When you follow the code path you'll realize that we'll never get to that point, but the compiler isn't all that smart. So just default to