From: Robin Dong Date: Mon, 11 Jul 2011 15:43:59 +0000 (-0400) Subject: ext4: remove redundant goto in ext4_ext_insert_extent() X-Git-Tag: v3.1-rc1~90^2~40 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffb505ff0f7b52318dea46dd139107a8371b4ad7;p=pandora-kernel.git ext4: remove redundant goto in ext4_ext_insert_extent() If eh->eh_entries is smaller than eh->eh_max, the routine will go to the "repeat" and then go to "has_space" directlly , since argument "depth" and "eh" are not even changed. Therefore, goto "has_space" directly and remove redundant "repeat" tag. Signed-off-by: Robin Dong --- Reading git-diff-tree failed