From: Simon Holm Thøgersen Date: Mon, 12 Jan 2009 03:34:01 +0000 (-0500) Subject: ext4: fix wrong use of do_div X-Git-Tag: v2.6.29-rc4~89^2~8 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c225aa57ff4ffe715df4692676b77c815a337236;p=pandora-kernel.git ext4: fix wrong use of do_div the following warning: fs/jbd2/journal.c: In function ‘jbd2_seq_info_show’: fs/jbd2/journal.c:850: warning: format ‘%lu’ expects type ‘long unsigned int’, but argument 3 has type ‘uint32_t’ is caused by wrong usage of do_div that modifies the dividend in-place and returns the quotient. So not only would an incorrect value be displayed, but s->journal->j_average_commit_time would also be changed to a wrong value! Fix it by using div_u64 instead. Signed-off-by: Simon Holm Thøgersen Signed-off-by: "Theodore Ts'o" --- Reading git-diff-tree failed