Messages in this thread Patch in this message |  | | Date | Tue, 5 Dec 2000 03:31:52 -0800 | From | "Adam J. Richter" <> | Subject | Patch: linux-2.4.0-test12-pre5/fs/udf/inode.c writepage still had extra parameter |
| |
Apparently, in linux 2.4.0-test12-pre5, address_space_operations->writepage went from having two parameters to just one. fs/udf/inode.c apparently was overlooked in the patch. Here is the one line change.
-- Adam J. Richter __ ______________ 4880 Stevens Creek Blvd, Suite 104 adam@yggdrasil.com \ / San Jose, California 95129-1034 +1 408 261-6630 | g g d r a s i l United States of America fax +1 408 261-6631 "Free Software For The Rest Of Us." Index: linux/fs/udf/inode.c =================================================================== RCS file: /usr/src.repository/repository/linux/fs/udf/inode.c,v retrieving revision 1.22 diff -u -r1.22 inode.c --- linux/fs/udf/inode.c 2000/12/05 10:21:27 1.22 +++ linux/fs/udf/inode.c 2000/12/05 11:27:54 @@ -202,7 +202,7 @@ mark_buffer_dirty(bh); udf_release_data(bh); - inode->i_data.a_ops->writepage(NULL, page); + inode->i_data.a_ops->writepage(page); UnlockPage(page); page_cache_release(page);
|  |