From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH 1/5] bus/vmbus: add devargs support Date: Fri, 14 Sep 2018 13:46:59 +0100 Message-ID: References: <20180830223512.21297-1-stephen@networkplumber.org> <20180830223512.21297-2-stephen@networkplumber.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Stephen Hemminger , Gaetan Rivet To: Stephen Hemminger , dev@dpdk.org Return-path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 2AE6F5323 for ; Fri, 14 Sep 2018 14:47:01 +0200 (CEST) In-Reply-To: <20180830223512.21297-2-stephen@networkplumber.org> Content-Language: en-US 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 8/30/2018 11:35 PM, Stephen Hemminger wrote: > From: Stephen Hemminger > > Take device arguments from command line and put > them in the device devargs. > > Signed-off-by: Stephen Hemminger <...> > @@ -204,6 +203,27 @@ vmbus_parse(const char *name, void *addr) > return ret; > } > > +/* > + * scan for matching device args on command line > + * example: > + * -w 'vmbus(635a7ae3-091e-4410-ad59-667c4f8c04c3,latency=20)' This is just in comment but, I guess latest syntax is: -w "vmbus:635a7ae3-091e-4410-ad59-667c4f8c04c3,latency=20" @Gaetan, is latest devarg syntax documented somewhere?