diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-01-18 18:06:51 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2004-01-18 18:06:51 -0800 |
| commit | 7ca0643e528a8d817c7a5a254d8e022f613b1cc7 (patch) | |
| tree | 860af43fc27837951eb772c62857f3657e0654eb /include/linux | |
| parent | df6a148fac03627157260808cbdcfc8f7d40b4c2 (diff) | |
[PATCH] bdev: generic_osync_inode() conversion
From: viro@parcelfarce.linux.theplanet.co.uk <viro@parcelfarce.linux.theplanet.co.uk>
generic_osync_inode() got an extra argument - mapping and doesn't calculate
inode->i_mapping anymore. Callers updated and switched to use of
->f_mapping.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/buffer_head.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 33d0ce110034..5f4b675a7bb4 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h @@ -210,7 +210,7 @@ int nobh_truncate_page(struct address_space *, loff_t); #define OSYNC_METADATA (1<<0) #define OSYNC_DATA (1<<1) #define OSYNC_INODE (1<<2) -int generic_osync_inode(struct inode *, int); +int generic_osync_inode(struct inode *, struct address_space *, int); /* |
