[dpdk-dev] [PATCH 1/3] stringfns: remove rte_snprintf

Thomas Monjalon thomas.monjalon at 6wind.com
Wed Jun 25 10:33:04 CEST 2014


2014-06-24 17:39, Richardson, Bruce:
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Stephen Hemminger
> > The function rte_snprintf serves no useful purpose. It is the
> > same as snprintf() for all valid inputs. Just remove it and
> > replace all uses in current code.
> 
> NAK to this as is.
> Approve of replacing all instance of the rte_snprintf function with the
> standard version in all our code and libraries. However, rather than just
> removing the function completely, I think we should just flag the function
> as deprecated initially, and then later on look to remove it completely.

I agree we should try to use the "deprecated" attribute when possible.
So application porting effort will be smoother.

But in this case, there is something different: as Stephen wrote, rte_snprintf 
is useless. It's useless inside the DPDK so it's even more useless for user 
applications.
As it's really useless, it has no sense to keep it as deprecated.
Please, let's simply remove it.

-- 
Thomas


More information about the dev mailing list