Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751726AbdFHTlu (ORCPT ); Thu, 8 Jun 2017 15:41:50 -0400 Received: from mail-wm0-f45.google.com ([74.125.82.45]:36802 "EHLO mail-wm0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751501AbdFHTlt (ORCPT ); Thu, 8 Jun 2017 15:41:49 -0400 From: Ard Biesheuvel To: linux-kernel@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org, jolsa@kernel.org, mingo@kernel.org, akpm@linux-foundation.org, zhongjiang@huawei.com, labbott@fedoraproject.org, mark.rutland@arm.com, Ard Biesheuvel Subject: [PATCH 0/2] arm64: fix crash when reading /proc/kcore Date: Thu, 8 Jun 2017 19:41:37 +0000 Message-Id: <20170608194139.9250-1-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.9.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 989 Lines: 27 This is a follow-up to patches from zhonjiang [0] and myself [1] that aim to solve a problem in the kcore code, which gets confused by the presence of block mappings in the vmalloc region. While fixing the crash is quite straight forward [2], we need to tweak the kcore code itself to ensure that it operates correctly on arm64. Fortunately, we can achieve this with two very simple changes: - replace a call to is_vmalloc_or_module_addr() in read_kcore() with a comparison of the kclist type field (#1) - enable CONFIG_ARCH_PROC_KCORE_TEXT for arm64 (#2) [0] http://marc.info/?l=linux-mm&m=149632393629295&w=2 [1] http://marc.info/?l=linux-mm&m=149685966530180&w=2 [2] http://marc.info/?l=linux-mm&m=149694975123959&w=2 Ard Biesheuvel (2): fs/proc: kcore: use kcore_list type to check for vmalloc/module address arm64: mm: select CONFIG_ARCH_PROC_KCORE_TEXT arch/arm64/Kconfig | 3 +++ fs/proc/kcore.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) -- 2.9.3