Commit dfe52244 authored by Robert Love's avatar Robert Love Committed by Linus Torvalds

[PATCH] kstrdup: convert a few existing implementations

Convert a bunch of strdup() implementations and their callers to the new
kstrdup().  A few remain, for example see sound/core, and there are tons of
open coded strdup()'s around.  Sigh.  But this is a start.
Signed-off-by: default avatarRobert Love <rml@novell.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 543537bd
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
#include "linux/kernel.h" #include "linux/kernel.h"
#include "linux/sched.h" #include "linux/sched.h"
#include "linux/interrupt.h" #include "linux/interrupt.h"
#include "linux/string.h"
#include "linux/mm.h" #include "linux/mm.h"
#include "linux/slab.h" #include "linux/slab.h"
#include "linux/utsname.h" #include "linux/utsname.h"
...@@ -322,12 +323,7 @@ void do_uml_exitcalls(void) ...@@ -322,12 +323,7 @@ void do_uml_exitcalls(void)
char *uml_strdup(char *string) char *uml_strdup(char *string)
{ {
char *new; return kstrdup(string, GFP_KERNEL);
new = kmalloc(strlen(string) + 1, GFP_KERNEL);
if(new == NULL) return(NULL);
strcpy(new, string);
return(new);
} }
int copy_to_user_proc(void __user *to, void *from, int size) int copy_to_user_proc(void __user *to, void *from, int size)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment