On Mon, Jan 12, 2009 at 10:23:45PM -0800, Andrew Morton wrote: > On Wed, 7 Jan 2009 22:56:52 -0500 Chris Mason <chris.mason@xxxxxxxxxx> wrote: > > + list_for_each_entry(device, &seed_devices->devices, dev_list) { > > + device->fs_devices = seed_devices; > > + } > > unneeded braces > > <runs checkpatch> > > <checkpatch misses this - regression?> It never did check them for the list_for_foo things. Will add that to my todo list. > #2001: FILE: fs/btrfs/volumes.c:1930: > + return calc_size * num_stripes; > ^ > > ERROR: space prohibited after that '*' (ctx:WxW) > #2072: FILE: fs/btrfs/volumes.c:2001: > + max_chunk_size = calc_size * 2; > ^ > > ERROR: space prohibited after that '*' (ctx:WxW) > #2089: FILE: fs/btrfs/volumes.c:2018: > + if (calc_size * num_stripes > max_chunk_size) { > ^ > > ERROR: space prohibited after that '*' (ctx:WxW) > #2105: FILE: fs/btrfs/volumes.c:2034: > + min_free = calc_size * 2; > ^ > > hm, they're all wrong. Ok all the * spacing errors are the same basic fault. That there is an else on the previous line and that is being incomporated incorrectly into the statement for possible type analysis. This part will be fixed in my next block of updates. -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html