From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-178.mta0.migadu.com (out-178.mta0.migadu.com [91.218.175.178]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6D92C3382E1; Thu, 9 Jul 2026 02:33:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.178 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783564431; cv=none; b=sX/dK7SU4r1I/GuzcG4g3kLawNv0usAGQIsGH4v7ByJjW0xCwnosYzbKtWq2U7csy4yl69bTgHH+sqCdgiPU7oi7+kqJegBgJVb/AM58OCdy7GmpSud6auc6GWyTEQz1JjVZ+gAEZhZRTIwVp+cEFbV5Q4mtp1tMBbIqXWX+iL0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783564431; c=relaxed/simple; bh=HzUw7rCHO0FnTt3sdVgm/XNvnD31q2tYJNPlOGoz6Ww=; h=Content-Type:Mime-Version:Subject:From:In-Reply-To:Date:Cc: Message-Id:References:To; b=hrLvyv/8FLGCYNBM3MQPu+udjd9xqahCjXnldYdoUymLjWpCdZzi2DwFmJKrvpKuoVtrv84z8nFw2om1QQ45Mflb4jnBSCkMp5wb11FzSYsqR9KStemdByPw/DlJmXXBbPc2sUz/hRwYsI95OkJpajPfT/OefgLFubY9Ej43/mQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=r7Q1Gay2; arc=none smtp.client-ip=91.218.175.178 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="r7Q1Gay2" Content-Type: text/plain; charset=us-ascii DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1783564422; 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: in-reply-to:in-reply-to:references:references; bh=rUCzNBo2De+EFhwds+D3LViOOG1LNZhzLGOzUdX1xuI=; b=r7Q1Gay2oSrwXoJ7iuGffU4EvlFvnQegMN9d4T+5AoK8K6sgF+4mGzBYKl3UE2JSFm73T0 nD7oIrq/l0m1+Cwb69+VpKifvk6gBPY9qQtfiRjT7Zdc/WfGNfp/r5odSTR2WV5vHPkTxy 6p2kuqkiRW5gtdYt9D3ws9ynXwO52eg= Precedence: bulk X-Mailing-List: linux-s390@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3864.600.51.1.1\)) Subject: Re: [PATCH 01/10] x86/mm: drop order parameter from free_pagetable() X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Muchun Song In-Reply-To: <20260708-bootmem_info_part2-v1-1-156ce4986598@kernel.org> Date: Thu, 9 Jul 2026 10:32:57 +0800 Cc: Dave Hansen , Andy Lutomirski , Peter Zijlstra , Thomas Gleixner , Ingo Molnar , Borislav Petkov , x86@kernel.org, "H. Peter Anvin" , Andrew Morton , Lorenzo Stoakes , "Liam R. Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , Brendan Jackman , Johannes Weiner , Zi Yan , Alexander Gordeev , Gerald Schaefer , Heiko Carstens , Vasily Gorbik , Christian Borntraeger , Sven Schnelle , Oscar Salvador , linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-s390@vger.kernel.org Content-Transfer-Encoding: 7bit Message-Id: <8ED0A21F-15DA-4B82-A326-88DDF7466CB6@linux.dev> References: <20260708-bootmem_info_part2-v1-0-156ce4986598@kernel.org> <20260708-bootmem_info_part2-v1-1-156ce4986598@kernel.org> To: "David Hildenbrand (Arm)" X-Migadu-Flow: FLOW_OUT > On Jul 8, 2026, at 22:10, David Hildenbrand (Arm) wrote: > > All callers pass 0, so let's drop the parameter. > > Signed-off-by: David Hildenbrand (Arm) Reviewed-by: Muchun Song Thanks.