Re: [PATCH] kvm/i386: replace identity_base variable with a constant

2024-09-04 Thread Ani Sinha
> On 4 Sep 2024, at 6:02 PM, Paolo Bonzini wrote: > > identity_base variable is first initialzied to address 0xfffbc000 and then > kvm_vm_set_identity_map_addr() overrides this value to address 0xfeffc000. > The initial address to which the variable was initialized was never used. > Clean > e

[PATCH] kvm/i386: replace identity_base variable with a constant

2024-09-04 Thread Paolo Bonzini
identity_base variable is first initialzied to address 0xfffbc000 and then kvm_vm_set_identity_map_addr() overrides this value to address 0xfeffc000. The initial address to which the variable was initialized was never used. Clean everything up, placing 0xfeffc000 in a preprocessor constant. Report