On Wed, Jan 17, 2018 at 12:22:43AM +0100, Thomas Monjalon wrote: > 17/01/2018 00:19, Gaëtan Rivet: > > Hi Yuanhan, > > > > On Tue, Jan 16, 2018 at 10:50:18PM +0800, Yuanhan Liu wrote: > > > +The ``devargs`` can be used for whitelisting/blacklisting devices, > > > identifying > > > +DPDK ports and attaching/deatching devices. They all share the same > > > syntax. > > > + > > > +It is split in 3 categories, where almost everything is optional > > > key/value pairs: > > > + > > > +* bus (pci, vdev, vmbus, fslmc, etc) > > > +* class (eth, crypto, etc) > > > +* driver (i40e, mlx5, virtio, etc) > > > + > > > +The key/value pair describing the category scope is mandatory and must > > > be the > > > +first pair in the category properties. Example: bus=pci, must be placed > > > before > > > +id=0000:01:00.0. > > > + > > > +The syntax has below rules: > > > + > > > +* Between categories, the separator is a slash. > > > +* Inside a category, the separator is a comma. > > > +* Inside a key/value pair, the separator is an equal sign. > > > +* Each category can be used alone. > > > + > > > +Here is an example with all categories:: > > > + > > > + > > > bus=pci,id=0000:01:00.0/class=eth,mac=00:11:22:33:44:55/driver=PMD_NAME,driverspecificproperty=VALUE > > > + > > > > It might be a nitpick, but the driver specific properties might not > > follow the key/value pair syntax. At least for the fail-safe, a custom > > parsing needs to happen. I think vdev in general will need flexibility. > > What is more flexible than key/value? >
fail-safe does not need something more flexible, but different. It needs to define substrings describing whole devices, thus substrings following the aforementioned syntax. I choose to use ( and ) as markers of beginning and end of the "special sub-device part that we need to skip for the moment". In the end, I need a way to mark the beginning and the end of a parameter. Without this, the next parameter would be considered as the parameter of the sub-device, not of the fail-safe. = separated key/value pair does not allow for this (or with very convoluted additional rules to the syntax). > > There could be a note that after the comma past the eventual > > "driver=xxxx" pair, the syntax is driver-specific and might not follow > > the equal-separated key/value pair syntax. > > Please give an example. bus=vdev/driver=failsafe,dev(bus=pci,id=00:02.0),fd(/some/file/) Here, without some kind of "end-of-parameter" mark, fd() would be considered as a new parameter of the sub-device 00:02.0 -------------- And while I'm at it, there is an ambiguity that might need to be defined before the whole shebang is implemented: whether the parameters positions are meaningful or not. Currently some drivers might consider their parameters to mean different things depending on their order of appearance. It could help to explicitly say that the order is asemic and should not be considered by drivers. Why this is important: I think that depending on the new rte_devargs representation, it could be beneficial to have a canonical representation of an rte_devargs: given an arbitrary string given by users, the devargs could then be rewritten in a determinist way, which would help implementing comparison, assignment, and some other operations. However, for this canonicalization to be possible, order needs to be explicitly said to be meaningless. -- Gaëtan Rivet 6WIND