-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: move kasprintf to a separate file
kasprintf pulls in kmalloc which proved to be fatal for at least bootimage target on alpha. Move it to a separate file so only users of kasprintf are exposed to the dependency on kmalloc. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Cc: Jeremy Fitzhardinge <jeremy@goop.org> Cc: Meelis Roos <mroos@linux.ee> Cc: Richard Henderson <rth@twiddle.net> Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru> Cc: Jay Estabrook <jay.estabrook@hp.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
- Loading branch information
Showing
3 changed files
with
45 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* linux/lib/kasprintf.c | ||
* | ||
* Copyright (C) 1991, 1992 Linus Torvalds | ||
*/ | ||
|
||
#include <stdarg.h> | ||
#include <linux/module.h> | ||
#include <linux/types.h> | ||
#include <linux/string.h> | ||
|
||
/* Simplified asprintf. */ | ||
char *kvasprintf(gfp_t gfp, const char *fmt, va_list ap) | ||
{ | ||
unsigned int len; | ||
char *p; | ||
va_list aq; | ||
|
||
va_copy(aq, ap); | ||
len = vsnprintf(NULL, 0, fmt, aq); | ||
va_end(aq); | ||
|
||
p = kmalloc(len+1, gfp); | ||
if (!p) | ||
return NULL; | ||
|
||
vsnprintf(p, len+1, fmt, ap); | ||
|
||
return p; | ||
} | ||
EXPORT_SYMBOL(kvasprintf); | ||
|
||
char *kasprintf(gfp_t gfp, const char *fmt, ...) | ||
{ | ||
va_list ap; | ||
char *p; | ||
|
||
va_start(ap, fmt); | ||
p = kvasprintf(gfp, fmt, ap); | ||
va_end(ap); | ||
|
||
return p; | ||
} | ||
EXPORT_SYMBOL(kasprintf); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters