Commit c8c0c995 authored by Matthew Wilcox's avatar Matthew Wilcox Committed by Linus Torvalds

[PATCH] bio.c: reduce verbosity at boot

The queue init is really far too verbose at boot time.  I don't think
these messages add anything to either the end user experience or debug
ability. 

Acked by Jens
parent 1149df8d
...@@ -793,10 +793,6 @@ static void __init biovec_init_pools(void) ...@@ -793,10 +793,6 @@ static void __init biovec_init_pools(void)
mempool_free_slab, bp->slab); mempool_free_slab, bp->slab);
if (!bp->pool) if (!bp->pool)
panic("biovec: can't init mempool\n"); panic("biovec: can't init mempool\n");
printk("biovec pool[%d]: %3d bvecs: %3d entries (%d bytes)\n",
i, bp->nr_vecs, pool_entries,
size);
} }
} }
...@@ -810,8 +806,6 @@ static int __init init_bio(void) ...@@ -810,8 +806,6 @@ static int __init init_bio(void)
if (!bio_pool) if (!bio_pool)
panic("bio: can't create mempool\n"); panic("bio: can't create mempool\n");
printk("BIO: pool of %d setup, %ZuKb (%Zd bytes/bio)\n", BIO_POOL_SIZE, BIO_POOL_SIZE * sizeof(struct bio) >> 10, sizeof(struct bio));
biovec_init_pools(); biovec_init_pools();
bio_split_pool = mempool_create(BIO_SPLIT_ENTRIES, bio_pair_alloc, bio_pair_free, NULL); bio_split_pool = mempool_create(BIO_SPLIT_ENTRIES, bio_pair_alloc, bio_pair_free, NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment