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 E79361799F for ; Fri, 16 Jan 2026 20:48:23 +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=1768596504; cv=none; b=FJzC671W/8DWd3YgfcrRRytzra+nx7qf1SYUFuO1vhGCvQVTCmEch7qKFGH/u8QKSlrA8kUhZzbvpyQszCF/Y+glRAsE360Kmu2cgcizEIcL/JO9rSshAZBu5arSQschxZygUOJsBl7KrarXCxEwC3MEFKwcmT+m3YM9z9lmdfo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768596504; c=relaxed/simple; bh=fXInIbOw2X1SfrjT74L4g6sYVDH9hc4ZevEiwIVUNYw=; h=Date:From:To:Cc:Subject:Message-Id:In-Reply-To:References: Mime-Version:Content-Type; b=Cvh9V/BuG+oJICZ1uFft1QTDatHvxDo3WbdrRN0jBHJuEFSBWzc1irMK6di+bwOpF6KADQNJBV6oUwWuBPOnTtWk7RhNuCP39yviJIG2bmv1scAs5ohtb8nrsXjEj5vZgff+PlqyNbX5fy/ES9rTPx3O4s1WJy1vGRb1+8HqvgI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=mVbLoBO0; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="mVbLoBO0" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 347E4C116C6; Fri, 16 Jan 2026 20:48:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1768596503; bh=fXInIbOw2X1SfrjT74L4g6sYVDH9hc4ZevEiwIVUNYw=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=mVbLoBO0ShvrxJ+7Yjl0YHLfc+DB7ONURSJu64zD/u9kDjNDSVKpJd+IPj2Kb5CVH /YzcVROYZG/MyTWco+WrR6fd413QuyhJbxPxL1Rm1ZhfqRxOgqMgXifuATo5t1EOL2 0T/A90v5dhCnzcvpsnpYvheOm/2W7izeoeBcxCRs= Date: Fri, 16 Jan 2026 12:48:22 -0800 From: Andrew Morton To: Joe Perches Cc: Ian Rogers , Kuan-Wei Chiu , Dwaipayan Ray , Lukas Bulwahn , Stephen Rothwell , Andy Whitcroft , linux-kernel@vger.kernel.org, Namhyung Kim Subject: Re: [PATCH] checkpatch: Add an invalid patch separator test Message-Id: <20260116124822.343e988c9378b845bee98358@linux-foundation.org> In-Reply-To: <6ec1ed08328340db42655287afd5fa4067316b11.camel@perches.com> References: <20251205053457.8556-1-irogers@google.com> <195a2cba2b461a0ab99ae004bdf079b038db8b07.camel@perches.com> <45e299a4c4326d46360955758df7d3df58613255.camel@perches.com> <20260113193319.701e5799059eb642bbfc9a04@linux-foundation.org> <6ec1ed08328340db42655287afd5fa4067316b11.camel@perches.com> X-Mailer: Sylpheed 3.8.0beta1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) 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-Transfer-Encoding: 7bit On Fri, 16 Jan 2026 09:42:52 -0800 Joe Perches wrote: > Some versions of tools that apply patches incorrectly allow lines that > start with 3 dashes and have additional content on the same line. > > Checkpatch will now emit an ERROR on these lines and optionally > convert those lines from dashes to equals with --fix. > lgtm, thanks. I think Suggested-by:Ian is appropriate.