Messages in this thread Patch in this message |  | | Date | Mon, 4 Sep 2000 22:40:26 +0200 | From | Rasmus Andersen <> | Subject | [patch] Updated adfs to use new mark_buffers_dirty interface |
| |
Hi.
(I hope you are the code maintainer for adfs. Your name is in the files.)
I have changed the interface to mark_buffer_dirty (as per Tigran Aivazian's suggestion). This impacts adfs as per the following patch.
diff -u --recursive -X misc/dontdiff linux-240test8-pre2/fs/adfs/dir_f.c linux/fs/adfs/dir_f.c --- linux-240test8-pre2/fs/adfs/dir_f.c Mon Jul 31 21:03:22 2000 +++ linux/fs/adfs/dir_f.c Mon Sep 4 20:43:46 2000 @@ -437,7 +437,7 @@ } #endif for (i = dir->nr_buffers - 1; i >= 0; i--) - mark_buffer_dirty(dir->bh[i], 1); + mark_buffer_dirty(dir->bh[i]); ret = 0; out: -- Regards, Rasmus(rasmus@jaquet.dk)
Half this game is ninety percent mental. -Philadelphia Phillies manager Danny Ozark - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |