diff options
Diffstat (limited to 'Documentation/filesystems')
| -rw-r--r-- | Documentation/filesystems/Locking | 6 | ||||
| -rw-r--r-- | Documentation/filesystems/vfs.txt | 20 |
2 files changed, 13 insertions, 13 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index 0706d32a61e6..cbbac3fa0eb4 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking | |||
| @@ -189,7 +189,7 @@ prototypes: | |||
| 189 | loff_t pos, unsigned len, unsigned copied, | 189 | loff_t pos, unsigned len, unsigned copied, |
| 190 | struct page *page, void *fsdata); | 190 | struct page *page, void *fsdata); |
| 191 | sector_t (*bmap)(struct address_space *, sector_t); | 191 | sector_t (*bmap)(struct address_space *, sector_t); |
| 192 | int (*invalidatepage) (struct page *, unsigned long); | 192 | void (*invalidatepage) (struct page *, unsigned int, unsigned int); |
| 193 | int (*releasepage) (struct page *, int); | 193 | int (*releasepage) (struct page *, int); |
| 194 | void (*freepage)(struct page *); | 194 | void (*freepage)(struct page *); |
| 195 | int (*direct_IO)(int, struct kiocb *, const struct iovec *iov, | 195 | int (*direct_IO)(int, struct kiocb *, const struct iovec *iov, |
| @@ -310,8 +310,8 @@ filesystems and by the swapper. The latter will eventually go away. Please, | |||
| 310 | keep it that way and don't breed new callers. | 310 | keep it that way and don't breed new callers. |
| 311 | 311 | ||
| 312 | ->invalidatepage() is called when the filesystem must attempt to drop | 312 | ->invalidatepage() is called when the filesystem must attempt to drop |
| 313 | some or all of the buffers from the page when it is being truncated. It | 313 | some or all of the buffers from the page when it is being truncated. It |
| 314 | returns zero on success. If ->invalidatepage is zero, the kernel uses | 314 | returns zero on success. If ->invalidatepage is zero, the kernel uses |
| 315 | block_invalidatepage() instead. | 315 | block_invalidatepage() instead. |
| 316 | 316 | ||
| 317 | ->releasepage() is called when the kernel is about to try to drop the | 317 | ->releasepage() is called when the kernel is about to try to drop the |
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt index bc4b06b3160a..e445b95a002b 100644 --- a/Documentation/filesystems/vfs.txt +++ b/Documentation/filesystems/vfs.txt | |||
| @@ -549,7 +549,7 @@ struct address_space_operations | |||
| 549 | ------------------------------- | 549 | ------------------------------- |
| 550 | 550 | ||
| 551 | This describes how the VFS can manipulate mapping of a file to page cache in | 551 | This describes how the VFS can manipulate mapping of a file to page cache in |
| 552 | your filesystem. As of kernel 2.6.22, the following members are defined: | 552 | your filesystem. The following members are defined: |
| 553 | 553 | ||
| 554 | struct address_space_operations { | 554 | struct address_space_operations { |
| 555 | int (*writepage)(struct page *page, struct writeback_control *wbc); | 555 | int (*writepage)(struct page *page, struct writeback_control *wbc); |
| @@ -566,7 +566,7 @@ struct address_space_operations { | |||
| 566 | loff_t pos, unsigned len, unsigned copied, | 566 | loff_t pos, unsigned len, unsigned copied, |
| 567 | struct page *page, void *fsdata); | 567 | struct page *page, void *fsdata); |
| 568 | sector_t (*bmap)(struct address_space *, sector_t); | 568 | sector_t (*bmap)(struct address_space *, sector_t); |
| 569 | int (*invalidatepage) (struct page *, unsigned long); | 569 | void (*invalidatepage) (struct page *, unsigned int, unsigned int); |
| 570 | int (*releasepage) (struct page *, int); | 570 | int (*releasepage) (struct page *, int); |
| 571 | void (*freepage)(struct page *); | 571 | void (*freepage)(struct page *); |
| 572 | ssize_t (*direct_IO)(int, struct kiocb *, const struct iovec *iov, | 572 | ssize_t (*direct_IO)(int, struct kiocb *, const struct iovec *iov, |
| @@ -685,14 +685,14 @@ struct address_space_operations { | |||
| 685 | invalidatepage: If a page has PagePrivate set, then invalidatepage | 685 | invalidatepage: If a page has PagePrivate set, then invalidatepage |
| 686 | will be called when part or all of the page is to be removed | 686 | will be called when part or all of the page is to be removed |
| 687 | from the address space. This generally corresponds to either a | 687 | from the address space. This generally corresponds to either a |
| 688 | truncation or a complete invalidation of the address space | 688 | truncation, punch hole or a complete invalidation of the address |
| 689 | (in the latter case 'offset' will always be 0). | 689 | space (in the latter case 'offset' will always be 0 and 'length' |
| 690 | Any private data associated with the page should be updated | 690 | will be PAGE_CACHE_SIZE). Any private data associated with the page |
| 691 | to reflect this truncation. If offset is 0, then | 691 | should be updated to reflect this truncation. If offset is 0 and |
| 692 | the private data should be released, because the page | 692 | length is PAGE_CACHE_SIZE, then the private data should be released, |
| 693 | must be able to be completely discarded. This may be done by | 693 | because the page must be able to be completely discarded. This may |
| 694 | calling the ->releasepage function, but in this case the | 694 | be done by calling the ->releasepage function, but in this case the |
| 695 | release MUST succeed. | 695 | release MUST succeed. |
| 696 | 696 | ||
| 697 | releasepage: releasepage is called on PagePrivate pages to indicate | 697 | releasepage: releasepage is called on PagePrivate pages to indicate |
| 698 | that the page should be freed if possible. ->releasepage | 698 | that the page should be freed if possible. ->releasepage |
