From: Anton Altaparmakov Date: Thu, 22 Jun 2006 21:47:15 +0000 (-0700) Subject: [PATCH] NTFS: Critical bug fix (affects MIPS and possibly others) X-Git-Tag: v3.12-rc1~35856^2~242 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f893afbe1262e27e91234506f72e17716190dd2f;p=kernel%2Fkernel-generic.git [PATCH] NTFS: Critical bug fix (affects MIPS and possibly others) Many thanks to Pauline Ng for the detailed bug report and analysis! Signed-off-by: Anton Altaparmakov Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/ntfs/file.c b/fs/ntfs/file.c index c63a83e..36e1e136 100644 --- a/fs/ntfs/file.c +++ b/fs/ntfs/file.c @@ -1484,14 +1484,15 @@ static inline void ntfs_flush_dcache_pages(struct page **pages, unsigned nr_pages) { BUG_ON(!nr_pages); + /* + * Warning: Do not do the decrement at the same time as the call to + * flush_dcache_page() because it is a NULL macro on i386 and hence the + * decrement never happens so the loop never terminates. + */ do { - /* - * Warning: Do not do the decrement at the same time as the - * call because flush_dcache_page() is a NULL macro on i386 - * and hence the decrement never happens. - */ + --nr_pages; flush_dcache_page(pages[nr_pages]); - } while (--nr_pages > 0); + } while (nr_pages > 0); } /**