doc: announce kvargs API change
authorThomas Monjalon <thomas@monjalon.net>
Thu, 22 Nov 2018 10:32:23 +0000 (11:32 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Sat, 24 Nov 2018 17:12:02 +0000 (18:12 +0100)
commit61ed434ad1dc60e770f95477a990d162b414e44d
tree6c31628434242e44caae253cfd0250fa15123756
parent3ee567cfec37386707ee71ef432f63d3fb810fec
doc: announce kvargs API change

After processing a kvlist in rte_kvargs_process(),
it may be needed to loop again over kvlist in order to know
whether the key is matched or not.
In order to simplify implementation of kvargs checks,
a new pointer parameter may be used to get the match count.

The change of the function prototype would be as below:

 int
 rte_kvargs_process(const struct rte_kvargs *kvlist,
  const char *key_match,
+ int *match_count,
  arg_handler_t handler,
  void *opaque_arg)

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
doc/guides/rel_notes/deprecation.rst