The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] aio: remove bare user-triggerable error printk
@ 2007-03-27 22:44 Zach Brown
  2007-03-27 22:49 ` Zach Brown
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Zach Brown @ 2007-03-27 22:44 UTC (permalink / raw)
  To: linux-aio, Linus Torvalds, linux-kernel, Jeff Moyer,
	Andrew Morton

aio: remove bare user-triggerable error printk

The user can generate console output if they cause do_mmap() to fail during
sys_io_setup().  This was seen in a regression test that does exactly that by
spinning calling mmap() until it gets -ENOMEM before calling io_setup().

We don't need this printk all, just remove it.

Signed-off-by: Zach Brown <zach.brown@oracle.com>
---

 fs/aio.c |    1 -
 1 file changed, 1 deletion(-)

--- a/fs/aio.c	Tue Mar 27 14:56:08 2007 -0700
+++ b/fs/aio.c	Tue Mar 27 14:56:49 2007 -0700
@@ -136,7 +136,6 @@ static int aio_setup_ring(struct kioctx 
 				  0);
 	if (IS_ERR((void *)info->mmap_base)) {
 		up_write(&ctx->mm->mmap_sem);
-		printk("mmap err: %ld\n", -info->mmap_base);
 		info->mmap_size = 0;
 		aio_free_ring(ctx);
 		return -EAGAIN;

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-03-28 13:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-27 22:44 [PATCH] aio: remove bare user-triggerable error printk Zach Brown
2007-03-27 22:49 ` Zach Brown
2007-03-27 23:42 ` Benjamin LaHaise
2007-03-28 13:58 ` Jeff Moyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox