aboutsummaryrefslogtreecommitdiffstats
path: root/fs/aio.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-12-14 08:25:02 -0500
committerChristoph Hellwig <hch@lst.de>2018-05-02 13:48:36 -0400
commit01a658e1e92745255bfcae1977adc2f563a159ac (patch)
treefe00ce08f78ba9e67c7165037509ae16fa3c1d02 /fs/aio.c
parent6da6c0db5316275015e8cc2959f12a17584aeb64 (diff)
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 <hch@lst.de> Acked-by: Jeff Moyer <jmoyer@redhat.com> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/aio.c')
-rw-r--r--fs/aio.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/aio.c b/fs/aio.c
index 88d7927ffbc6..add46b06be86 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -264,9 +264,6 @@ static int __init aio_setup(void)
264 264
265 kiocb_cachep = KMEM_CACHE(aio_kiocb, SLAB_HWCACHE_ALIGN|SLAB_PANIC); 265 kiocb_cachep = KMEM_CACHE(aio_kiocb, SLAB_HWCACHE_ALIGN|SLAB_PANIC);
266 kioctx_cachep = KMEM_CACHE(kioctx,SLAB_HWCACHE_ALIGN|SLAB_PANIC); 266 kioctx_cachep = KMEM_CACHE(kioctx,SLAB_HWCACHE_ALIGN|SLAB_PANIC);
267
268 pr_debug("sizeof(struct page) = %zu\n", sizeof(struct page));
269
270 return 0; 267 return 0;
271} 268}
272__initcall(aio_setup); 269__initcall(aio_setup);