[PATCH] ext3: use sbi instead of EXT3_SB() in resize code.
authorGlauber de Oliveira Costa <glommer@br.ibm.com>
Sun, 8 Jan 2006 09:03:23 +0000 (01:03 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Mon, 9 Jan 2006 04:13:56 +0000 (20:13 -0800)
commit29ba17231222c42ca3df5424f43949e2a6fddec2
tree8081c7ffd66a42bc82b685350bcc46e38c94ff4f
parent9f40668d7d14d4d16cedc2104bfb63a43584dacf
[PATCH] ext3: use sbi instead of EXT3_SB() in resize code.

There are places in the resize code in which EXT3_SB() macro is used after
an statement like sbi = EXT3_SB(sb) is done.  Inside the same function,
both sbi and EXT3_SB() are used to reference the super block Altough it is
not wrong, keeping it coherent increases legibility, IMHO.

Signed-off-by: Glauber de Oliveira Costa <glommer@br.ibm.com>
Cc: "Stephen C. Tweedie" <sct@redhat.com>
Cc: Andreas Dilger <adilger@clusterfs.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/ext3/resize.c