From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 05662A04F6 for ; Mon, 6 Jan 2020 23:29:11 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B6EE42C5E; Mon, 6 Jan 2020 23:29:11 +0100 (CET) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id D6E971D705 for ; Mon, 6 Jan 2020 23:29:09 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 0269421368; Mon, 6 Jan 2020 17:29:09 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 06 Jan 2020 17:29:09 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=nM3GnR7Sj4+/y+0FnpJW553ZZfFnhJAHjVGjyP9HoUc=; b=JWu5zKkPGNBk i3RWWjehSzszyxHkSrMrHDB6tM/dKazlqBs9V49PKmVvOuMqnVUqlpWhI8nJkz7H E7YbpSfrmRzzZSExO4ksTeOAYArqtkHzpyP2LqC5nEZ5NBJpQZ4GGpAkjwjJS4Jw vgJpbo0VOyp+5Q/x4Zz+L4SAPYar/2k= 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=nM3GnR7Sj4+/y+0FnpJW553ZZfFnhJAHjVGjyP9Ho Uc=; b=DgW7+9eFHgfE1RMpExky89Gqp0aEbjWKxfcVfFLf8Zn9tfv3DupkmEUYt HSmaVoL26EKCgxx4871xYZr972n1a4fcoj8jXMfRQ4EDmTZ7nzo2J56gA3flwVpG 8UTqO59/J81Uu0PrX7gB+aJ6yj/8XF/c1xo+rak6+NqcCHnJffUvvuIizR90sKcc a1ovU8GzVDMk0kHvib95asLhpti5Loe8fe9wD7Qjidpo9tGucl1P4kb3dHj9AAn+ YePO3+QxM9ECr8lnlcQmuYOIqvHMKyvjzL25SrZWsmWk4qtz3DyuZvslEXq8xPhl 7AIuu0m8FSepp8kPIJNCeRBwnZcBA== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrvdehtddgudeigecutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmd enucfjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhm rghsucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenuc ffohhmrghinhepughpughkrdhorhhgnecukfhppeejjedrudefgedrvddtfedrudekgeen ucfrrghrrghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvth enucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 30CFA80061; Mon, 6 Jan 2020 17:29:08 -0500 (EST) From: Thomas Monjalon To: David Marchand Cc: ci@dpdk.org, alialnu@mellanox.com Date: Mon, 06 Jan 2020 23:28:53 +0100 Message-ID: <34761032.2A8e1yFmEb@xps> In-Reply-To: <20200106111531.26431-1-david.marchand@redhat.com> References: <20200106111531.26431-1-david.marchand@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-ci] [PATCH] tools: fix tree detection for "unmaintained" files X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org Sender: "ci" 06/01/2020 12:15, David Marchand: > Implicitly, if a file has no official maintainer / tree, it is in the > end maintained in the master branch. > > This problem has been seen while looking at test failures reported on the > series https://patchwork.dpdk.org/project/dpdk/list/?series=7981. > > This series mixes changes in ethdev, net/tap and EAL, and thus should go > through the main repository. > > Signed-off-by: David Marchand > --- > - if _tree: > - tree_list.append(_tree) > + # No identified tree for a file means that it should go through > + # the main repository. > + if not _tree: > + _tree = 'dpdk' > + tree_list.append(_tree) It looks good to me. This is the expected behaviour but it seems the case was forgotten when writing this function. Waiting for the review/ack from Ali before merging. Thanks