From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Dmitry Safonov Subject: [PATCH v2 09/19] s390/vdso: Remove vdso_base pointer from mm->context Date: Tue, 24 Nov 2020 00:29:22 +0000 Message-Id: <20201124002932.1220517-10-dima@arista.com> In-Reply-To: <20201124002932.1220517-1-dima@arista.com> References: <20201124002932.1220517-1-dima@arista.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-ID: To: linux-kernel@vger.kernel.org Cc: Dmitry Safonov <0x7f454c46@gmail.com>, Dmitry Safonov , Alexander Viro , Andrew Morton , Andy Lutomirski , Arnd Bergmann , Borislav Petkov , Catalin Marinas , Christophe Leroy , Guo Ren , "H. Peter Anvin" , Ingo Molnar , Oleg Nesterov , Russell King , Thomas Bogendoerfer , Thomas Gleixner , Vincenzo Frascino , Will Deacon , x86@kernel.org, Christian Borntraeger , Heiko Carstens , Vasily Gorbik , linux-s390@vger.kernel.org Not used any more. Cc: Christian Borntraeger Cc: Heiko Carstens Cc: Vasily Gorbik Cc: linux-s390@vger.kernel.org Signed-off-by: Dmitry Safonov --- arch/s390/include/asm/mmu.h | 1 - arch/s390/kernel/vdso.c | 10 ---------- 2 files changed, 11 deletions(-) diff --git a/arch/s390/include/asm/mmu.h b/arch/s390/include/asm/mmu.h index e12ff0f29d1a..095d0596f700 100644 --- a/arch/s390/include/asm/mmu.h +++ b/arch/s390/include/asm/mmu.h @@ -15,7 +15,6 @@ typedef struct { unsigned long gmap_asce; unsigned long asce; unsigned long asce_limit; - unsigned long vdso_base; /* The mmu context belongs to a secure guest. */ atomic_t is_protected; /* diff --git a/arch/s390/kernel/vdso.c b/arch/s390/kernel/vdso.c index 810b72f8985c..3f07711a07c1 100644 --- a/arch/s390/kernel/vdso.c +++ b/arch/s390/kernel/vdso.c @@ -58,18 +58,9 @@ static vm_fault_t vdso_fault(const struct vm_special_mapping *sm, return 0; } -static int vdso_mremap(const struct vm_special_mapping *sm, - struct vm_area_struct *vma) -{ - current->mm->context.vdso_base = vma->vm_start; - - return 0; -} - static const struct vm_special_mapping vdso_mapping = { .name = "[vdso]", .fault = vdso_fault, - .mremap = vdso_mremap, }; static int __init vdso_setup(char *str) @@ -204,7 +195,6 @@ int arch_setup_additional_pages(unsigned long *sysinfo_ehdr) goto out_up; } - current->mm->context.vdso_base = vdso_base; *sysinfo_ehdr = vdso_base; rc = 0; -- 2.29.2