]>
git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - lib/kasprintf.c
2 * linux/lib/kasprintf.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
8 #include <linux/export.h>
9 #include <linux/slab.h>
10 #include <linux/types.h>
11 #include <linux/string.h>
13 /* Simplified asprintf. */
14 char *kvasprintf(gfp_t gfp
, const char *fmt
, va_list ap
)
16 unsigned int first
, second
;
21 first
= vsnprintf(NULL
, 0, fmt
, aq
);
24 p
= kmalloc_track_caller(first
+1, gfp
);
28 second
= vsnprintf(p
, first
+1, fmt
, ap
);
29 WARN(first
!= second
, "different return values (%u and %u) from vsnprintf(\"%s\", ...)",
34 EXPORT_SYMBOL(kvasprintf
);
37 * If fmt contains no % (or is exactly %s), use kstrdup_const. If fmt
38 * (or the sole vararg) points to rodata, we will then save a memory
39 * allocation and string copy. In any case, the return value should be
40 * freed using kfree_const().
42 const char *kvasprintf_const(gfp_t gfp
, const char *fmt
, va_list ap
)
44 if (!strchr(fmt
, '%'))
45 return kstrdup_const(fmt
, gfp
);
46 if (!strcmp(fmt
, "%s"))
47 return kstrdup_const(va_arg(ap
, const char*), gfp
);
48 return kvasprintf(gfp
, fmt
, ap
);
50 EXPORT_SYMBOL(kvasprintf_const
);
52 char *kasprintf(gfp_t gfp
, const char *fmt
, ...)
58 p
= kvasprintf(gfp
, fmt
, ap
);
63 EXPORT_SYMBOL(kasprintf
);