Re: [ovs-dev] [PATCHv2] checkpatch: Check for stdlib usage.

2017-05-25 Thread Joe Stringer
On 25 May 2017 at 13:10, Ben Pfaff wrote: > On Tue, May 23, 2017 at 05:57:16PM -0700, Joe Stringer wrote: >> Many standard library functions are wrapped in OVS, so check for usage >> of the original versions and suggest that authors replace them with the >> OVS versions. >> >> Signed-off-by: Joe S

Re: [ovs-dev] [PATCHv2] checkpatch: Check for stdlib usage.

2017-05-25 Thread Ben Pfaff
On Tue, May 23, 2017 at 05:57:16PM -0700, Joe Stringer wrote: > Many standard library functions are wrapped in OVS, so check for usage > of the original versions and suggest that authors replace them with the > OVS versions. > > Signed-off-by: Joe Stringer Acked-by: Ben Pfaff __

Re: [ovs-dev] [PATCHv2] checkpatch: Check for stdlib usage.

2017-05-25 Thread Aaron Conole
Joe Stringer writes: > Many standard library functions are wrapped in OVS, so check for usage > of the original versions and suggest that authors replace them with the > OVS versions. > > Signed-off-by: Joe Stringer > --- > v2: Drop checks for functions that don't replace library functions >

[ovs-dev] [PATCHv2] checkpatch: Check for stdlib usage.

2017-05-23 Thread Joe Stringer
Many standard library functions are wrapped in OVS, so check for usage of the original versions and suggest that authors replace them with the OVS versions. Signed-off-by: Joe Stringer --- v2: Drop checks for functions that don't replace library functions Fix naming of functions xfoo() -> ovs