From b4d7124b2f2e29541e5c8815bd84ea55158dd730 Mon Sep 17 00:00:00 2001 From: Mikulas Patocka Date: Tue, 18 Feb 2014 13:09:34 -0500 Subject: [PATCH] bio: don't write "bio: create slab" messages to syslog When using device mapper, there are many "bio: create slab" messages in the log. Device mapper targets have different front_pad, so each time when we load a target that wasn't loaded before, we allocate a slab with the appropriate front_pad and there is associated "bio: create slab" message. This patch removes these messages, there is no need for them. Signed-off-by: Mikulas Patocka Signed-off-by: Jens Axboe --- fs/bio.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/bio.c b/fs/bio.c index 8754e7b..b2dd42e 100644 --- a/fs/bio.c +++ b/fs/bio.c @@ -116,7 +116,6 @@ static struct kmem_cache *bio_find_or_create_slab(unsigned int extra_size) if (!slab) goto out_unlock; - printk(KERN_INFO "bio: create slab <%s> at %d\n", bslab->name, entry); bslab->slab = slab; bslab->slab_ref = 1; bslab->slab_size = sz; -- 2.7.4