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=-5.5 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 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 B60D7C433DF for ; Wed, 12 Aug 2020 01:08:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9B584206B5 for ; Wed, 12 Aug 2020 01:08:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726518AbgHLBIF (ORCPT ); Tue, 11 Aug 2020 21:08:05 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:39408 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726173AbgHLBIF (ORCPT ); Tue, 11 Aug 2020 21:08:05 -0400 Received: from DGGEMS403-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id D453732FD42127E7D3BA; Wed, 12 Aug 2020 09:08:02 +0800 (CST) Received: from [10.174.178.86] (10.174.178.86) by smtp.huawei.com (10.3.19.203) with Microsoft SMTP Server (TLS) id 14.3.487.0; Wed, 12 Aug 2020 09:07:44 +0800 Subject: Re: [PATCH v3 0/8] huge vmalloc mappings To: Jonathan Cameron , Nicholas Piggin CC: , , , , "Catalin Marinas" , Will Deacon , , Thomas Gleixner , Ingo Molnar , Borislav Petkov , , "H. Peter Anvin" References: <20200810022732.1150009-1-npiggin@gmail.com> <20200811173217.0000161e@huawei.com> From: Zefan Li Message-ID: Date: Wed, 12 Aug 2020 09:07:44 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.8.0 MIME-Version: 1.0 In-Reply-To: <20200811173217.0000161e@huawei.com> Content-Type: text/plain; charset="gbk" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.174.178.86] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2020/8/12 0:32, Jonathan Cameron wrote: > On Mon, 10 Aug 2020 12:27:24 +1000 > Nicholas Piggin wrote: > >> Not tested on x86 or arm64, would appreciate a quick test there so I can >> ask Andrew to put it in -mm. Other option is I can disable huge vmallocs >> for them for the time being. > > Hi Nicholas, > > For arm64 testing with a Kunpeng920. > > I ran a quick sanity test with this series on top of mainline (yes mid merge window > so who knows what state is...). Could I be missing some dependency? > > Without them it boots, with them it doesn't. Any immediate guesses? > I've already reported this bug in v2, and yeah I also tested it on arm64 (not Kunpeng though), so looks like it still hasn't been fixed. ... >> >> Since v2: >> - Rebased on vmalloc cleanups, split series into simpler pieces. >> - Fixed several compile errors and warnings >> - Keep the page array and accounting in small page units because >> struct vm_struct is an interface (this should fix x86 vmap stack debug >> assert). [Thanks Zefan] though the changelog says it's fixed for x86.