diff options
author | Brian Behlendorf <[email protected]> | 2010-06-24 09:41:59 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2010-06-24 09:41:59 -0700 |
commit | e6de04b73cfaa1b17eee531d472cbbd37c247502 (patch) | |
tree | 88f515ee9b834209c9cc914868959cec64828742 /include/sys | |
parent | 438683c0a9c9a045106f27aca85dc1855d926497 (diff) |
Add kmem_vasprintf function
We might as well have both asprintf() variants. This allows us
to safely pass a va_list through several levels of the stack
using va_copy() instead of va_start().
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/kmem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/kmem.h b/include/sys/kmem.h index a5ee4e0df..9688b116d 100644 --- a/include/sys/kmem.h +++ b/include/sys/kmem.h @@ -248,6 +248,7 @@ enum { #define KMC_DEFAULT_SEEKS 1 extern int kmem_debugging(void); +extern char *kmem_vasprintf(const char *fmt, va_list ap); extern char *kmem_asprintf(const char *fmt, ...); #define strfree(str) kfree(str) #define strdup(str) kstrdup(str, GFP_KERNEL) |