]> git.baikalelectronics.ru Git - kernel.git/commit
[PATCH] sg.c: fix a memory leak in devices seq_file implementation
authorJan Blunck <j.blunck@tu-harburg.de>
Sat, 27 Aug 2005 18:07:52 +0000 (11:07 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Sat, 27 Aug 2005 18:22:27 +0000 (11:22 -0700)
commit28dff8b48005d14530a47863f6d31d9cf8495234
treef92ee98a709264984ef6e3e8d6c3ee4f3462797f
parent221507f160c3e820dc8451a047d91945aa2cbce9
[PATCH] sg.c: fix a memory leak in devices seq_file implementation

I know that scsi procfs is legacy code but this is a fix for a memory leak.

While reading through sg.c I realized that the implementation of
/proc/scsi/sg/devices with seq_file is leaking memory due to freeing the
pointer returned by the next() iterator method.  Since next() might return
NULL or an error this is wrong.  This patch fixes it through using the
seq_files private field for holding the reference to the iterator object.

Here is a small bash script to trigger the leak. Use slabtop to watch
the size-32 usage grow and grow.

#!/bin/sh

while true; do
cat /proc/scsi/sg/devices > /dev/null
done

Signed-off-by: Jan Blunck <j.blunck@tu-harburg.de>
Acked-by: James Bottomley <James.Bottomley@steeleye.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/scsi/sg.c