* Another memory leak in drivers/char/vt.c
@ 2009-07-29 9:31 Catalin Marinas
2009-07-29 10:39 ` Johannes Weiner
0 siblings, 1 reply; 7+ messages in thread
From: Catalin Marinas @ 2009-07-29 9:31 UTC (permalink / raw)
To: Johannes Weiner, Pekka Enberg; +Cc: linux-kernel
Hi,
There was a memory leak fixed recently by commit 1a8f458f6d. However,
there seems to be another with this kmemleak trace:
unreferenced object 0xde158000 (size 12288):
comm "Xorg", pid 1439, jiffies 4294961016
hex dump (first 32 bytes):
20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . .
20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . .
backtrace:
[<c006f74b>] __save_stack_trace+0x17/0x1c
[<c006f81d>] create_object+0xcd/0x188
[<c01f5457>] kmemleak_alloc+0x1b/0x3c
[<c006e303>] __kmalloc+0xdb/0xe8
[<c012cc4b>] vc_do_resize+0x73/0x1e0
[<c012cdf1>] vc_resize+0x15/0x18
[<c011afc1>] fbcon_init+0x1f9/0x2b8
[<c0129e87>] visual_init+0x9f/0xdc
[<c012aff3>] vc_allocate+0x7f/0xfc
[<c012b087>] con_open+0x17/0x80
[<c0120e43>] tty_open+0x1f7/0x2e4
[<c0072fa1>] chrdev_open+0x101/0x118
[<c006ffad>] __dentry_open+0x105/0x1cc
[<c00700fd>] nameidata_to_filp+0x2d/0x38
[<c00788cd>] do_filp_open+0x2c1/0x54c
[<c006fdff>] do_sys_open+0x3b/0xb4
The problem happens in the vc_allocate() function where vc->vc_screenbuf
is set to the kmalloc() returned value. However, the visual_init()
function called 3 lines before also allocates the vc->vc_screenbuf.
One solution is below (another would be to kfree the vc_screenbuf and
reallocate):
diff --git a/drivers/char/vt.c b/drivers/char/vt.c
index 404f4c1..1da75ef 100644
--- a/drivers/char/vt.c
+++ b/drivers/char/vt.c
@@ -770,7 +770,9 @@ int vc_allocate(unsigned int currcons) /* return 0 on success */
visual_init(vc, currcons, 1);
if (!*vc->vc_uni_pagedir_loc)
con_set_default_unimap(vc);
- vc->vc_screenbuf = kmalloc(vc->vc_screenbuf_size, GFP_KERNEL);
+ if (!vc->vc_screenbuf)
+ vc->vc_screenbuf = kmalloc(vc->vc_screenbuf_size,
+ GFP_KERNEL);
if (!vc->vc_screenbuf) {
kfree(vc);
vc_cons[currcons].d = NULL;
Thanks.
--
Catalin
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: Another memory leak in drivers/char/vt.c 2009-07-29 9:31 Another memory leak in drivers/char/vt.c Catalin Marinas @ 2009-07-29 10:39 ` Johannes Weiner 2009-07-29 11:04 ` Catalin Marinas 0 siblings, 1 reply; 7+ messages in thread From: Johannes Weiner @ 2009-07-29 10:39 UTC (permalink / raw) To: Catalin Marinas; +Cc: Pekka Enberg, linux-kernel Hello Catalin, On Wed, Jul 29, 2009 at 10:31:23AM +0100, Catalin Marinas wrote: > Hi, > > There was a memory leak fixed recently by commit 1a8f458f6d. However, > there seems to be another with this kmemleak trace: > > unreferenced object 0xde158000 (size 12288): > comm "Xorg", pid 1439, jiffies 4294961016 > hex dump (first 32 bytes): > 20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . . > 20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . . > backtrace: > [<c006f74b>] __save_stack_trace+0x17/0x1c > [<c006f81d>] create_object+0xcd/0x188 > [<c01f5457>] kmemleak_alloc+0x1b/0x3c > [<c006e303>] __kmalloc+0xdb/0xe8 > [<c012cc4b>] vc_do_resize+0x73/0x1e0 > [<c012cdf1>] vc_resize+0x15/0x18 > [<c011afc1>] fbcon_init+0x1f9/0x2b8 > [<c0129e87>] visual_init+0x9f/0xdc > [<c012aff3>] vc_allocate+0x7f/0xfc > [<c012b087>] con_open+0x17/0x80 > [<c0120e43>] tty_open+0x1f7/0x2e4 > [<c0072fa1>] chrdev_open+0x101/0x118 > [<c006ffad>] __dentry_open+0x105/0x1cc > [<c00700fd>] nameidata_to_filp+0x2d/0x38 > [<c00788cd>] do_filp_open+0x2c1/0x54c > [<c006fdff>] do_sys_open+0x3b/0xb4 > > The problem happens in the vc_allocate() function where vc->vc_screenbuf > is set to the kmalloc() returned value. However, the visual_init() > function called 3 lines before also allocates the vc->vc_screenbuf. The common way seems to be that ->con_init(init=1) just sets the dimensions manually (instead of using vc_resize()) and vc_allocate() uses them to actually allocate a properly sized screen buffer. So it seems like fbcon is at fault here. It calls vc_resize() from ->con_init(init=1) and updates the console dimensions manually on init=0 (after calling vc_resize()) which is completely mixed up. I think the quick fix is something like the appended (untested!). In the long run it is probably good to re-evaluate whether vc_resize() can be called unconditionally from ->con_init() and remove the allocation from vc_allocate(). Hannes diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index 471a9a6..3a44695 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c @@ -1082,7 +1082,6 @@ static void fbcon_init(struct vc_data *vc, int init) new_rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres); new_cols /= vc->vc_font.width; new_rows /= vc->vc_font.height; - vc_resize(vc, new_cols, new_rows); /* * We must always set the mode. The mode of the previous console @@ -1111,10 +1110,11 @@ static void fbcon_init(struct vc_data *vc, int init) * vc_{cols,rows}, but we must not set those if we are only * resizing the console. */ - if (!init) { + if (init) { vc->vc_cols = new_cols; vc->vc_rows = new_rows; - } + } else + vc_resize(vc, new_cols, new_rows); if (logo) fbcon_prepare_logo(vc, info, cols, rows, new_cols, new_rows); ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: Another memory leak in drivers/char/vt.c 2009-07-29 10:39 ` Johannes Weiner @ 2009-07-29 11:04 ` Catalin Marinas 2009-07-29 17:21 ` [patch] fbcon: don't use vc_resize() on initialization Johannes Weiner 0 siblings, 1 reply; 7+ messages in thread From: Catalin Marinas @ 2009-07-29 11:04 UTC (permalink / raw) To: Johannes Weiner; +Cc: Pekka Enberg, linux-kernel On Wed, 2009-07-29 at 12:39 +0200, Johannes Weiner wrote: > On Wed, Jul 29, 2009 at 10:31:23AM +0100, Catalin Marinas wrote: > > There was a memory leak fixed recently by commit 1a8f458f6d. However, > > there seems to be another with this kmemleak trace: > > > > unreferenced object 0xde158000 (size 12288): > > comm "Xorg", pid 1439, jiffies 4294961016 > > hex dump (first 32 bytes): > > 20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . . > > 20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . . > > backtrace: > > [<c006f74b>] __save_stack_trace+0x17/0x1c > > [<c006f81d>] create_object+0xcd/0x188 > > [<c01f5457>] kmemleak_alloc+0x1b/0x3c > > [<c006e303>] __kmalloc+0xdb/0xe8 > > [<c012cc4b>] vc_do_resize+0x73/0x1e0 > > [<c012cdf1>] vc_resize+0x15/0x18 > > [<c011afc1>] fbcon_init+0x1f9/0x2b8 > > [<c0129e87>] visual_init+0x9f/0xdc > > [<c012aff3>] vc_allocate+0x7f/0xfc > > [<c012b087>] con_open+0x17/0x80 > > [<c0120e43>] tty_open+0x1f7/0x2e4 > > [<c0072fa1>] chrdev_open+0x101/0x118 > > [<c006ffad>] __dentry_open+0x105/0x1cc > > [<c00700fd>] nameidata_to_filp+0x2d/0x38 > > [<c00788cd>] do_filp_open+0x2c1/0x54c > > [<c006fdff>] do_sys_open+0x3b/0xb4 > > > > The problem happens in the vc_allocate() function where vc->vc_screenbuf > > is set to the kmalloc() returned value. However, the visual_init() > > function called 3 lines before also allocates the vc->vc_screenbuf. > > The common way seems to be that ->con_init(init=1) just sets the > dimensions manually (instead of using vc_resize()) and vc_allocate() > uses them to actually allocate a properly sized screen buffer. > > So it seems like fbcon is at fault here. It calls vc_resize() from > ->con_init(init=1) and updates the console dimensions manually on > init=0 (after calling vc_resize()) which is completely mixed up. > > I think the quick fix is something like the appended (untested!). This patch seems to fix the leak, you can add Tested-by: Catalin Marinas <catalin.marinas@arm.com> Thanks. -- Catalin ^ permalink raw reply [flat|nested] 7+ messages in thread
* [patch] fbcon: don't use vc_resize() on initialization 2009-07-29 11:04 ` Catalin Marinas @ 2009-07-29 17:21 ` Johannes Weiner 2009-07-30 23:11 ` Andrew Morton 2009-08-01 8:31 ` Dave Young 0 siblings, 2 replies; 7+ messages in thread From: Johannes Weiner @ 2009-07-29 17:21 UTC (permalink / raw) To: Catalin Marinas; +Cc: Andrew Morton, Pekka Enberg, linux-kernel Catalin and kmemleak spotted a leak of a VC screen buffer in vc_allocate() due to the following chain of events: vc_allocate() visual_init(init=1) vc->vc_sw->con_init(init=1) fbcon_init() vc_resize() vc->screen_buf = kmalloc() vc->screen_buf = kmalloc() The common way for the VC drivers is to set the screen dimension parameters manually in the init case and only call vc_resize() for !init - which allocates a screen buffer according to the new dimensions. fbcon instead would do vc_resize() unconditionally and afterwards set the dimensions manually (again) for !init - i.e. completely upside down. The vc_resize() allocated buffer would then get lost by vc_allocate() allocating a fresh one. Use vc_resize() only for actual resizing to close the leak. Set the dimensions manually only in initialization mode to remove the redundant setting in resize mode. The kmemleak trace from Catalin: unreferenced object 0xde158000 (size 12288): comm "Xorg", pid 1439, jiffies 4294961016 hex dump (first 32 bytes): 20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . . 20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . . backtrace: [<c006f74b>] __save_stack_trace+0x17/0x1c [<c006f81d>] create_object+0xcd/0x188 [<c01f5457>] kmemleak_alloc+0x1b/0x3c [<c006e303>] __kmalloc+0xdb/0xe8 [<c012cc4b>] vc_do_resize+0x73/0x1e0 [<c012cdf1>] vc_resize+0x15/0x18 [<c011afc1>] fbcon_init+0x1f9/0x2b8 [<c0129e87>] visual_init+0x9f/0xdc [<c012aff3>] vc_allocate+0x7f/0xfc [<c012b087>] con_open+0x17/0x80 [<c0120e43>] tty_open+0x1f7/0x2e4 [<c0072fa1>] chrdev_open+0x101/0x118 [<c006ffad>] __dentry_open+0x105/0x1cc [<c00700fd>] nameidata_to_filp+0x2d/0x38 [<c00788cd>] do_filp_open+0x2c1/0x54c [<c006fdff>] do_sys_open+0x3b/0xb4 Reported-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Johannes Weiner <hannes@cmpxchg.org> Tested-by: Catalin Marinas <catalin.marinas@arm.com> Cc: Pekka Enberg <penberg@cs.helsinki.fi> --- drivers/video/console/fbcon.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index 471a9a6..3a44695 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c @@ -1082,7 +1082,6 @@ static void fbcon_init(struct vc_data *vc, int init) new_rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres); new_cols /= vc->vc_font.width; new_rows /= vc->vc_font.height; - vc_resize(vc, new_cols, new_rows); /* * We must always set the mode. The mode of the previous console @@ -1111,10 +1110,11 @@ static void fbcon_init(struct vc_data *vc, int init) * vc_{cols,rows}, but we must not set those if we are only * resizing the console. */ - if (!init) { + if (init) { vc->vc_cols = new_cols; vc->vc_rows = new_rows; - } + } else + vc_resize(vc, new_cols, new_rows); if (logo) fbcon_prepare_logo(vc, info, cols, rows, new_cols, new_rows); -- 1.6.3 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [patch] fbcon: don't use vc_resize() on initialization 2009-07-29 17:21 ` [patch] fbcon: don't use vc_resize() on initialization Johannes Weiner @ 2009-07-30 23:11 ` Andrew Morton 2009-07-31 9:09 ` Catalin Marinas 2009-08-01 8:31 ` Dave Young 1 sibling, 1 reply; 7+ messages in thread From: Andrew Morton @ 2009-07-30 23:11 UTC (permalink / raw) To: Johannes Weiner; +Cc: catalin.marinas, penberg, linux-kernel, linux-fbdev-devel On Wed, 29 Jul 2009 19:21:23 +0200 Johannes Weiner <hannes@cmpxchg.org> wrote: > Catalin and kmemleak spotted a leak of a VC screen buffer in > vc_allocate() due to the following chain of events: > > vc_allocate() > visual_init(init=1) > vc->vc_sw->con_init(init=1) > fbcon_init() > vc_resize() > vc->screen_buf = kmalloc() > vc->screen_buf = kmalloc() > > The common way for the VC drivers is to set the screen dimension > parameters manually in the init case and only call vc_resize() for > !init - which allocates a screen buffer according to the new > dimensions. > > fbcon instead would do vc_resize() unconditionally and afterwards set > the dimensions manually (again) for !init - i.e. completely upside > down. The vc_resize() allocated buffer would then get lost by > vc_allocate() allocating a fresh one. > > Use vc_resize() only for actual resizing to close the leak. > > Set the dimensions manually only in initialization mode to remove the > redundant setting in resize mode. > > The kmemleak trace from Catalin: > > unreferenced object 0xde158000 (size 12288): That's a big leak! What sequence of user actions would cause it to occur? > comm "Xorg", pid 1439, jiffies 4294961016 > hex dump (first 32 bytes): > 20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . . > 20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . . > backtrace: > [<c006f74b>] __save_stack_trace+0x17/0x1c > [<c006f81d>] create_object+0xcd/0x188 > [<c01f5457>] kmemleak_alloc+0x1b/0x3c > [<c006e303>] __kmalloc+0xdb/0xe8 > [<c012cc4b>] vc_do_resize+0x73/0x1e0 > [<c012cdf1>] vc_resize+0x15/0x18 > [<c011afc1>] fbcon_init+0x1f9/0x2b8 > [<c0129e87>] visual_init+0x9f/0xdc > [<c012aff3>] vc_allocate+0x7f/0xfc > [<c012b087>] con_open+0x17/0x80 > [<c0120e43>] tty_open+0x1f7/0x2e4 > [<c0072fa1>] chrdev_open+0x101/0x118 > [<c006ffad>] __dentry_open+0x105/0x1cc > [<c00700fd>] nameidata_to_filp+0x2d/0x38 > [<c00788cd>] do_filp_open+0x2c1/0x54c > [<c006fdff>] do_sys_open+0x3b/0xb4 > > Reported-by: Catalin Marinas <catalin.marinas@arm.com> > Signed-off-by: Johannes Weiner <hannes@cmpxchg.org> > Tested-by: Catalin Marinas <catalin.marinas@arm.com> > Cc: Pekka Enberg <penberg@cs.helsinki.fi> > --- > drivers/video/console/fbcon.c | 6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c > index 471a9a6..3a44695 100644 > --- a/drivers/video/console/fbcon.c > +++ b/drivers/video/console/fbcon.c > @@ -1082,7 +1082,6 @@ static void fbcon_init(struct vc_data *vc, int init) > new_rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres); > new_cols /= vc->vc_font.width; > new_rows /= vc->vc_font.height; > - vc_resize(vc, new_cols, new_rows); > > /* > * We must always set the mode. The mode of the previous console > @@ -1111,10 +1110,11 @@ static void fbcon_init(struct vc_data *vc, int init) > * vc_{cols,rows}, but we must not set those if we are only > * resizing the console. > */ > - if (!init) { > + if (init) { > vc->vc_cols = new_cols; > vc->vc_rows = new_rows; > - } > + } else > + vc_resize(vc, new_cols, new_rows); > > if (logo) > fbcon_prepare_logo(vc, info, cols, rows, new_cols, new_rows); ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [patch] fbcon: don't use vc_resize() on initialization 2009-07-30 23:11 ` Andrew Morton @ 2009-07-31 9:09 ` Catalin Marinas 0 siblings, 0 replies; 7+ messages in thread From: Catalin Marinas @ 2009-07-31 9:09 UTC (permalink / raw) To: Andrew Morton; +Cc: Johannes Weiner, penberg, linux-kernel, linux-fbdev-devel On Thu, 2009-07-30 at 16:11 -0700, Andrew Morton wrote: > On Wed, 29 Jul 2009 19:21:23 +0200 > Johannes Weiner <hannes@cmpxchg.org> wrote: > > > Catalin and kmemleak spotted a leak of a VC screen buffer in > > vc_allocate() due to the following chain of events: > > > > vc_allocate() > > visual_init(init=1) > > vc->vc_sw->con_init(init=1) > > fbcon_init() > > vc_resize() > > vc->screen_buf = kmalloc() > > vc->screen_buf = kmalloc() > > > > The common way for the VC drivers is to set the screen dimension > > parameters manually in the init case and only call vc_resize() for > > !init - which allocates a screen buffer according to the new > > dimensions. > > > > fbcon instead would do vc_resize() unconditionally and afterwards set > > the dimensions manually (again) for !init - i.e. completely upside > > down. The vc_resize() allocated buffer would then get lost by > > vc_allocate() allocating a fresh one. > > > > Use vc_resize() only for actual resizing to close the leak. > > > > Set the dimensions manually only in initialization mode to remove the > > redundant setting in resize mode. > > > > The kmemleak trace from Catalin: > > > > unreferenced object 0xde158000 (size 12288): > > That's a big leak! > > What sequence of user actions would cause it to occur? In my case, I think anything that causes a tty_open() call with a framebuffer console. I get a leak when logging in on the console and another when starting the X server. -- Catalin ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [patch] fbcon: don't use vc_resize() on initialization 2009-07-29 17:21 ` [patch] fbcon: don't use vc_resize() on initialization Johannes Weiner 2009-07-30 23:11 ` Andrew Morton @ 2009-08-01 8:31 ` Dave Young 1 sibling, 0 replies; 7+ messages in thread From: Dave Young @ 2009-08-01 8:31 UTC (permalink / raw) To: Johannes Weiner Cc: Catalin Marinas, Andrew Morton, Pekka Enberg, linux-kernel On Wed, Jul 29, 2009 at 07:21:23PM +0200, Johannes Weiner wrote: > Catalin and kmemleak spotted a leak of a VC screen buffer in > vc_allocate() due to the following chain of events: > > vc_allocate() > visual_init(init=1) > vc->vc_sw->con_init(init=1) > fbcon_init() > vc_resize() > vc->screen_buf = kmalloc() > vc->screen_buf = kmalloc() > > The common way for the VC drivers is to set the screen dimension > parameters manually in the init case and only call vc_resize() for > !init - which allocates a screen buffer according to the new > dimensions. > > fbcon instead would do vc_resize() unconditionally and afterwards set > the dimensions manually (again) for !init - i.e. completely upside > down. The vc_resize() allocated buffer would then get lost by > vc_allocate() allocating a fresh one. > > Use vc_resize() only for actual resizing to close the leak. > > Set the dimensions manually only in initialization mode to remove the > redundant setting in resize mode. > > The kmemleak trace from Catalin: > > unreferenced object 0xde158000 (size 12288): > comm "Xorg", pid 1439, jiffies 4294961016 > hex dump (first 32 bytes): > 20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . . > 20 00 20 00 20 00 20 00 20 00 20 00 20 00 20 00 . . . . . . . . > backtrace: > [<c006f74b>] __save_stack_trace+0x17/0x1c > [<c006f81d>] create_object+0xcd/0x188 > [<c01f5457>] kmemleak_alloc+0x1b/0x3c > [<c006e303>] __kmalloc+0xdb/0xe8 > [<c012cc4b>] vc_do_resize+0x73/0x1e0 > [<c012cdf1>] vc_resize+0x15/0x18 > [<c011afc1>] fbcon_init+0x1f9/0x2b8 > [<c0129e87>] visual_init+0x9f/0xdc > [<c012aff3>] vc_allocate+0x7f/0xfc > [<c012b087>] con_open+0x17/0x80 > [<c0120e43>] tty_open+0x1f7/0x2e4 > [<c0072fa1>] chrdev_open+0x101/0x118 > [<c006ffad>] __dentry_open+0x105/0x1cc > [<c00700fd>] nameidata_to_filp+0x2d/0x38 > [<c00788cd>] do_filp_open+0x2c1/0x54c > [<c006fdff>] do_sys_open+0x3b/0xb4 > > Reported-by: Catalin Marinas <catalin.marinas@arm.com> > Signed-off-by: Johannes Weiner <hannes@cmpxchg.org> > Tested-by: Catalin Marinas <catalin.marinas@arm.com> > Cc: Pekka Enberg <penberg@cs.helsinki.fi> > --- > drivers/video/console/fbcon.c | 6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c > index 471a9a6..3a44695 100644 > --- a/drivers/video/console/fbcon.c > +++ b/drivers/video/console/fbcon.c > @@ -1082,7 +1082,6 @@ static void fbcon_init(struct vc_data *vc, int init) > new_rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres); > new_cols /= vc->vc_font.width; > new_rows /= vc->vc_font.height; > - vc_resize(vc, new_cols, new_rows); > > /* > * We must always set the mode. The mode of the previous console > @@ -1111,10 +1110,11 @@ static void fbcon_init(struct vc_data *vc, int init) > * vc_{cols,rows}, but we must not set those if we are only > * resizing the console. > */ > - if (!init) { > + if (init) { > vc->vc_cols = new_cols; > vc->vc_rows = new_rows; > - } > + } else > + vc_resize(vc, new_cols, new_rows); > > if (logo) > fbcon_prepare_logo(vc, info, cols, rows, new_cols, new_rows); > -- > 1.6.3 > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ Tested-by: Dave Young <hidave.darkstar@gmail.com> ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2009-08-01 8:38 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-07-29 9:31 Another memory leak in drivers/char/vt.c Catalin Marinas 2009-07-29 10:39 ` Johannes Weiner 2009-07-29 11:04 ` Catalin Marinas 2009-07-29 17:21 ` [patch] fbcon: don't use vc_resize() on initialization Johannes Weiner 2009-07-30 23:11 ` Andrew Morton 2009-07-31 9:09 ` Catalin Marinas 2009-08-01 8:31 ` Dave Young
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox