From: Christoph Hellwig Date: Thu, 14 Dec 2017 13:25:02 +0000 (+0100) Subject: aio: don't print the page size at boot time X-Git-Tag: v4.19~765^2~57 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=01a658e1e92745255bfcae1977adc2f563a159ac;p=platform%2Fkernel%2Flinux-rpi3.git aio: don't print the page size at boot time The page size is in no way related to the aio code, and printing it in the (debug) dmesg at every boot serves no purpose. Signed-off-by: Christoph Hellwig Acked-by: Jeff Moyer Reviewed-by: Greg Kroah-Hartman Reviewed-by: Darrick J. Wong --- diff --git a/fs/aio.c b/fs/aio.c index 88d7927..add46b0 100644 --- a/fs/aio.c +++ b/fs/aio.c @@ -264,9 +264,6 @@ static int __init aio_setup(void) kiocb_cachep = KMEM_CACHE(aio_kiocb, SLAB_HWCACHE_ALIGN|SLAB_PANIC); kioctx_cachep = KMEM_CACHE(kioctx,SLAB_HWCACHE_ALIGN|SLAB_PANIC); - - pr_debug("sizeof(struct page) = %zu\n", sizeof(struct page)); - return 0; } __initcall(aio_setup);