From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5030AC71136 for ; Fri, 18 Aug 2023 05:34:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237078AbjHRFdi (ORCPT ); Fri, 18 Aug 2023 01:33:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40390 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1357903AbjHRFdY (ORCPT ); Fri, 18 Aug 2023 01:33:24 -0400 Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6C4DD1706; Thu, 17 Aug 2023 22:33:22 -0700 (PDT) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 2308B5C00D1; Fri, 18 Aug 2023 01:33:19 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Fri, 18 Aug 2023 01:33:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-type:content-type:date:date :feedback-id:feedback-id:from:from:in-reply-to:in-reply-to :message-id:mime-version:references:reply-to:sender:subject :subject:to:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; t=1692336799; x=1692423199; bh=Gc15qWvK649Gi on2Drq5HT+hHTu1NHG5OYl6MDmkzx8=; b=1WjoWEpIiIi59tu822LZZkMN5IJTH xCgRaQ9uamnnsxuS8DqOUK81oFgP1c4Spe/Q8o2QaF2/79kIaTUxoWLmy3xu8i5S vaVM+/8nO2//Kzd0lPL7j3/mn9aUiUZB3O8rifUUYgsmW+2tF28OGby/oob+NW3w q2i9HYmhOYhIdTKp/cZA+uesaMA0VkPtDYG0Juej+fJAMOX4KUIKSFSft585GaKD cnBqPq3fkjhj5Nqj29HhzYYzSNlzmK2kVSKVmCH8D/43pQqNtg/shtt5Hfci+rHp eJHoT3VRzy6IxP28ddIFHtUd+GYIaR7iMgQ259HzSlufS4LScHg5Nockw== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedviedrudduvddgleeiucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvfevufgjkfhfgggtsehttdertddttddvnecuhfhrohhmpefhihhnnhcu vfhhrghinhcuoehfthhhrghinheslhhinhhugidqmheikehkrdhorhhgqeenucggtffrrg htthgvrhhnpeefieehjedvtefgiedtudethfekieelhfevhefgvddtkeekvdekhefftdek vedvueenucffohhmrghinhepkhgvrhhnvghlrdhorhhgnecuvehluhhsthgvrhfuihiivg eptdenucfrrghrrghmpehmrghilhhfrhhomhepfhhthhgrihhnsehlihhnuhigqdhmieek khdrohhrgh X-ME-Proxy: Feedback-ID: i58a146ae:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Fri, 18 Aug 2023 01:33:15 -0400 (EDT) Date: Fri, 18 Aug 2023 15:33:29 +1000 (AEST) From: Finn Thain To: Michael Schmitz cc: Damien Le Moal , s.shtylyov@omp.ru, linux-ide@vger.kernel.org, linux-m68k@vger.kernel.org, will@sowerbutts.com, rz@linux-m68k.org, geert@linux-m68k.org, stable@vger.kernel.org Subject: Re: [PATCH 1/3] m68k/q40: fix IO base selection for Q40 in pata_falcon.c In-Reply-To: Message-ID: References: <20230817221232.22035-1-schmitzmic@gmail.com> <20230817221232.22035-2-schmitzmic@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-m68k@vger.kernel.org On Fri, 18 Aug 2023, Michael Schmitz wrote: > >> Cc: # 5.14 > > > > 5.14+ ? But I do not think you need to specify anything anyway since > > you have the Fixes tag. > > 5.14+ perhaps. I'll check the docs again to see whether Fixes: obsoletes > the stable backport tag. I've so far used both together... > You'd specify a "# x.y+" limit along with a "Fixes" tag if you don't want to backport as far back as the buggy commit (because some other pre-requisite isn't present on the older branches). But that does not apply in this case. Writing "# 5.14" is surprising because (according to www.kernel.org landing page) that branch was abandoned, and no live branch was named. But in "git log" you can see that people write this anyway. Writing "# 5.14+" or "# 5.15+" is clear enough but is normally omitted when it can be inferred from the Fixes tag. That's been my experience, at least.