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 D66803A1A3F for ; Thu, 26 Mar 2026 18:32:52 +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=1774549972; cv=none; b=CLIJ93IqEBsLFGb/EnL5C0c0u28H4qQYusvYPhPwsiVRURiHHoEUCICsSOfpe9FHONyzqlGN7APvASZcoIaGqw7m375p5eNoQvhZV4alm6CfHQuw/tELTSGHCBY7YbTdXtRQMrTN5/OgjUdfaUIoxtGiD1q723u3d7NV68JAbw0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774549972; c=relaxed/simple; bh=bFKagJn+6VDiIWYvBH/rDFVITDPxEwgu5uxJ1+f8eDc=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=Krewet/oDnGUemYyde9gUJAgvJPPhFbA2yv1KrjkuJRQEk1FGlbIxYCsmOaPVIWcBCvLV3cvY0z1Df6Vzzyv5aPpNXTMAp02rnEpSmfLwFZFHu5ChZGn1iDVCc4+eQgB3Z2lqGg1NB8kUzvrHP/bNLbYi/l/xMToqSyqCbr0zDc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=u71b93l3; 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="u71b93l3" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D4A31C116C6; Thu, 26 Mar 2026 18:32:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1774549972; bh=bFKagJn+6VDiIWYvBH/rDFVITDPxEwgu5uxJ1+f8eDc=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=u71b93l3C5wk+oII1bPNa23kdKbAW1wkyQjBN3khkWAxcQjKrWhpc6NVHMb9YNvIM h46rJrmUkzR8J3U34//01RdQRBkCeMBnUqGzTH65syUaFFxTuJ4LJC4j/ZejGsPh3g Z5vCfNyi0l0qe0s4sT4aNSwTAkWJGG8p08/zVzNC43JPcgPW6v0GQ3CfEu5W+UgAJy EXeJ3WSnr+lp0OierY33faj7KaJDTo45ZBO+w5XuMTUXElHBfRSM8W/9IdUws+Alc2 OwwbXfyLaEru3CLEuEDwJ+CkJLDuc9Q5L5zWo5sHUAn4N2lOD6RGyXmq3FOy/ixoMw 2Zxd2WxLBbhbg== From: Thomas Gleixner To: Mark Rutland Cc: linux-arm-kernel@lists.infradead.org, ada.coupriediaz@arm.com, catalin.marinas@arm.com, linux-kernel@vger.kernel.org, luto@kernel.org, peterz@infradead.org, ruanjinjie@huawei.com, vladimir.murzin@arm.com, will@kernel.org Subject: Re: [PATCH 1/2] arm64/entry: Fix involuntary preemption exception masking In-Reply-To: References: <20260320113026.3219620-1-mark.rutland@arm.com> <20260320113026.3219620-2-mark.rutland@arm.com> <87eclek0mb.ffs@tglx> <87341ujwl4.ffs@tglx> <87fr5six4d.ffs@tglx> <87ecl7gbeu.ffs@tglx> Date: Thu, 26 Mar 2026 19:32:48 +0100 Message-ID: <87jyuycugf.ffs@tglx> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain Mark! On Thu, Mar 26 2026 at 18:11, Mark Rutland wrote: > > I've pushed a (very early, WIP) draft to > > https://git.kernel.org/pub/scm/linux/kernel/git/mark/linux.git/log/?h=arm64/entry/rework > > ... which is missing commit messages, comments, etc, but seems to work. > > I'll see about getting that tested, cleaned up, and on-list. I've pulled it and looked at the v7.0-rc3.. diff. That looks really good! Thanks for taking care of that. As a related side note. Seeing that even more of the generic entry code is moving to include/linux/, I'm pondering to move the content back into kernel/entry and include those "local" headers from the include/linux/... so that everything is to find in one place, but that's a purely cosmetic problem :) Thanks, tglx