public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH/RFC 0/2] lib: string: Remove duplicated function
@ 2014-08-27  7:36 Rasmus Villemoes
  2014-08-27  7:36 ` [PATCH/RFC 1/2] " Rasmus Villemoes
  2014-08-27  7:36 ` [PATCH/RFC 2/2] lib: string: Make all calls to strnicmp into calls to strncasecmp Rasmus Villemoes
  0 siblings, 2 replies; 11+ messages in thread
From: Rasmus Villemoes @ 2014-08-27  7:36 UTC (permalink / raw)
  To: Grant Likely, Andrew Morton, Andi Kleen, Dan Carpenter,
	H. Peter Anvin
  Cc: linux-kernel, Rasmus Villemoes

lib/string.c contains two functions, strnicmp and strncasecmp, which
do roughly the same thing, namely compare two strings
case-insensitively up to a given bound. They have slightly different
implementations, but the only important difference is that strncasecmp
doesn't handle len==0 appropriately; it effectively becomes strcasecmp
in that case. strnicmp correctly says that two strings are always
equal in their first 0 characters.

strncasecmp is the POSIX name for this functionality. The first patch
renames the non-broken version to the standard name, and makes
strnicmp into a wrapper for strncasecmp. In order not to cause in-tree
users of strnicmp to pay the cost of the extra indirection, the second
patch replaces the declaration of strnicmp in string.h with a
macro. When and if all callers of strnicmp have been updated, that
hack can be removed.

Arch-specific versions of these functions could complicate matters,
but fortunately the only #define of either __HAVE macro is in a
!__KERNEL__ section in arch/frv/include/asm/string.h.

The other problem is how to deal with modules that may be using
strnicmp. The proper fix would probably involve some alias/linker
magic, but I have no idea how to do that (hence the RFC).


Rasmus Villemoes (2):
  lib: string: Remove duplicated function
  lib: string: Make all calls to strnicmp into calls to strncasecmp

 include/linux/string.h |  2 +-
 lib/string.c           | 28 +++++++++++-----------------
 2 files changed, 12 insertions(+), 18 deletions(-)

-- 
2.0.4


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2014-09-12 18:52 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-27  7:36 [PATCH/RFC 0/2] lib: string: Remove duplicated function Rasmus Villemoes
2014-08-27  7:36 ` [PATCH/RFC 1/2] " Rasmus Villemoes
2014-09-11 22:22   ` Andrew Morton
2014-09-12  9:01     ` Rasmus Villemoes
2014-09-12  9:43       ` Joe Perches
2014-09-12 18:52       ` Tejun Heo
2014-08-27  7:36 ` [PATCH/RFC 2/2] lib: string: Make all calls to strnicmp into calls to strncasecmp Rasmus Villemoes
2014-08-27  9:05   ` Dan Carpenter
2014-08-27  9:13     ` Rasmus Villemoes
2014-08-27 10:17       ` Dan Carpenter
2014-08-30 18:11         ` Rasmus Villemoes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox