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 0086025228D for ; Mon, 17 Nov 2025 02:41:13 +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=1763347274; cv=none; b=QyLRNu9VS43g2EY5GDsYGj+2ByEEl30yr2EYr+4QD069oSbWLqLIHUxXkJJ4OJPnNfFNU8Ct7ASF9tPlcnWIT/XlWz3tSfZXPTPI0L4vBfs9z29G03fEGN0ICMBzayzEZ/fow539TiIUsR1LCvXOH4xEUNMUOSV09jecKU1WEpU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763347274; c=relaxed/simple; bh=eXsatpyxl/vFhBDiUVtixMKnQLqDr64FfWamMmOMI50=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=BybnwNPPvjzExOVa1iVs417axPsVpzsfK3w1oG7+IGt+IZa8d04t9y/G9BlqOeHHkLoPSdz3P+0wORisxPQ+cJE3rKYDX437A6LFLNVOnuHzqVRNspbKdwhHm/B+T8HF4bvA/EOWht0mBX1aAExtUn2jnpk2QI2T6PAB5Q6EUns= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ocqEnild; 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="ocqEnild" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7CA22C4CEF5; Mon, 17 Nov 2025 02:41:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1763347273; bh=eXsatpyxl/vFhBDiUVtixMKnQLqDr64FfWamMmOMI50=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ocqEnildVRE3BfMqSTTuGUaBIbobtRoW26F8q6DMb95uy28PAmoK1WT9UaFbEHZTj Jwg4Avba0XJTQYXR+q8ZD5qPU18SabfDsNDGydUdt4xawy2fsGEIDpx8qZ0mMePjKA N9L2GWdUFxBnrvdmzyah7WIyAR14W4vDpxQAlTdsbOizCZQYuFttjCoMPjNKf/o5/N T1D9lF+Y67u8NfrIbv2wHdQRPjv/8PsD+sIvixM9+ZRl2tOcUgxuYXlGa67/nVkijY O1A0OkKyrEQTGR54Xf7Cxke7jTyJoS5yVX6/mLfOWBOVYTVIRZ5emX1xmgePGVL6GE TzGdoSW/xl/Gw== Date: Mon, 17 Nov 2025 02:41:10 +0000 From: Tzung-Bi Shih To: Waiman Long Cc: Peter Zijlstra , Ingo Molnar , Will Deacon , Boqun Feng , linux-kernel@vger.kernel.org Subject: Re: [PATCH] lockdep: Add header and footer to surround warning reports Message-ID: References: <20251114062730.1828416-1-tzungbi@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Sat, Nov 15, 2025 at 10:55:46AM -0500, Waiman Long wrote: > On 11/14/25 1:27 AM, Tzung-Bi Shih wrote: > > diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c > > index 2d4c5bab5af8..af05d30f1545 100644 > > --- a/kernel/locking/lockdep.c > > +++ b/kernel/locking/lockdep.c > > @@ -59,6 +59,7 @@ > > #include > > #include > > +#include > > It should be " to fix problem reported by the kernel test robot. Thanks. For some reason, my testing environment and compiler didn't warn about this. Will fix it in the next version.