From patchwork Tue Jan 12 17:01:36 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Gleixner X-Patchwork-Id: 1425318 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=sparclinux-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=pass (p=none dis=none) header.from=linutronix.de Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; secure) header.d=linutronix.de header.i=@linutronix.de header.a=rsa-sha256 header.s=2020 header.b=DZu8uG7d; dkim=pass header.d=linutronix.de header.i=@linutronix.de header.a=ed25519-sha256 header.s=2020e header.b=AKcWVL8y; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4DFcQy5jNNz9sW1 for ; Wed, 13 Jan 2021 04:05:46 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2392230AbhALRFa (ORCPT ); Tue, 12 Jan 2021 12:05:30 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42332 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2391149AbhALRF3 (ORCPT ); Tue, 12 Jan 2021 12:05:29 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 714D5C061786; Tue, 12 Jan 2021 09:04:49 -0800 (PST) Message-Id: <20210112170136.078559026@linutronix.de> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1610471087; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=tKnPKgOdjqfVE5gq0YQdeK/yGmcuA2zAsck1bmF/D2g=; b=DZu8uG7dTU5Kj0d7WCp3vFU/NgxGwfsBId0ZYpWKrO15VrKfOHQ6VNm/AGD9Py4Zjoack9 2n+EPNzSvQqfyOwfkk96Z87e4Pq1KmrDUp17O1affQ/OFlq60kvrkgtScr1iU+zVdIkXuK m1GyqTRgqqO0eZG6iCqMzaRr1vdmwSNLArKM93EmnsyMUK4caj8oAC6alWjfqVfme4sC/A qx6W84y9Q/ntYJbhe9XWeFH2XyVfGdOuRMN8l7qSlw5Yws/H0/dghrl5wfLxZ7RwlyPhW1 bDTmxl3bJdT7jw3sehfBeQNPG5nsZlR0g4lZxxDRe/u/qWOt47kl3wG1FvJbew== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1610471087; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=tKnPKgOdjqfVE5gq0YQdeK/yGmcuA2zAsck1bmF/D2g=; b=AKcWVL8y0uJsz/xWkNM+tA6hNPXTIuoAZNyLRkg4cPuyuS0WZRjVpxmVSK2WtpLZB8fv81 v0zLeIaJtJQT/5AQ== Date: Tue, 12 Jan 2021 18:01:36 +0100 From: Thomas Gleixner To: LKML Cc: Andrew Morton , linux-mm@kvack.org, Peter Zijlstra , Andreas Larsson , "David S. Miller" , sparclinux@vger.kernel.org, Paul Cercueil , Thomas Bogendoerfer , Michael Ellerman , linuxppc-dev@lists.ozlabs.org Subject: [patch 0/4] mm/highmem: Fix fallout from generic kmap_local conversions MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: sparclinux@vger.kernel.org The kmap_local conversion wreckaged sparc, mips and powerpc as it missed some of the details in the original implementation. The following series addresses that. Thanks, tglx --- arch/mips/include/asm/highmem.h | 1 + arch/sparc/include/asm/highmem.h | 9 +++++---- b/arch/powerpc/include/asm/highmem.h | 2 ++ mm/highmem.c | 7 ++++++- 4 files changed, 14 insertions(+), 5 deletions(-)