From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0BF5EC433E0 for ; Tue, 28 Jul 2020 22:21:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D08EE2074F for ; Tue, 28 Jul 2020 22:21:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1595974902; bh=n0NBn5nz7a0g6H/t6fSK5dBR8kLi3g7fW2QCTMEF07o=; h=Date:From:To:Subject:In-Reply-To:Reply-To:List-ID:From; b=I1AP4WA8IqaXM0+sc4BsfEm+f4lNFlevLm+xKCkyQE7AbGs31BEfdx2hwE20Jmwjs +i7wDjFJkn/QpR9LQkcQ/EcXIYInQ83OqwBiQXOJoyOLbBHAqJEsWYWroNP2C0/29o 3qvOt0+E/+HN/52hFjmV7IefM+8WGgPayd5MbfbY= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729597AbgG1WVm (ORCPT ); Tue, 28 Jul 2020 18:21:42 -0400 Received: from mail.kernel.org ([198.145.29.99]:36882 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729491AbgG1WVm (ORCPT ); Tue, 28 Jul 2020 18:21:42 -0400 Received: from localhost.localdomain (c-73-231-172-41.hsd1.ca.comcast.net [73.231.172.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id A731F2070B; Tue, 28 Jul 2020 22:21:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1595974901; bh=n0NBn5nz7a0g6H/t6fSK5dBR8kLi3g7fW2QCTMEF07o=; h=Date:From:To:Subject:In-Reply-To:From; b=MNq3cyz21Mwez7Bg+EanDCRc6ctDmmeF5DnK9YlTE2MioA8I/auW6wpOXGq2CUHGb TwdKfzAqITgtTu4Oqz7THnn1UfSA4jqiamfjVmmxvtrh0teTK5sW2xrLRazc40K5n3 aZ0vqDe1W5DIQlBcB/EKpsMae3CL7Uz6d7Y5SybY= Date: Tue, 28 Jul 2020 15:21:41 -0700 From: Andrew Morton To: jcmvbkbc@gmail.com, mm-commits@vger.kernel.org, rppt@linux.ibm.com Subject: + xtensa-switch-to-generic-version-of-pte-allocation-fix.patch added to -mm tree Message-ID: <20200728222141.Z7xhxyTTM%akpm@linux-foundation.org> In-Reply-To: <20200723211432.b31831a0df3bc2cbdae31b40@linux-foundation.org> User-Agent: s-nail v14.8.16 Sender: mm-commits-owner@vger.kernel.org Precedence: bulk Reply-To: linux-kernel@vger.kernel.org List-ID: X-Mailing-List: mm-commits@vger.kernel.org The patch titled Subject: xtensa: fix closing endif comment has been added to the -mm tree. Its filename is xtensa-switch-to-generic-version-of-pte-allocation-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/xtensa-switch-to-generic-version-of-pte-allocation-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/xtensa-switch-to-generic-version-of-pte-allocation-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Max Filippov Subject: xtensa: fix closing endif comment Commit 8f74afa22d9b ("xtensa: switch to generic version of pte allocation") introduced the following build warning for xtensa arch/xtensa/include/asm/pgalloc.h:67:8: warning: extra tokens at end of #endif directive [-Wendif-labels] Fix #endif comment. Link: http://lkml.kernel.org/r/20200721024751.1257-1-jcmvbkbc@gmail.com Fixes: 8f74afa22d9b ("xtensa: switch to generic version of pte allocation") Signed-off-by: Max Filippov Reviewed-by: Mike Rapoport Signed-off-by: Andrew Morton --- arch/xtensa/include/asm/pgalloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/xtensa/include/asm/pgalloc.h~xtensa-switch-to-generic-version-of-pte-allocation-fix +++ a/arch/xtensa/include/asm/pgalloc.h @@ -69,6 +69,6 @@ static inline pgtable_t pte_alloc_one(st } #define pmd_pgtable(pmd) pmd_page(pmd) -#endif CONFIG_MMU +#endif /* CONFIG_MMU */ #endif /* _XTENSA_PGALLOC_H */ _ Patches currently in -mm which might be from jcmvbkbc@gmail.com are xtensa-switch-to-generic-version-of-pte-allocation-fix.patch