From: Dan Carpenter Date: Wed, 26 Oct 2011 07:42:36 +0000 (-0400) Subject: ext4: error handling fix in ext4_ext_convert_to_initialized() X-Git-Tag: v3.2-rc1~85^2~32 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f85b287a01237857a50c93868231f7e831581a27;p=pandora-kernel.git ext4: error handling fix in ext4_ext_convert_to_initialized() When allocated is unsigned it breaks the error handling at the end of the function when we call: allocated = ext4_split_extent(...); if (allocated < 0) err = allocated; I've made it a signed int instead of unsigned. Signed-off-by: Dan Carpenter Signed-off-by: "Theodore Ts'o" --- Reading git-diff-tree failed