[patch] JFS build fix for 2.5.8

Andrew Morton (akpm@zip.com.au)
Sun, 14 Apr 2002 17:15:21 -0700


Missed a page->buffers -> page->private conversion.
Apologies..

--- 2.5.8/fs/jfs/jfs_metapage.c~dallocbase-35-pageprivate_fixes Sun Apr 14 17:04:11 2002
+++ 2.5.8-akpm/fs/jfs/jfs_metapage.c Sun Apr 14 17:04:11 2002
@@ -515,7 +515,7 @@ static inline void sync_metapage(metapag
lock_page(page);

/* we're done with this page - no need to check for errors */
- if (page->buffers) {
+ if (page_has_buffers(page)) {
writeout_one_page(page);
waitfor_one_page(page);
}

-
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/