From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id E8C4958F6 for ; Fri, 28 Apr 2017 12:07:06 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 93D88209D1; Fri, 28 Apr 2017 06:07:06 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Fri, 28 Apr 2017 06:07:06 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=zJhHm81zjlJ0E4c jGjU1Wu+9MP7z/Vlt5IuorwtnVcg=; b=BbGc2O3HPs7eF6PWJ8Ykz/2x8mcd68P /D/fJjU4/sQhzQkKKBw56LkSh4gMS7O9TEvCKlkig0S59UEtRv7Mwc0nBfdj8iiS DLPfvBPwhziqwSmBGrfJk5iuLk2p243dZTBF8xR5MpkQ6w4e8sPjNnAat6Wxvdry WzayBn3Ne+K8= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= fm1; bh=zJhHm81zjlJ0E4cjGjU1Wu+9MP7z/Vlt5IuorwtnVcg=; b=VUVYo3a5 OYlxgaSElpb1ULxnrIo7g0S9WN/BlfZ3/sAOB3O/cD0KmuXDS1PqOmUqBL37Ksfk Xmz9t0ZQbJioT9E7j0pK5NGk2AkmDMKP+MiPHhNttrDVT3S2KXuweKzXwzWty0jY Wsy4tE4dEzbs/+kSfAExNzyl0uIX6RQ4PbcrTAHVsDpjOS1gVf4O1ivAEm+Tx0/V 69orMaYBzfb4I4P0mKjc5ngWaWPbK5Bx/ezypnLMa9CMB7/lgbuhyyTgwJGhYnin Ga51uP8E2U1IbV/GKWjOV2L3g8vx3nP2s556oxHtTQBPE3RxDeTWXonj1TKiBLtB 1Jo++17iuLS/FA== X-ME-Sender: X-Sasl-enc: A0T1oY/43S+XQ4TysUmzns51bwiwp6/tlT0dvN/oGshS 1493374026 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 49D457E0FE; Fri, 28 Apr 2017 06:07:06 -0400 (EDT) From: Thomas Monjalon To: Yuanhan Liu Cc: dev@dpdk.org Date: Fri, 28 Apr 2017 12:07:05 +0200 Message-ID: <10252432.1FXPXc37Up@xps> In-Reply-To: <1493364114-7771-1-git-send-email-yuanhan.liu@linux.intel.com> References: <1493364114-7771-1-git-send-email-yuanhan.liu@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] devtools: list stable commits do not have fixline X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Apr 2017 10:07:07 -0000 28/04/2017 09:21, Yuanhan Liu: > Some commits for stable releases (with Cc stable tag) may not have the > fixline. For example: > http://dpdk.org/dev/patchwork/patch/23955/ > > It disables a feature we have implemented in last release. The feature > is done right. It's the QEMU implementaton being buggy, that we have to > disable it to workaround those buggy QEMU releases (v2.7 - v2.9). Without > such workaround, QEMU won't start when queue number >= 2. > > That said, we also have to backport it to stable releases, though there > is no fixline (there was no DPDK bug to fix after all). > > There should be similar cases like this. Thus, this patch makes > git-log-fixes.sh script also list those stable commits do not have > fixline. > > Signed-off-by: Yuanhan Liu Applied, without the comments about the reasons for not adding a fixline, because there should be always a fixline, as discussed in the thread. Thanks