From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp-42af.mail.infomaniak.ch (smtp-42af.mail.infomaniak.ch [84.16.66.175]) (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 D3D58432BF3 for ; Wed, 8 Jul 2026 11:30:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=84.16.66.175 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783510227; cv=none; b=AHpCNEdNvYfUbW89KbGqZqRfLCqaUX/EaS80qsA6g1rPbtbz+EdTBIHycOvAeVuBkN8v8OUTWafqJ8PqdbfimDX/tF3dk6DpByup2lE2mvttxxrp3pX9tmAG8curF88EEwH7VzxHQ93zhk17XSmCDW2X8mQpwMTI3vWwfwLn7J0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783510227; c=relaxed/simple; bh=TEjAOWeCm93KhSJyrd45j3UV2ZKkmLJBIOlD82zmGJg=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=cnFq8RcDcajy5dsvUTp2kQP02NS41bS1dL0uyknHtPSLnceBfqxjgHjINuSgKup5yCxDU4VyksuMZP5pXhSXGaZk+/xnLLYJvTYfLis7UdFlh+WEzqaaShK++AKbm1zfXGIBtn4lUZ8IEC2M+5pl83kCX0btQrTBzgqKbXwT5Ps= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=digikod.net; spf=pass smtp.mailfrom=digikod.net; dkim=pass (1024-bit key) header.d=digikod.net header.i=@digikod.net header.b=uYMW27k7; arc=none smtp.client-ip=84.16.66.175 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=digikod.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=digikod.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=digikod.net header.i=@digikod.net header.b="uYMW27k7" Received: from smtp-3-0000.mail.infomaniak.ch (smtp-3-0000.mail.infomaniak.ch [10.4.36.107]) by smtp-4-3000.mail.infomaniak.ch (Postfix) with ESMTPS id 4gwFyK3s9Xznm4; Wed, 8 Jul 2026 13:20:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=digikod.net; s=20191114; t=1783509641; bh=DeZ/z+QtuUsam6bBhZsmZBkFCWMR25LEctvvQ91cEls=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=uYMW27k7KVvcf7kGD2YaogtWOroSK8VJ+/mhbSraPShoHU4Lw8w++75nx+enyRZOs ca78Ftfe7D7urv71dGCAUCC7KrzaZR/7JOKhjk9QjdDaXbLyioUjZiNHdkcSJoM7lD ulZvPkryJqDaY1QQ+6YNMqgAwGF9x0OzD+xvj02Y= Received: from unknown by smtp-3-0000.mail.infomaniak.ch (Postfix) with ESMTPA id 4gwFyH75QyzV6V; Wed, 8 Jul 2026 13:20:39 +0200 (CEST) Date: Wed, 8 Jul 2026 13:20:38 +0200 From: =?utf-8?Q?Micka=C3=ABl_Sala=C3=BCn?= To: Miguel Ojeda Cc: Miguel Ojeda , linux-kernel@vger.kernel.org, Nathan Chancellor , Andrew Morton , Bart Van Assche , =?utf-8?Q?G=C3=BCnther?= Noack , Ingo Molnar , Peter Zijlstra Subject: Re: [PATCH v1] clang-format: Fix formatting of guard() Message-ID: <20260708.kae9Abuath6i@digikod.net> References: <20260708105713.2073335-1-mic@digikod.net> <20260708.yi2Ve3eeGa8a@digikod.net> 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=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Infomaniak-Routing: alpha On Wed, Jul 08, 2026 at 01:11:31PM +0200, Miguel Ojeda wrote: > On Wed, Jul 8, 2026 at 1:10 PM Mickaël Salaün wrote: > > > > What do you mean? Running clang-format -i security/landlock/*.[ch] does > > some changes. > > I mean the command on the `.clang-format` file: > > # Taken from: > # git grep -h '^#define [^[:space:]]*for_each[^[:space:]]*(' > include/ tools/ \ > # | sed "s,^#define \([^[:space:]]*for_each[^[:space:]]*\)(.*$, - '\1'," \ > # | LC_ALL=C sort -u Ok, so the guard/scoped_guard changes will disappear once you refreshed the .clang-format file. This means that I should not apply the Landlock changes [1] right? [1] https://lore.kernel.org/all/20260708110635.2083515-1-mic@digikod.net/ Do you plan to send this file update with a following v7.2-rc? > > Cheers, > Miguel