Skip to content

Commit 38c7304

Browse files
Peter StaubachTrond Myklebust
authored andcommitted
NFS: read-modify-write page updating
Hi. I have a proposal for possibly resolving this issue. I believe that this situation occurs due to the way that the Linux NFS client handles writes which modify partial pages. The Linux NFS client handles partial page modifications by allocating a page from the page cache, copying the data from the user level into the page, and then keeping track of the offset and length of the modified portions of the page. The page is not marked as up to date because there are portions of the page which do not contain valid file contents. When a read call comes in for a portion of the page, the contents of the page must be read in the from the server. However, since the page may already contain some modified data, that modified data must be written to the server before the file contents can be read back in the from server. And, since the writing and reading can not be done atomically, the data must be written and committed to stable storage on the server for safety purposes. This means either a FILE_SYNC WRITE or a UNSTABLE WRITE followed by a COMMIT. This has been discussed at length previously. This algorithm could be described as modify-write-read. It is most efficient when the application only updates pages and does not read them. My proposed solution is to add a heuristic to decide whether to do this modify-write-read algorithm or switch to a read- modify-write algorithm when initially allocating the page in the write system call path. The heuristic uses the modes that the file was opened with, the offset in the page to read from, and the size of the region to read. If the file was opened for reading in addition to writing and the page would not be filled completely with data from the user level, then read in the old contents of the page and mark it as Uptodate before copying in the new data. If the page would be completely filled with data from the user level, then there would be no reason to read in the old contents because they would just be copied over. This would optimize for applications which randomly access and update portions of files. The linkage editor for the C compiler is an example of such a thing. I tested the attached patch by using rpmbuild to build the current Fedora rawhide kernel. The kernel without the patch generated about 269,500 WRITE requests. The modified kernel containing the patch generated about 261,000 WRITE requests. Thus, about 8,500 fewer WRITE requests were generated. I suspect that many of these additional WRITE requests were probably FILE_SYNC requests to WRITE a single page, but I didn't test this theory. The difference between this patch and the previous one was to remove the unneeded PageDirty() test. I then retested to ensure that the resulting system continued to behave as desired. Thanx... ps Signed-off-by: Peter Staubach <staubach@redhat.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
1 parent 074cc1d commit 38c7304

File tree

1 file changed

+46
-2
lines changed

1 file changed

+46
-2
lines changed

fs/nfs/file.c

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,42 @@ nfs_file_fsync(struct file *file, struct dentry *dentry, int datasync)
327327
return nfs_do_fsync(ctx, inode);
328328
}
329329

330+
/*
331+
* Decide whether a read/modify/write cycle may be more efficient
332+
* then a modify/write/read cycle when writing to a page in the
333+
* page cache.
334+
*
335+
* The modify/write/read cycle may occur if a page is read before
336+
* being completely filled by the writer. In this situation, the
337+
* page must be completely written to stable storage on the server
338+
* before it can be refilled by reading in the page from the server.
339+
* This can lead to expensive, small, FILE_SYNC mode writes being
340+
* done.
341+
*
342+
* It may be more efficient to read the page first if the file is
343+
* open for reading in addition to writing, the page is not marked
344+
* as Uptodate, it is not dirty or waiting to be committed,
345+
* indicating that it was previously allocated and then modified,
346+
* that there were valid bytes of data in that range of the file,
347+
* and that the new data won't completely replace the old data in
348+
* that range of the file.
349+
*/
350+
static int nfs_want_read_modify_write(struct file *file, struct page *page,
351+
loff_t pos, unsigned len)
352+
{
353+
unsigned int pglen = nfs_page_length(page);
354+
unsigned int offset = pos & (PAGE_CACHE_SIZE - 1);
355+
unsigned int end = offset + len;
356+
357+
if ((file->f_mode & FMODE_READ) && /* open for read? */
358+
!PageUptodate(page) && /* Uptodate? */
359+
!PagePrivate(page) && /* i/o request already? */
360+
pglen && /* valid bytes of file? */
361+
(end < pglen || offset)) /* replace all valid bytes? */
362+
return 1;
363+
return 0;
364+
}
365+
330366
/*
331367
* This does the "real" work of the write. We must allocate and lock the
332368
* page to be sent back to the generic routine, which then copies the
@@ -340,15 +376,16 @@ static int nfs_write_begin(struct file *file, struct address_space *mapping,
340376
struct page **pagep, void **fsdata)
341377
{
342378
int ret;
343-
pgoff_t index;
379+
pgoff_t index = pos >> PAGE_CACHE_SHIFT;
344380
struct page *page;
345-
index = pos >> PAGE_CACHE_SHIFT;
381+
int once_thru = 0;
346382

347383
dfprintk(PAGECACHE, "NFS: write_begin(%s/%s(%ld), %u@%lld)\n",
348384
file->f_path.dentry->d_parent->d_name.name,
349385
file->f_path.dentry->d_name.name,
350386
mapping->host->i_ino, len, (long long) pos);
351387

388+
start:
352389
/*
353390
* Prevent starvation issues if someone is doing a consistency
354391
* sync-to-disk
@@ -367,6 +404,13 @@ static int nfs_write_begin(struct file *file, struct address_space *mapping,
367404
if (ret) {
368405
unlock_page(page);
369406
page_cache_release(page);
407+
} else if (!once_thru &&
408+
nfs_want_read_modify_write(file, page, pos, len)) {
409+
once_thru = 1;
410+
ret = nfs_readpage(file, page);
411+
page_cache_release(page);
412+
if (!ret)
413+
goto start;
370414
}
371415
return ret;
372416
}

0 commit comments

Comments
 (0)