When I tried to compile I got the following warning:
authorPoyo VL <poyo_vl@yahoo.com>
Mon, 11 Oct 2010 20:45:52 +0000 (13:45 -0700)
committerJoel Becker <joel.becker@oracle.com>
Mon, 11 Oct 2010 20:45:52 +0000 (13:45 -0700)
fs/ocfs2/slot_map.c: In function ‘ocfs2_init_slot_info’:
fs/ocfs2/slot_map.c:360: warning: ‘bytes’ may be used uninitialized in this function
fs/ocfs2/slot_map.c:360: note: ‘bytes’ was declared here
Compiler: gcc version 4.4.3 (GCC) on Mandriva
I'm not sure why this warning occurs, I think compiler don't know that variable
"bytes" is initialized when it is sent by reference to
ocfs2_slot_map_physical_size and it throws that ugly warning.
However, a simple initialization of "bytes" variable with 0 will fix it.

Signed-off-by: Ionut Gabriel Popescu <poyo_vl@yahoo.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>

No differences found