diff options
author | Will Deacon <will@kernel.org> | 2020-09-11 14:25:28 +0100 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2020-09-11 15:51:15 +0100 |
commit | 74cfa7ea66a7e54a5ea1d8ad1fb74a5e832ed867 (patch) | |
tree | f9bbe2c721bd8424457f7fb9698f3cbdebfb8e79 /arch/arm64/include/asm | |
parent | 3f26ab58e3272ceada11279c2e90894d4995cf79 (diff) | |
download | linux-74cfa7ea66a7e54a5ea1d8ad1fb74a5e832ed867.tar.gz linux-74cfa7ea66a7e54a5ea1d8ad1fb74a5e832ed867.tar.bz2 linux-74cfa7ea66a7e54a5ea1d8ad1fb74a5e832ed867.zip |
KVM: arm64: Remove unused 'pgd' field from 'struct kvm_s2_mmu'
The stage-2 page-tables are entirely encapsulated by the 'pgt' field of
'struct kvm_s2_mmu', so remove the unused 'pgd' field.
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Gavin Shan <gshan@redhat.com>
Cc: Marc Zyngier <maz@kernel.org>
Cc: Quentin Perret <qperret@google.com>
Link: https://lore.kernel.org/r/20200911132529.19844-21-will@kernel.org
Diffstat (limited to 'arch/arm64/include/asm')
-rw-r--r-- | arch/arm64/include/asm/kvm_host.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm64/include/asm/kvm_host.h b/arch/arm64/include/asm/kvm_host.h index 0b7c702b2151..41caf29bd93c 100644 --- a/arch/arm64/include/asm/kvm_host.h +++ b/arch/arm64/include/asm/kvm_host.h @@ -79,7 +79,6 @@ struct kvm_s2_mmu { * for vEL1/EL0 with vHCR_EL2.VM == 0. In that case, we use the * canonical stage-2 page tables. */ - pgd_t *pgd; phys_addr_t pgd_phys; struct kvm_pgtable *pgt; |