From 3e1aa66bd423950aa69c3d50d91818af1d16e0a7 Mon Sep 17 00:00:00 2001 From: Ezequiel Garcia Date: Wed, 10 Oct 2012 15:54:04 -0700 Subject: [PATCH] lib/kasprintf.c: use kmalloc_track_caller() to get accurate traces for kvasprintf Previously kvasprintf() allocation was being done through kmalloc(), thus producing an inaccurate trace report. This is a common problem: in order to get accurate callsite tracing, a lib/utils function shouldn't allocate kmalloc but instead use kmalloc_track_caller. Signed-off-by: Ezequiel Garcia Cc: Sam Ravnborg Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-format-patch failed