dect
/
linux-2.6
Archived
13
0
Fork 0

slab_err: Pass parameters correctly to slab_bug

Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Christoph Lameter 2008-04-23 12:28:01 -07:00 committed by Linus Torvalds
parent 79c1cb7a8c
commit 3dc5063786
1 changed files with 2 additions and 2 deletions

View File

@ -521,7 +521,7 @@ static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
static void object_err(struct kmem_cache *s, struct page *page,
u8 *object, char *reason)
{
slab_bug(s, reason);
slab_bug(s, "%s", reason);
print_trailer(s, page, object);
}
@ -533,7 +533,7 @@ static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
va_start(args, fmt);
vsnprintf(buf, sizeof(buf), fmt, args);
va_end(args);
slab_bug(s, fmt);
slab_bug(s, "%s", buf);
print_page_info(page);
dump_stack();
}