Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d509e54 authored by Chuck Lever's avatar Chuck Lever Committed by Trond Myklebust
Browse files

NFS: nfs_write_end clean up



Clean up: commit 4899f9c8 added nfs_write_end(), which introduces a
conditional expression that returns an unsigned integer in one arm and
a signed integer in the other.

Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent bf4285e7
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -349,7 +349,9 @@ static int nfs_write_end(struct file *file, struct address_space *mapping,
	unlock_page(page);
	page_cache_release(page);

	return status < 0 ? status : copied;
	if (status < 0)
		return status;
	return copied;
}

static void nfs_invalidate_page(struct page *page, unsigned long offset)