From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 74DCA35CB98 for ; Wed, 19 Nov 2025 13:09:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763557743; cv=none; b=Bc9NuYwFzG0F6HHfbbvxMJKVniHes98IBn+aNOXGXfNTnKJxYHJ6Go1M78tTFZTr5uxvjiuGLs56nVK+c2fe8g0DmGdfjiDIIKrxcPtntwtnxSMI1Z2fK5QfZ6kTOZufCFS0+pSQDU5nTQhHE0QgNpLqrtrvCdWrv30TSFF1sSU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763557743; c=relaxed/simple; bh=SF5bUmLdJVDFmGC7+UoVBgVyA11BD/B78JzuawAG8zs=; h=Date:Message-ID:From:To:Cc:Subject:In-Reply-To:References: MIME-Version:Content-Type; b=egIAgYdWUbhcQk6ijPq14tqHryVAyWkdBYJwI9Cta4K0IWq+nhdcfnnvoSBtuZRs2vV3pKCSfvpF931mwMDIkCHoUCEDW9wQkzd9TNpaAvu4wMLAty4POZYDvy2D1m7L0ukPj9RIq4BvyIN9Cz2mv2rdyUfbbNy/Ek1nwUeJmqY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=CWJcLLmw; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="CWJcLLmw" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D4890C2BC87; Wed, 19 Nov 2025 13:09:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1763557742; bh=SF5bUmLdJVDFmGC7+UoVBgVyA11BD/B78JzuawAG8zs=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=CWJcLLmwobPT2Y96emCdxXltc2bcGZhsIK2EH/30IgGxfSgiv/eouABgScHzudNKj pZnBJ8nsbR7mh9Y2WsEJgnOLGw2/MBx7F9hIDhNa3aQVFmm7M4gDST2gYnyo0x0Qlg Wgy5ox/zkRPpHQOulLZmoR2WkA9WprnXNI5+fmm4mYNHbsHIsfYN51/IVtzmCdSyuK 0JDK/hwOS8LnY9TgkdquzcL9/ZLT/DLbLnz1+GveUDXtXQD21R5M4kqOh4efurbKAr 4ZjnUNBOlsIPoI2RcDRFb+kGhQW0PCxZiZdTfYe48J02meDpQ1IIVGkmbjNcfXRgnS nj7D08p1yfPFA== Received: from sofa.misterjones.org ([185.219.108.64] helo=goblin-girl.misterjones.org) by disco-boy.misterjones.org with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98.2) (envelope-from ) id 1vLhvf-00000006Xl9-3a7J; Wed, 19 Nov 2025 13:08:59 +0000 Date: Wed, 19 Nov 2025 13:08:59 +0000 Message-ID: <86ikf6rwyc.wl-maz@kernel.org> From: Marc Zyngier To: Oliver Upton Cc: kvmarm@lists.linux.dev, Joey Gouly , Suzuki K Poulose , Zenghui Yu Subject: Re: [PATCH 0/2] KVM: arm64: Fixes to KVM struct allocation In-Reply-To: <20251119093822.2513142-1-oupton@kernel.org> References: <20251119093822.2513142-1-oupton@kernel.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM-LB/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL-LB/10.8 EasyPG/1.0.0 Emacs/30.1 (aarch64-unknown-linux-gnu) MULE/6.0 (HANACHIRUSATO) Precedence: bulk X-Mailing-List: kvmarm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SA-Exim-Connect-IP: 185.219.108.64 X-SA-Exim-Rcpt-To: oupton@kernel.org, kvmarm@lists.linux.dev, joey.gouly@arm.com, suzuki.poulose@arm.com, yuzenghui@huawei.com X-SA-Exim-Mail-From: maz@kernel.org X-SA-Exim-Scanned: No (on disco-boy.misterjones.org); SAEximRunCond expanded to false On Wed, 19 Nov 2025 09:38:20 +0000, Oliver Upton wrote: > > Small fix to drop __GFP_HIGHMEM from KVM struct allocation GFP flags, > which was always completely pointless and now trips a WARN for passing > such an unsupported flag to vmalloc(). > > Oliver Upton (2): > KVM: arm64: Drop useless __GFP_HIGHMEM from kvm struct allocation > KVM: arm64: Use kvzalloc() for kvm struct allocation > > arch/arm64/kvm/arm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Seems sensible. FWIW: Reviewed-by: Marc Zyngier M. -- Without deviation from the norm, progress is not possible.