Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
netfs: Generate a buffered writeback from ->writepages()
Handle the initiation of writeback of a piece of the dirty list. A slice of a dirty region is extracted and a writeback record is set up to manage it. The pages in the affected region are flipped from dirty to writeback-in-progress. The writeback is then dispatched (which at this point just logs a message to dmesg and then abandons it). Signed-off-by: David Howells <dhowells@redhat.com>
- Loading branch information
Showing
8 changed files
with
611 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -7,6 +7,7 @@ netfs-y := \ | ||
| misc.o \ | ||
| objects.o \ | ||
| read_helper.o \ | ||
| write_back.o \ | ||
| write_helper.o | ||
|
|
||
| netfs-$(CONFIG_NETFS_STATS) += stats.o | ||
Oops, something went wrong.