diff options
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r-- | Documentation/filesystems/Locking | 2 | ||||
-rw-r--r-- | Documentation/filesystems/vfs.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index efca5c1bbb10..eba790134253 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking | |||
@@ -202,7 +202,7 @@ prototypes: | |||
202 | unsigned long *); | 202 | unsigned long *); |
203 | int (*migratepage)(struct address_space *, struct page *, struct page *); | 203 | int (*migratepage)(struct address_space *, struct page *, struct page *); |
204 | int (*launder_page)(struct page *); | 204 | int (*launder_page)(struct page *); |
205 | int (*is_partially_uptodate)(struct page *, read_descriptor_t *, unsigned long); | 205 | int (*is_partially_uptodate)(struct page *, unsigned long, unsigned long); |
206 | int (*error_remove_page)(struct address_space *, struct page *); | 206 | int (*error_remove_page)(struct address_space *, struct page *); |
207 | int (*swap_activate)(struct file *); | 207 | int (*swap_activate)(struct file *); |
208 | int (*swap_deactivate)(struct file *); | 208 | int (*swap_deactivate)(struct file *); |
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt index 94eb86287bcb..617f6d70c077 100644 --- a/Documentation/filesystems/vfs.txt +++ b/Documentation/filesystems/vfs.txt | |||
@@ -596,7 +596,7 @@ struct address_space_operations { | |||
596 | /* migrate the contents of a page to the specified target */ | 596 | /* migrate the contents of a page to the specified target */ |
597 | int (*migratepage) (struct page *, struct page *); | 597 | int (*migratepage) (struct page *, struct page *); |
598 | int (*launder_page) (struct page *); | 598 | int (*launder_page) (struct page *); |
599 | int (*is_partially_uptodate) (struct page *, read_descriptor_t *, | 599 | int (*is_partially_uptodate) (struct page *, unsigned long, |
600 | unsigned long); | 600 | unsigned long); |
601 | void (*is_dirty_writeback) (struct page *, bool *, bool *); | 601 | void (*is_dirty_writeback) (struct page *, bool *, bool *); |
602 | int (*error_remove_page) (struct mapping *mapping, struct page *page); | 602 | int (*error_remove_page) (struct mapping *mapping, struct page *page); |