[dpdk-ci] [PATCH] tools: fix tree detection for "unmaintained" files

Thomas Monjalon thomas at monjalon.net
Mon Jan 6 23:28:53 CET 2020


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 <david.marchand at redhat.com>
> ---
> -            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




More information about the ci mailing list