coredump: cn_vprintf() has no reason to call vsnprintf() twice
authorOleg Nesterov <[email protected]>
Wed, 3 Jul 2013 22:08:19 +0000 (15:08 -0700)
committerLinus Torvalds <[email protected]>
Wed, 3 Jul 2013 23:08:02 +0000 (16:08 -0700)
cn_vprintf() looks really overcomplicated and sub-optimal.  We do not need
vsnprintf(NULL) to calculate the size we need, we can simply try to print
into the current buffer and expand/retry only if necessary.

Signed-off-by: Oleg Nesterov <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Colin Walters <[email protected]>
Cc: Denys Vlasenko <[email protected]>
Cc: Jiri Slaby <[email protected]>
Cc: Lennart Poettering <[email protected]>
Cc: Lucas De Marchi <[email protected]>
Acked-by: Neil Horman <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
fs/coredump.c

index c10a43aae2206ed361eef8b2ab3dc6f4020e42c7..2b1d1f54e63066300b4579510c086b16bf648f84 100644 (file)
@@ -71,26 +71,20 @@ static int expand_corename(struct core_name *cn)
 
 static int cn_vprintf(struct core_name *cn, const char *fmt, va_list arg)
 {
-       char *cur;
-       int need;
-       int ret;
-
-       need = vsnprintf(NULL, 0, fmt, arg);
-       if (likely(need < cn->size - cn->used - 1))
-               goto out_printf;
-
-       ret = expand_corename(cn);
-       if (ret)
-               goto expand_fail;
+       int free, need;
+
+again:
+       free = cn->size - cn->used;
+       need = vsnprintf(cn->corename + cn->used, free, fmt, arg);
+       if (need < free) {
+               cn->used += need;
+               return 0;
+       }
 
-out_printf:
-       cur = cn->corename + cn->used;
-       vsnprintf(cur, need + 1, fmt, arg);
-       cn->used += need;
-       return 0;
+       if (!expand_corename(cn))
+               goto again;
 
-expand_fail:
-       return ret;
+       return -ENOMEM;
 }
 
 static int cn_printf(struct core_name *cn, const char *fmt, ...)