From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 393EAA0A03; Tue, 19 Jan 2021 08:51:41 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D07DE140CF6; Tue, 19 Jan 2021 08:51:40 +0100 (CET) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id D5C5C140CEC for ; Tue, 19 Jan 2021 08:51:39 +0100 (CET) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 577037F5D5; Tue, 19 Jan 2021 10:51:39 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 577037F5D5 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1611042699; bh=sIWMBt1uKR7Yu5lzykzGp/jtHBv0AwWqs7xZqC1uMoc=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=u9VtOd/gvZJWWvXxzZxc7qg4KslFZjOgPebL8OgKVa8IhfNKwvWVQ75iDP8ArfHpZ TiZIJlRSUqLp8/enFbKukBunf2vFrh67CXzuzRRYDMEBPpIkPUsIpOnNJQTDp8PylR OpsxdODmKejU4dNucSB+MoywU6uadNyZWRfsl4B8= To: Xueming Li Cc: dev@dpdk.org, Viacheslav Ovsiienko , Asaf Penso , Thomas Monjalon , Ferruh Yigit References: <1611040501-11666-1-git-send-email-xuemingl@nvidia.com> <1611040501-11666-3-git-send-email-xuemingl@nvidia.com> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <87ef0afc-98dd-08c0-2f4a-8c697be178f2@oktetlabs.ru> Date: Tue, 19 Jan 2021 10:51:39 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.6.0 MIME-Version: 1.0 In-Reply-To: <1611040501-11666-3-git-send-email-xuemingl@nvidia.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v5 3/9] ethdev: support new VF representor syntax X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 1/19/21 10:14 AM, Xueming Li wrote: > Current VF representor syntax: > representor=2 - single representor > representor=[0-3] - single range > > To prepare for more representor types, this patch adds compatible VF > representor devargs syntax: > > vf#: > representor=vf2 - single representor > representor=vf[1,3,5] - single list > representor=vf[0-3] - single range > representor=vf[0,1,4-7] - list with singles and range > > For backwards compatibility, representor "#" is interpreted as "vf#". > > Signed-off-by: Xueming Li > Acked-by: Viacheslav Ovsiienko > Acked-by: Thomas Monjalon Acked-by: Andrew Rybchenko