From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.zytor.com (terminus.zytor.com [198.137.202.136]) (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 213BB2D877F for ; Wed, 11 Feb 2026 17:40:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.136 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770831620; cv=none; b=NtauPFt+pmD2eNJ3P3Kjqe0izb5BYXfDQSS5NGnxy8Iu2/+gWaTdopsOjGdgiYQakK6nonHf/z6KFlXo0EWvKYv04Ec8ebwqOJeXYezoUjngjWKh2qE4jaO796cZvVvEe0zmoUuSh2bfBspFjVP/VXThD1tC20sWt3mseysOBrQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770831620; c=relaxed/simple; bh=ZQc24uSy9FP//SA27jQeIxY9rE6j601tXO5dpp384Ek=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=uqvyIBhLfRujVc7twZac4mkq12Opyp8AdCslHSp79seRsFM+bu9n1sGCAZWXJaRAkh6Bgfi1Q2f1EquwlsqcHVL/UhfBIGlDkxYn8NNBY8Y48kcRnYO81hxOAiGclBofs0EiG2Q+5Sj+pRJphn9/MMv/KkBJhuDa9PnclyJzvjE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=zytor.com; spf=pass smtp.mailfrom=zytor.com; dkim=pass (2048-bit key) header.d=zytor.com header.i=@zytor.com header.b=MLyV+tP1; arc=none smtp.client-ip=198.137.202.136 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=zytor.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=zytor.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=zytor.com header.i=@zytor.com header.b="MLyV+tP1" Received: from [172.27.2.41] (c-76-133-66-138.hsd1.ca.comcast.net [76.133.66.138]) (authenticated bits=0) by mail.zytor.com (8.18.1/8.17.1) with ESMTPSA id 61BHdLlh3993045 (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NO); Wed, 11 Feb 2026 09:40:11 -0800 DKIM-Filter: OpenDKIM Filter v2.11.0 mail.zytor.com 61BHdLlh3993045 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zytor.com; s=2026012301; t=1770831612; bh=8yWd2RA8s45Tx9t3l7RpiyzX9CKqc+YUZW6CSJ0llz8=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=MLyV+tP1KHogqXSenpYNx4LaK6b1Q1Srwfbr1yDKB72KZf7fRWCy4UVNXs6KFMvk7 w8BMeKPcdoWlqxdwQzHRSiYbLWoWxPxGP0TVn0QLyRegRUlAOcdEqUgxj/g8hcn4oe YcptJwkjYtxQVSIaaWfKNUyxtjznFNmFp9wAWCiM0+lZGXPRcZHGUac2MuXqn63am8 mYY4fICQVva8s6bunxlDB/o9pggM7kDWHdOYvL7HZSLAk3WxdEOT9/HJduyw824Ecc 1k8MwLHM6I+e9bT204B4uGCCGGUxkxE2RucI0p1vkDjOVCa2eWeJRtE1vx61lCQ17O TrcjgbeA/Ml4A== Message-ID: <712d7389-d744-4e0d-a1a3-2b938de55aaa@zytor.com> Date: Wed, 11 Feb 2026 09:39:13 -0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [GIT PULL] x86/entry for 7.0-rc1 To: Linus Torvalds Cc: Dave Hansen , x86@kernel.org, linux-kernel@vger.kernel.org References: <20260209210924.2330728-1-dave.hansen@linux.intel.com> Content-Language: en-US, sv-SE From: "H. Peter Anvin" In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 2026-02-11 09:05, Linus Torvalds wrote: > > I often actually look at the build results. Not the object files, no. > But I do things like > > make xyz/file.s > > *ALL* the time when developing, and I just don't want to have to treat > the "this was what I just generated" and "this was what I generated it > from" as something very different. > > Admittedly, these days I don't do much actual development, so I guess > I wouldn't care. > > Which reminds me that I need to go back to merging... > Oh, I do too. And so I do make in the build directory, or tack on the O= option. FAR more annoying to me is that kbuild requires you to do the make command in the root directory of the tree. "make -C ../../../../.. arch/x86/entry/vdso/vdso32/sigreturn.o" is not really much better than "make -C ../../../../.. O=o/x86_64.cf arch/x86/entry/vdso/vdso32/sigreturn.o" Come to think of it, I really should just wrap that up in a script... If anyone is interested, my scripts are sitting at: git://git.zytor.com/linux/ktest.git -hpa