public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ext4: fix #11321: create /proc/ext4/*/stats et al more carefully
@ 2008-09-05 21:06 Alexey Dobriyan
  2008-09-06  7:57 ` Andreas Dilger
  2008-09-09 11:51 ` Christoph Hellwig
  0 siblings, 2 replies; 15+ messages in thread
From: Alexey Dobriyan @ 2008-09-05 21:06 UTC (permalink / raw)
  To: ralf.hildebrandt; +Cc: akpm, linux-ext4

Ralf, please confirm.



[PATCH] ext4: fix #11321: create /proc/ext4/*/stats more carefully

ext4 creates per-suberblock directory in /proc/ext4/ . Name used as
basis is taken from bdevname, which, surprise, can contain slash.

However, proc while allowing to use proc_create("a/b", parent) form of
PDE creation, assumes that parent/a was already created.

bdevname in question is 'cciss/c0d0p9', directory is not created and all
this stuff goes directly into /proc (which is real bug).

Warning comes when _second_ partition is mounted.

http://bugzilla.kernel.org/show_bug.cgi?id=11321

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---

 fs/ext4/mballoc.c |    9 +++++++++
 1 file changed, 9 insertions(+)

--- a/fs/ext4/mballoc.c
+++ b/fs/ext4/mballoc.c
@@ -2792,6 +2792,15 @@ static int ext4_mb_init_per_dev_proc(struct super_block *sb)
 		return -EINVAL;
 	}
 	bdevname(sb->s_bdev, devname);
+	{
+		char *p = devname;
+
+		while (*p != '\0') {
+			if (*p == '/')
+				*p = '!';
+			p++;
+		}
+	}
 	sbi->s_mb_proc = proc_mkdir(devname, proc_root_ext4);
 
 	MB_PROC_HANDLER(EXT4_MB_STATS_NAME, stats);


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

end of thread, other threads:[~2008-09-09 18:29 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-05 21:06 [PATCH] ext4: fix #11321: create /proc/ext4/*/stats et al more carefully Alexey Dobriyan
2008-09-06  7:57 ` Andreas Dilger
2008-09-07 12:15   ` Alexey Dobriyan
2008-09-07 16:04     ` Ralf Hildebrandt
2008-09-07 16:24     ` Theodore Tso
2008-09-07 16:41       ` Alexey Dobriyan
2008-09-08 14:39         ` Theodore Tso
2008-09-09  7:06           ` Alexey Dobriyan
2008-09-09  7:12             ` Andrew Morton
2008-09-09 13:09               ` Theodore Tso
2008-09-09 18:10                 ` Andrew Morton
2008-09-09 18:24                   ` Theodore Tso
2008-09-09 18:29                     ` Andrew Morton
2008-09-09  7:19           ` Alexey Dobriyan
2008-09-09 11:51 ` Christoph Hellwig

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