Re: [dpdk-dev] [PATCH v1 1/3] devargs: support path value for global device arguments

2021-10-19 Thread Gaƫtan Rivet
Hi Steven, On Tue, Oct 5, 2021, at 17:54, Xueming Li wrote: > Slash is used to split global device arguments. > > To support path value which contains slash, this patch parses devargs by > locating both slash and layer name key: > bus=a,name=/some/path/class=b,k1=v1/driver=c,k2=v2 > "/class=" an

[dpdk-dev] [PATCH v1 1/3] devargs: support path value for global device arguments

2021-10-05 Thread Xueming Li
Slash is used to split global device arguments. To support path value which contains slash, this patch parses devargs by locating both slash and layer name key: bus=a,name=/some/path/class=b,k1=v1/driver=c,k2=v2 "/class=" and "/driver" are valid start of a layer. Signed-off-by: Xueming Li ---