> Subject: [PATCH v3 16/16] ip_frag: stop using variadic argument pack extension > > Remove use of args... and just use __VA_ARGS__. The macros expanding > the argument pack do not require args extension to remove trailing comma. > > Signed-off-by: Tyler Retzlaff <roret...@linux.microsoft.com> > --- > lib/ip_frag/ip_frag_common.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/lib/ip_frag/ip_frag_common.h b/lib/ip_frag/ip_frag_common.h > index c766154..f66a963 100644 > --- a/lib/ip_frag/ip_frag_common.h > +++ b/lib/ip_frag/ip_frag_common.h > @@ -26,9 +26,9 @@ > RTE_LOG_LINE(level, IPFRAG, "" __VA_ARGS__) > > #ifdef RTE_LIBRTE_IP_FRAG_DEBUG > -#define IP_FRAG_LOG(lvl, fmt, args...) RTE_LOG(lvl, IPFRAG, fmt, > ##args) > +#define IP_FRAG_LOG(lvl, ...) RTE_LOG(lvl, IPFRAG, __VA_ARGS__) > #else > -#define IP_FRAG_LOG(lvl, fmt, args...) do {} while(0) > +#define IP_FRAG_LOG(lvl, fmt, ...) do {} while (0) > #endif /* IP_FRAG_DEBUG */ > > #define IPV4_KEYLEN 1 > -- Acked-by: Konstantin Ananyev <konstantin.anan...@huawei.com> > 1.8.3.1
- [PATCH v3 06/16] metrics: stop using variadic argu... Tyler Retzlaff
- [PATCH v3 07/16] mldev: stop using variadic argume... Tyler Retzlaff
- [PATCH v3 14/16] eal: stop using variadic argument... Tyler Retzlaff
- [PATCH v3 08/16] net: stop using variadic argument... Tyler Retzlaff
- [PATCH v3 12/16] rcu: stop using variadic argument... Tyler Retzlaff
- [PATCH v3 15/16] vhost: stop using variadic argume... Tyler Retzlaff
- [PATCH v3 13/16] stack: stop using variadic argume... Tyler Retzlaff
- [PATCH v3 10/16] power: stop using variadic argume... Tyler Retzlaff
- [PATCH v3 11/16] rawdev: stop using variadic argum... Tyler Retzlaff
- [PATCH v3 16/16] ip_frag: stop using variadic argu... Tyler Retzlaff
- RE: [PATCH v3 16/16] ip_frag: stop using varia... Konstantin Ananyev
- Re: [PATCH v3 00/16] stop using variadic argument ... Stephen Hemminger
- Re: [PATCH v3 00/16] stop using variadic argum... Tyler Retzlaff
- Re: [PATCH v3 00/16] stop using variadic a... David Marchand
- Re: [PATCH v3 00/16] stop using variad... Tyler Retzlaff
- Re: [PATCH v3 00/16] stop using variadic argument ... David Marchand
- Re: [PATCH v3 00/16] stop using variadic argum... Tyler Retzlaff
- Re: [PATCH v3 00/16] stop using variadic a... David Marchand
- [PATCH v4 00/22] stop using variadic argument pack exte... Tyler Retzlaff
- [PATCH v4 02/22] cfgfile: stop using variadic argu... Tyler Retzlaff
- [PATCH v4 01/22] log: add a per line log helper wi... Tyler Retzlaff