2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/fs/nfs/direct.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 by Chuck Lever <cel@netapp.com>
|
|
|
|
*
|
|
|
|
* High-performance uncached I/O for the Linux NFS client
|
|
|
|
*
|
|
|
|
* There are important applications whose performance or correctness
|
|
|
|
* depends on uncached access to file data. Database clusters
|
2006-03-20 18:44:34 +00:00
|
|
|
* (multiple copies of the same instance running on separate hosts)
|
2005-04-16 22:20:36 +00:00
|
|
|
* implement their own cache coherency protocol that subsumes file
|
2006-03-20 18:44:34 +00:00
|
|
|
* system cache protocols. Applications that process datasets
|
|
|
|
* considerably larger than the client's memory do not always benefit
|
|
|
|
* from a local cache. A streaming video server, for instance, has no
|
2005-04-16 22:20:36 +00:00
|
|
|
* need to cache the contents of a file.
|
|
|
|
*
|
|
|
|
* When an application requests uncached I/O, all read and write requests
|
|
|
|
* are made directly to the server; data stored or fetched via these
|
|
|
|
* requests is not cached in the Linux page cache. The client does not
|
|
|
|
* correct unaligned requests from applications. All requested bytes are
|
|
|
|
* held on permanent storage before a direct write system call returns to
|
|
|
|
* an application.
|
|
|
|
*
|
|
|
|
* Solaris implements an uncached I/O facility called directio() that
|
|
|
|
* is used for backups and sequential I/O to very large files. Solaris
|
|
|
|
* also supports uncaching whole NFS partitions with "-o forcedirectio,"
|
|
|
|
* an undocumented mount option.
|
|
|
|
*
|
|
|
|
* Designed by Jeff Kimmel, Chuck Lever, and Trond Myklebust, with
|
|
|
|
* help from Andrew Morton.
|
|
|
|
*
|
|
|
|
* 18 Dec 2001 Initial implementation for 2.4 --cel
|
|
|
|
* 08 Jul 2002 Version for 2.4.19, with bug fixes --trondmy
|
|
|
|
* 08 Jun 2003 Port to 2.5 APIs --cel
|
|
|
|
* 31 Mar 2004 Handle direct I/O without VFS support --cel
|
|
|
|
* 15 Sep 2004 Parallel async reads --cel
|
2006-03-20 18:44:34 +00:00
|
|
|
* 04 May 2005 support O_DIRECT with aio --cel
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/file.h>
|
|
|
|
#include <linux/pagemap.h>
|
|
|
|
#include <linux/kref.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2011-02-21 21:28:34 +00:00
|
|
|
#include <linux/task_io_accounting_ops.h>
|
2012-09-25 06:55:57 +00:00
|
|
|
#include <linux/module.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include <linux/nfs_fs.h>
|
|
|
|
#include <linux/nfs_page.h>
|
|
|
|
#include <linux/sunrpc/clnt.h>
|
|
|
|
|
|
|
|
#include <asm/uaccess.h>
|
2011-07-26 23:09:06 +00:00
|
|
|
#include <linux/atomic.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-04-10 13:26:35 +00:00
|
|
|
#include "internal.h"
|
2006-03-20 18:44:14 +00:00
|
|
|
#include "iostat.h"
|
2012-04-20 18:47:57 +00:00
|
|
|
#include "pnfs.h"
|
2006-03-20 18:44:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#define NFSDBG_FACILITY NFSDBG_VFS
|
|
|
|
|
2006-12-07 04:33:20 +00:00
|
|
|
static struct kmem_cache *nfs_direct_cachep;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This represents a set of asynchronous requests that we're waiting on
|
|
|
|
*/
|
|
|
|
struct nfs_direct_req {
|
|
|
|
struct kref kref; /* release manager */
|
2006-03-20 18:44:34 +00:00
|
|
|
|
|
|
|
/* I/O parameters */
|
2006-03-20 18:44:36 +00:00
|
|
|
struct nfs_open_context *ctx; /* file open context info */
|
2010-06-25 20:35:53 +00:00
|
|
|
struct nfs_lock_context *l_ctx; /* Lock context info */
|
2006-03-20 18:44:30 +00:00
|
|
|
struct kiocb * iocb; /* controlling i/o request */
|
2006-03-20 18:44:34 +00:00
|
|
|
struct inode * inode; /* target file of i/o */
|
2006-03-20 18:44:34 +00:00
|
|
|
|
|
|
|
/* completion state */
|
2006-06-28 20:52:45 +00:00
|
|
|
atomic_t io_count; /* i/os we're waiting for */
|
2006-03-20 18:44:34 +00:00
|
|
|
spinlock_t lock; /* protect completion state */
|
|
|
|
ssize_t count, /* bytes actually processed */
|
2012-09-25 06:55:57 +00:00
|
|
|
bytes_left, /* bytes left to be sent */
|
2005-04-16 22:20:36 +00:00
|
|
|
error; /* any reported error */
|
2006-03-20 18:44:43 +00:00
|
|
|
struct completion completion; /* wait for i/o completion */
|
2006-03-20 18:44:36 +00:00
|
|
|
|
|
|
|
/* commit state */
|
2012-04-20 18:47:57 +00:00
|
|
|
struct nfs_mds_commit_info mds_cinfo; /* Storage for cinfo */
|
|
|
|
struct pnfs_ds_commit_info ds_cinfo; /* Storage for cinfo */
|
|
|
|
struct work_struct work;
|
2006-03-20 18:44:36 +00:00
|
|
|
int flags;
|
|
|
|
#define NFS_ODIRECT_DO_COMMIT (1) /* an unstable reply was received */
|
|
|
|
#define NFS_ODIRECT_RESCHED_WRITES (2) /* write verification failed */
|
|
|
|
struct nfs_writeverf verf; /* unstable write verifier */
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
static const struct nfs_pgio_completion_ops nfs_direct_write_completion_ops;
|
|
|
|
static const struct nfs_commit_completion_ops nfs_direct_commit_completion_ops;
|
2006-03-20 18:44:36 +00:00
|
|
|
static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode);
|
2012-04-20 18:47:57 +00:00
|
|
|
static void nfs_direct_write_schedule_work(struct work_struct *work);
|
2006-06-28 20:52:45 +00:00
|
|
|
|
|
|
|
static inline void get_dreq(struct nfs_direct_req *dreq)
|
|
|
|
{
|
|
|
|
atomic_inc(&dreq->io_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int put_dreq(struct nfs_direct_req *dreq)
|
|
|
|
{
|
|
|
|
return atomic_dec_and_test(&dreq->io_count);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
2006-03-20 18:44:28 +00:00
|
|
|
* nfs_direct_IO - NFS address space operation for direct I/O
|
|
|
|
* @rw: direction (read or write)
|
|
|
|
* @iocb: target I/O control block
|
|
|
|
* @iov: array of vectors that define I/O buffer
|
|
|
|
* @pos: offset in file to begin the operation
|
|
|
|
* @nr_segs: size of iovec array
|
|
|
|
*
|
|
|
|
* The presence of this routine in the address space ops vector means
|
2012-07-31 23:45:12 +00:00
|
|
|
* the NFS client supports direct I/O. However, for most direct IO, we
|
|
|
|
* shunt off direct read and write requests before the VFS gets them,
|
|
|
|
* so this method is only ever called for swap.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2006-03-20 18:44:28 +00:00
|
|
|
ssize_t nfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov, loff_t pos, unsigned long nr_segs)
|
|
|
|
{
|
2012-07-31 23:45:12 +00:00
|
|
|
#ifndef CONFIG_NFS_SWAP
|
2006-03-20 18:44:28 +00:00
|
|
|
dprintk("NFS: nfs_direct_IO (%s) off/no(%Ld/%lu) EINVAL\n",
|
2006-12-08 10:36:40 +00:00
|
|
|
iocb->ki_filp->f_path.dentry->d_name.name,
|
2006-04-18 17:21:42 +00:00
|
|
|
(long long) pos, nr_segs);
|
2006-03-20 18:44:28 +00:00
|
|
|
|
|
|
|
return -EINVAL;
|
2012-07-31 23:45:12 +00:00
|
|
|
#else
|
|
|
|
VM_BUG_ON(iocb->ki_left != PAGE_SIZE);
|
|
|
|
VM_BUG_ON(iocb->ki_nbytes != PAGE_SIZE);
|
|
|
|
|
|
|
|
if (rw == READ || rw == KERNEL_READ)
|
|
|
|
return nfs_file_direct_read(iocb, iov, nr_segs, pos,
|
|
|
|
rw == READ ? true : false);
|
|
|
|
return nfs_file_direct_write(iocb, iov, nr_segs, pos,
|
|
|
|
rw == WRITE ? true : false);
|
|
|
|
#endif /* CONFIG_NFS_SWAP */
|
2006-03-20 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2007-05-19 21:22:46 +00:00
|
|
|
static void nfs_direct_release_pages(struct page **pages, unsigned int npages)
|
2006-06-20 16:56:31 +00:00
|
|
|
{
|
2007-05-19 21:22:46 +00:00
|
|
|
unsigned int i;
|
2006-06-28 20:52:45 +00:00
|
|
|
for (i = 0; i < npages; i++)
|
|
|
|
page_cache_release(pages[i]);
|
2006-03-20 18:44:43 +00:00
|
|
|
}
|
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
void nfs_init_cinfo_from_dreq(struct nfs_commit_info *cinfo,
|
|
|
|
struct nfs_direct_req *dreq)
|
|
|
|
{
|
|
|
|
cinfo->lock = &dreq->lock;
|
|
|
|
cinfo->mds = &dreq->mds_cinfo;
|
|
|
|
cinfo->ds = &dreq->ds_cinfo;
|
|
|
|
cinfo->dreq = dreq;
|
|
|
|
cinfo->completion_ops = &nfs_direct_commit_completion_ops;
|
|
|
|
}
|
|
|
|
|
2006-03-20 18:44:31 +00:00
|
|
|
static inline struct nfs_direct_req *nfs_direct_req_alloc(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-03-20 18:44:31 +00:00
|
|
|
struct nfs_direct_req *dreq;
|
|
|
|
|
2012-04-30 22:31:49 +00:00
|
|
|
dreq = kmem_cache_zalloc(nfs_direct_cachep, GFP_KERNEL);
|
2006-03-20 18:44:31 +00:00
|
|
|
if (!dreq)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
kref_init(&dreq->kref);
|
2006-06-28 20:52:45 +00:00
|
|
|
kref_get(&dreq->kref);
|
2006-03-20 18:44:43 +00:00
|
|
|
init_completion(&dreq->completion);
|
2012-04-20 18:47:57 +00:00
|
|
|
INIT_LIST_HEAD(&dreq->mds_cinfo.list);
|
|
|
|
INIT_WORK(&dreq->work, nfs_direct_write_schedule_work);
|
2006-03-20 18:44:34 +00:00
|
|
|
spin_lock_init(&dreq->lock);
|
2006-03-20 18:44:31 +00:00
|
|
|
|
|
|
|
return dreq;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-05-30 16:58:00 +00:00
|
|
|
static void nfs_direct_req_free(struct kref *kref)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct nfs_direct_req *dreq = container_of(kref, struct nfs_direct_req, kref);
|
2006-03-20 18:44:36 +00:00
|
|
|
|
2010-06-25 20:35:53 +00:00
|
|
|
if (dreq->l_ctx != NULL)
|
|
|
|
nfs_put_lock_context(dreq->l_ctx);
|
2006-03-20 18:44:36 +00:00
|
|
|
if (dreq->ctx != NULL)
|
|
|
|
put_nfs_open_context(dreq->ctx);
|
2005-04-16 22:20:36 +00:00
|
|
|
kmem_cache_free(nfs_direct_cachep, dreq);
|
|
|
|
}
|
|
|
|
|
2007-05-30 16:58:00 +00:00
|
|
|
static void nfs_direct_req_release(struct nfs_direct_req *dreq)
|
|
|
|
{
|
|
|
|
kref_put(&dreq->kref, nfs_direct_req_free);
|
|
|
|
}
|
|
|
|
|
2012-09-25 06:55:57 +00:00
|
|
|
ssize_t nfs_dreq_bytes_left(struct nfs_direct_req *dreq)
|
|
|
|
{
|
|
|
|
return dreq->bytes_left;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(nfs_dreq_bytes_left);
|
|
|
|
|
2006-03-20 18:44:31 +00:00
|
|
|
/*
|
|
|
|
* Collects and returns the final error value/byte-count.
|
|
|
|
*/
|
|
|
|
static ssize_t nfs_direct_wait(struct nfs_direct_req *dreq)
|
|
|
|
{
|
2006-03-20 18:44:34 +00:00
|
|
|
ssize_t result = -EIOCBQUEUED;
|
2006-03-20 18:44:31 +00:00
|
|
|
|
|
|
|
/* Async requests don't wait here */
|
|
|
|
if (dreq->iocb)
|
|
|
|
goto out;
|
|
|
|
|
2007-12-06 21:24:39 +00:00
|
|
|
result = wait_for_completion_killable(&dreq->completion);
|
2006-03-20 18:44:31 +00:00
|
|
|
|
|
|
|
if (!result)
|
2006-03-20 18:44:34 +00:00
|
|
|
result = dreq->error;
|
2006-03-20 18:44:31 +00:00
|
|
|
if (!result)
|
2006-03-20 18:44:34 +00:00
|
|
|
result = dreq->count;
|
2006-03-20 18:44:31 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
return (ssize_t) result;
|
|
|
|
}
|
|
|
|
|
2006-03-20 18:44:31 +00:00
|
|
|
/*
|
2006-06-28 20:52:45 +00:00
|
|
|
* Synchronous I/O uses a stack-allocated iocb. Thus we can't trust
|
|
|
|
* the iocb is still valid here if this is a synchronous request.
|
2006-03-20 18:44:31 +00:00
|
|
|
*/
|
|
|
|
static void nfs_direct_complete(struct nfs_direct_req *dreq)
|
|
|
|
{
|
|
|
|
if (dreq->iocb) {
|
2006-03-20 18:44:34 +00:00
|
|
|
long res = (long) dreq->error;
|
2006-03-20 18:44:31 +00:00
|
|
|
if (!res)
|
2006-03-20 18:44:34 +00:00
|
|
|
res = (long) dreq->count;
|
2006-03-20 18:44:31 +00:00
|
|
|
aio_complete(dreq->iocb, res, 0);
|
2006-03-20 18:44:43 +00:00
|
|
|
}
|
|
|
|
complete_all(&dreq->completion);
|
2006-03-20 18:44:31 +00:00
|
|
|
|
2007-05-30 16:58:00 +00:00
|
|
|
nfs_direct_req_release(dreq);
|
2006-03-20 18:44:31 +00:00
|
|
|
}
|
|
|
|
|
2012-05-04 17:54:24 +00:00
|
|
|
static void nfs_direct_readpage_release(struct nfs_page *req)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-04-20 18:47:51 +00:00
|
|
|
dprintk("NFS: direct read done (%s/%lld %d@%lld)\n",
|
|
|
|
req->wb_context->dentry->d_inode->i_sb->s_id,
|
|
|
|
(long long)NFS_FILEID(req->wb_context->dentry->d_inode),
|
|
|
|
req->wb_bytes,
|
|
|
|
(long long)req_offset(req));
|
|
|
|
nfs_release_request(req);
|
2008-04-15 20:33:58 +00:00
|
|
|
}
|
|
|
|
|
2012-04-20 18:47:51 +00:00
|
|
|
static void nfs_direct_read_completion(struct nfs_pgio_header *hdr)
|
2008-04-15 20:33:58 +00:00
|
|
|
{
|
2012-04-20 18:47:51 +00:00
|
|
|
unsigned long bytes = 0;
|
|
|
|
struct nfs_direct_req *dreq = hdr->dreq;
|
2008-04-15 20:33:58 +00:00
|
|
|
|
2012-04-20 18:47:51 +00:00
|
|
|
if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
|
|
|
|
goto out_put;
|
2006-03-20 18:44:34 +00:00
|
|
|
|
|
|
|
spin_lock(&dreq->lock);
|
2012-04-20 18:47:51 +00:00
|
|
|
if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) && (hdr->good_bytes == 0))
|
|
|
|
dreq->error = hdr->error;
|
|
|
|
else
|
|
|
|
dreq->count += hdr->good_bytes;
|
|
|
|
spin_unlock(&dreq->lock);
|
|
|
|
|
2012-05-01 16:49:58 +00:00
|
|
|
while (!list_empty(&hdr->pages)) {
|
|
|
|
struct nfs_page *req = nfs_list_entry(hdr->pages.next);
|
|
|
|
struct page *page = req->wb_page;
|
|
|
|
|
2012-12-12 17:36:31 +00:00
|
|
|
if (!PageCompound(page) && bytes < hdr->good_bytes)
|
|
|
|
set_page_dirty(page);
|
2012-05-01 16:49:58 +00:00
|
|
|
bytes += req->wb_bytes;
|
|
|
|
nfs_list_remove_request(req);
|
|
|
|
nfs_direct_readpage_release(req);
|
2007-05-22 14:22:27 +00:00
|
|
|
}
|
2012-04-20 18:47:51 +00:00
|
|
|
out_put:
|
2006-06-28 20:52:45 +00:00
|
|
|
if (put_dreq(dreq))
|
|
|
|
nfs_direct_complete(dreq);
|
2012-04-20 18:47:51 +00:00
|
|
|
hdr->release(hdr);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2012-04-30 17:40:06 +00:00
|
|
|
static void nfs_read_sync_pgio_error(struct list_head *head)
|
2012-04-20 18:47:44 +00:00
|
|
|
{
|
2012-04-20 18:47:51 +00:00
|
|
|
struct nfs_page *req;
|
2012-04-20 18:47:44 +00:00
|
|
|
|
2012-04-20 18:47:51 +00:00
|
|
|
while (!list_empty(head)) {
|
|
|
|
req = nfs_list_entry(head->next);
|
|
|
|
nfs_list_remove_request(req);
|
|
|
|
nfs_release_request(req);
|
|
|
|
}
|
2012-04-20 18:47:44 +00:00
|
|
|
}
|
|
|
|
|
2012-04-20 18:47:51 +00:00
|
|
|
static void nfs_direct_pgio_init(struct nfs_pgio_header *hdr)
|
|
|
|
{
|
|
|
|
get_dreq(hdr->dreq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct nfs_pgio_completion_ops nfs_direct_read_completion_ops = {
|
2012-04-30 17:40:06 +00:00
|
|
|
.error_cleanup = nfs_read_sync_pgio_error,
|
2012-04-20 18:47:51 +00:00
|
|
|
.init_hdr = nfs_direct_pgio_init,
|
|
|
|
.completion = nfs_direct_read_completion,
|
|
|
|
};
|
|
|
|
|
2006-03-20 18:44:28 +00:00
|
|
|
/*
|
2006-06-28 20:52:45 +00:00
|
|
|
* For each rsize'd chunk of the user's buffer, dispatch an NFS READ
|
|
|
|
* operation. If nfs_readdata_alloc() or get_user_pages() fails,
|
|
|
|
* bail and stop sending more reads. Read length accounting is
|
|
|
|
* handled automatically by nfs_direct_read_result(). Otherwise, if
|
|
|
|
* no requests have been sent, just return an error.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2012-04-20 18:47:51 +00:00
|
|
|
static ssize_t nfs_direct_read_schedule_segment(struct nfs_pageio_descriptor *desc,
|
2007-11-12 17:17:03 +00:00
|
|
|
const struct iovec *iov,
|
2012-07-31 23:45:12 +00:00
|
|
|
loff_t pos, bool uio)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-04-20 18:47:51 +00:00
|
|
|
struct nfs_direct_req *dreq = desc->pg_dreq;
|
2006-03-20 18:44:36 +00:00
|
|
|
struct nfs_open_context *ctx = dreq->ctx;
|
2011-06-22 22:40:12 +00:00
|
|
|
struct inode *inode = ctx->dentry->d_inode;
|
2007-11-12 17:17:03 +00:00
|
|
|
unsigned long user_addr = (unsigned long)iov->iov_base;
|
|
|
|
size_t count = iov->iov_len;
|
2006-03-20 18:44:29 +00:00
|
|
|
size_t rsize = NFS_SERVER(inode)->rsize;
|
2006-06-28 20:52:45 +00:00
|
|
|
unsigned int pgbase;
|
|
|
|
int result;
|
|
|
|
ssize_t started = 0;
|
2012-04-20 18:47:51 +00:00
|
|
|
struct page **pagevec = NULL;
|
|
|
|
unsigned int npages;
|
2006-06-28 20:52:45 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
do {
|
2006-03-20 18:44:29 +00:00
|
|
|
size_t bytes;
|
2012-04-20 18:47:51 +00:00
|
|
|
int i;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-09-08 16:48:54 +00:00
|
|
|
pgbase = user_addr & ~PAGE_MASK;
|
2012-05-04 17:47:16 +00:00
|
|
|
bytes = min(max_t(size_t, rsize, PAGE_SIZE), count);
|
2006-09-08 16:48:54 +00:00
|
|
|
|
2006-06-28 20:52:45 +00:00
|
|
|
result = -ENOMEM;
|
2012-04-20 18:47:51 +00:00
|
|
|
npages = nfs_page_array_len(pgbase, bytes);
|
|
|
|
if (!pagevec)
|
|
|
|
pagevec = kmalloc(npages * sizeof(struct page *),
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!pagevec)
|
2012-04-20 18:47:46 +00:00
|
|
|
break;
|
2012-07-31 23:45:12 +00:00
|
|
|
if (uio) {
|
|
|
|
down_read(¤t->mm->mmap_sem);
|
|
|
|
result = get_user_pages(current, current->mm, user_addr,
|
2012-04-20 18:47:51 +00:00
|
|
|
npages, 1, 0, pagevec, NULL);
|
2012-07-31 23:45:12 +00:00
|
|
|
up_read(¤t->mm->mmap_sem);
|
|
|
|
if (result < 0)
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
WARN_ON(npages != 1);
|
|
|
|
result = get_kernel_page(user_addr, 1, pagevec);
|
|
|
|
if (WARN_ON(result != 1))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-04-20 18:47:51 +00:00
|
|
|
if ((unsigned)result < npages) {
|
2007-05-22 14:22:20 +00:00
|
|
|
bytes = result * PAGE_SIZE;
|
|
|
|
if (bytes <= pgbase) {
|
2012-04-20 18:47:51 +00:00
|
|
|
nfs_direct_release_pages(pagevec, result);
|
2007-05-22 14:22:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
bytes -= pgbase;
|
2012-04-20 18:47:51 +00:00
|
|
|
npages = result;
|
2006-06-28 20:52:45 +00:00
|
|
|
}
|
|
|
|
|
2012-04-20 18:47:51 +00:00
|
|
|
for (i = 0; i < npages; i++) {
|
|
|
|
struct nfs_page *req;
|
2012-05-04 17:47:16 +00:00
|
|
|
unsigned int req_len = min_t(size_t, bytes, PAGE_SIZE - pgbase);
|
2012-04-20 18:47:51 +00:00
|
|
|
/* XXX do we need to do the eof zeroing found in async_filler? */
|
|
|
|
req = nfs_create_request(dreq->ctx, dreq->inode,
|
|
|
|
pagevec[i],
|
|
|
|
pgbase, req_len);
|
|
|
|
if (IS_ERR(req)) {
|
|
|
|
result = PTR_ERR(req);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
req->wb_index = pos >> PAGE_SHIFT;
|
|
|
|
req->wb_offset = pos & ~PAGE_MASK;
|
|
|
|
if (!nfs_pageio_add_request(desc, req)) {
|
|
|
|
result = desc->pg_error;
|
|
|
|
nfs_release_request(req);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pgbase = 0;
|
|
|
|
bytes -= req_len;
|
|
|
|
started += req_len;
|
|
|
|
user_addr += req_len;
|
|
|
|
pos += req_len;
|
|
|
|
count -= req_len;
|
2012-09-25 06:55:57 +00:00
|
|
|
dreq->bytes_left -= req_len;
|
2012-04-20 18:47:51 +00:00
|
|
|
}
|
2012-04-30 17:27:31 +00:00
|
|
|
/* The nfs_page now hold references to these pages */
|
|
|
|
nfs_direct_release_pages(pagevec, npages);
|
2012-04-30 17:22:54 +00:00
|
|
|
} while (count != 0 && result >= 0);
|
2006-06-28 20:52:45 +00:00
|
|
|
|
2012-04-20 18:47:51 +00:00
|
|
|
kfree(pagevec);
|
|
|
|
|
2006-06-28 20:52:45 +00:00
|
|
|
if (started)
|
2007-11-12 17:16:52 +00:00
|
|
|
return started;
|
2006-06-28 20:52:45 +00:00
|
|
|
return result < 0 ? (ssize_t) result : -EFAULT;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-11-12 17:16:47 +00:00
|
|
|
static ssize_t nfs_direct_read_schedule_iovec(struct nfs_direct_req *dreq,
|
|
|
|
const struct iovec *iov,
|
|
|
|
unsigned long nr_segs,
|
2012-07-31 23:45:12 +00:00
|
|
|
loff_t pos, bool uio)
|
2007-11-12 17:16:47 +00:00
|
|
|
{
|
2012-04-20 18:47:51 +00:00
|
|
|
struct nfs_pageio_descriptor desc;
|
2007-11-12 17:16:47 +00:00
|
|
|
ssize_t result = -EINVAL;
|
|
|
|
size_t requested_bytes = 0;
|
|
|
|
unsigned long seg;
|
|
|
|
|
2012-07-18 18:20:49 +00:00
|
|
|
NFS_PROTO(dreq->inode)->read_pageio_init(&desc, dreq->inode,
|
2012-04-20 18:47:51 +00:00
|
|
|
&nfs_direct_read_completion_ops);
|
2007-11-12 17:16:47 +00:00
|
|
|
get_dreq(dreq);
|
2012-04-20 18:47:51 +00:00
|
|
|
desc.pg_dreq = dreq;
|
2007-11-12 17:16:47 +00:00
|
|
|
|
|
|
|
for (seg = 0; seg < nr_segs; seg++) {
|
|
|
|
const struct iovec *vec = &iov[seg];
|
2012-07-31 23:45:12 +00:00
|
|
|
result = nfs_direct_read_schedule_segment(&desc, vec, pos, uio);
|
2007-11-12 17:16:47 +00:00
|
|
|
if (result < 0)
|
|
|
|
break;
|
|
|
|
requested_bytes += result;
|
|
|
|
if ((size_t)result < vec->iov_len)
|
|
|
|
break;
|
|
|
|
pos += vec->iov_len;
|
|
|
|
}
|
|
|
|
|
2012-04-20 18:47:51 +00:00
|
|
|
nfs_pageio_complete(&desc);
|
|
|
|
|
2011-01-21 15:54:57 +00:00
|
|
|
/*
|
|
|
|
* If no bytes were started, return the error, and let the
|
|
|
|
* generic layer handle the completion.
|
|
|
|
*/
|
|
|
|
if (requested_bytes == 0) {
|
|
|
|
nfs_direct_req_release(dreq);
|
|
|
|
return result < 0 ? result : -EIO;
|
|
|
|
}
|
|
|
|
|
2007-11-12 17:16:47 +00:00
|
|
|
if (put_dreq(dreq))
|
|
|
|
nfs_direct_complete(dreq);
|
2011-01-21 15:54:57 +00:00
|
|
|
return 0;
|
2007-11-12 17:16:47 +00:00
|
|
|
}
|
|
|
|
|
2007-11-12 17:16:52 +00:00
|
|
|
static ssize_t nfs_direct_read(struct kiocb *iocb, const struct iovec *iov,
|
2012-07-31 23:45:12 +00:00
|
|
|
unsigned long nr_segs, loff_t pos, bool uio)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2010-06-25 20:35:53 +00:00
|
|
|
ssize_t result = -ENOMEM;
|
2006-03-20 18:44:30 +00:00
|
|
|
struct inode *inode = iocb->ki_filp->f_mapping->host;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct nfs_direct_req *dreq;
|
2012-08-13 21:15:50 +00:00
|
|
|
struct nfs_lock_context *l_ctx;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-28 20:52:45 +00:00
|
|
|
dreq = nfs_direct_req_alloc();
|
2010-06-25 20:35:53 +00:00
|
|
|
if (dreq == NULL)
|
|
|
|
goto out;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-20 18:44:14 +00:00
|
|
|
dreq->inode = inode;
|
2012-09-25 06:55:57 +00:00
|
|
|
dreq->bytes_left = iov_length(iov, nr_segs);
|
2007-08-10 21:44:32 +00:00
|
|
|
dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp));
|
2012-08-13 21:15:50 +00:00
|
|
|
l_ctx = nfs_get_lock_context(dreq->ctx);
|
|
|
|
if (IS_ERR(l_ctx)) {
|
|
|
|
result = PTR_ERR(l_ctx);
|
2010-06-25 20:35:53 +00:00
|
|
|
goto out_release;
|
2012-08-13 21:15:50 +00:00
|
|
|
}
|
|
|
|
dreq->l_ctx = l_ctx;
|
2006-03-20 18:44:30 +00:00
|
|
|
if (!is_sync_kiocb(iocb))
|
|
|
|
dreq->iocb = iocb;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-08-23 16:27:48 +00:00
|
|
|
NFS_I(inode)->read_io += iov_length(iov, nr_segs);
|
2012-07-31 23:45:12 +00:00
|
|
|
result = nfs_direct_read_schedule_iovec(dreq, iov, nr_segs, pos, uio);
|
2006-06-28 20:52:45 +00:00
|
|
|
if (!result)
|
|
|
|
result = nfs_direct_wait(dreq);
|
2010-06-25 20:35:53 +00:00
|
|
|
out_release:
|
2007-05-30 16:58:00 +00:00
|
|
|
nfs_direct_req_release(dreq);
|
2010-06-25 20:35:53 +00:00
|
|
|
out:
|
2005-04-16 22:20:36 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-05-31 16:22:33 +00:00
|
|
|
static void nfs_inode_dio_write_done(struct inode *inode)
|
|
|
|
{
|
|
|
|
nfs_zap_mapping(inode, inode->i_mapping);
|
|
|
|
inode_dio_done(inode);
|
|
|
|
}
|
|
|
|
|
2012-07-30 20:05:25 +00:00
|
|
|
#if IS_ENABLED(CONFIG_NFS_V3) || IS_ENABLED(CONFIG_NFS_V4)
|
2006-03-20 18:44:36 +00:00
|
|
|
static void nfs_direct_write_reschedule(struct nfs_direct_req *dreq)
|
|
|
|
{
|
2012-04-20 18:47:57 +00:00
|
|
|
struct nfs_pageio_descriptor desc;
|
|
|
|
struct nfs_page *req, *tmp;
|
|
|
|
LIST_HEAD(reqs);
|
|
|
|
struct nfs_commit_info cinfo;
|
|
|
|
LIST_HEAD(failed);
|
|
|
|
|
|
|
|
nfs_init_cinfo_from_dreq(&cinfo, dreq);
|
|
|
|
pnfs_recover_commit_reqs(dreq->inode, &reqs, &cinfo);
|
|
|
|
spin_lock(cinfo.lock);
|
|
|
|
nfs_scan_commit_list(&cinfo.mds->list, &reqs, &cinfo, 0);
|
|
|
|
spin_unlock(cinfo.lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-20 18:44:36 +00:00
|
|
|
dreq->count = 0;
|
2006-06-28 20:52:45 +00:00
|
|
|
get_dreq(dreq);
|
|
|
|
|
2012-07-18 18:20:50 +00:00
|
|
|
NFS_PROTO(dreq->inode)->write_pageio_init(&desc, dreq->inode, FLUSH_STABLE,
|
2012-04-20 18:47:57 +00:00
|
|
|
&nfs_direct_write_completion_ops);
|
|
|
|
desc.pg_dreq = dreq;
|
2006-06-20 16:55:45 +00:00
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
list_for_each_entry_safe(req, tmp, &reqs, wb_list) {
|
|
|
|
if (!nfs_pageio_add_request(&desc, req)) {
|
2012-07-08 14:24:10 +00:00
|
|
|
nfs_list_remove_request(req);
|
2012-04-20 18:47:57 +00:00
|
|
|
nfs_list_add_request(req, &failed);
|
|
|
|
spin_lock(cinfo.lock);
|
|
|
|
dreq->flags = 0;
|
|
|
|
dreq->error = -EIO;
|
|
|
|
spin_unlock(cinfo.lock);
|
|
|
|
}
|
2012-06-19 17:39:14 +00:00
|
|
|
nfs_release_request(req);
|
2012-04-20 18:47:57 +00:00
|
|
|
}
|
|
|
|
nfs_pageio_complete(&desc);
|
2006-03-20 18:44:36 +00:00
|
|
|
|
2012-07-08 14:24:10 +00:00
|
|
|
while (!list_empty(&failed)) {
|
|
|
|
req = nfs_list_entry(failed.next);
|
|
|
|
nfs_list_remove_request(req);
|
2012-05-09 18:04:55 +00:00
|
|
|
nfs_unlock_and_release_request(req);
|
2012-07-08 14:24:10 +00:00
|
|
|
}
|
2006-03-20 18:44:36 +00:00
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
if (put_dreq(dreq))
|
|
|
|
nfs_direct_write_complete(dreq, dreq->inode);
|
2008-04-15 20:56:39 +00:00
|
|
|
}
|
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
static void nfs_direct_commit_complete(struct nfs_commit_data *data)
|
2008-04-15 20:56:39 +00:00
|
|
|
{
|
2012-04-20 18:47:39 +00:00
|
|
|
struct nfs_direct_req *dreq = data->dreq;
|
2012-04-20 18:47:57 +00:00
|
|
|
struct nfs_commit_info cinfo;
|
|
|
|
struct nfs_page *req;
|
2008-04-15 20:56:39 +00:00
|
|
|
int status = data->task.tk_status;
|
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
nfs_init_cinfo_from_dreq(&cinfo, dreq);
|
2008-04-15 20:56:39 +00:00
|
|
|
if (status < 0) {
|
2007-04-14 23:11:52 +00:00
|
|
|
dprintk("NFS: %5u commit failed with error %d.\n",
|
2012-04-20 18:47:57 +00:00
|
|
|
data->task.tk_pid, status);
|
2006-03-20 18:44:36 +00:00
|
|
|
dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
|
2007-04-14 23:11:52 +00:00
|
|
|
} else if (memcmp(&dreq->verf, &data->verf, sizeof(data->verf))) {
|
2008-04-15 20:56:39 +00:00
|
|
|
dprintk("NFS: %5u commit verify failed\n", data->task.tk_pid);
|
2006-03-20 18:44:36 +00:00
|
|
|
dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-04-15 20:56:39 +00:00
|
|
|
dprintk("NFS: %5u commit returned %d\n", data->task.tk_pid, status);
|
2012-04-20 18:47:57 +00:00
|
|
|
while (!list_empty(&data->pages)) {
|
|
|
|
req = nfs_list_entry(data->pages.next);
|
|
|
|
nfs_list_remove_request(req);
|
|
|
|
if (dreq->flags == NFS_ODIRECT_RESCHED_WRITES) {
|
|
|
|
/* Note the rewrite will go through mds */
|
|
|
|
nfs_mark_request_commit(req, NULL, &cinfo);
|
2012-06-08 20:48:33 +00:00
|
|
|
} else
|
|
|
|
nfs_release_request(req);
|
2012-05-09 18:04:55 +00:00
|
|
|
nfs_unlock_and_release_request(req);
|
2012-04-20 18:47:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (atomic_dec_and_test(&cinfo.mds->rpcs_out))
|
|
|
|
nfs_direct_write_complete(dreq, data->inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
static void nfs_direct_error_cleanup(struct nfs_inode *nfsi)
|
|
|
|
{
|
|
|
|
/* There is no lock to clear */
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct nfs_commit_completion_ops nfs_direct_commit_completion_ops = {
|
|
|
|
.completion = nfs_direct_commit_complete,
|
|
|
|
.error_cleanup = nfs_direct_error_cleanup,
|
2006-03-20 18:44:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void nfs_direct_commit_schedule(struct nfs_direct_req *dreq)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-04-20 18:47:57 +00:00
|
|
|
int res;
|
|
|
|
struct nfs_commit_info cinfo;
|
|
|
|
LIST_HEAD(mds_list);
|
|
|
|
|
|
|
|
nfs_init_cinfo_from_dreq(&cinfo, dreq);
|
|
|
|
nfs_scan_commit(dreq->inode, &mds_list, &cinfo);
|
|
|
|
res = nfs_generic_commit_list(dreq->inode, &mds_list, 0, &cinfo);
|
|
|
|
if (res < 0) /* res == -ENOMEM */
|
|
|
|
nfs_direct_write_reschedule(dreq);
|
2006-03-20 18:44:36 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
static void nfs_direct_write_schedule_work(struct work_struct *work)
|
2006-03-20 18:44:36 +00:00
|
|
|
{
|
2012-04-20 18:47:57 +00:00
|
|
|
struct nfs_direct_req *dreq = container_of(work, struct nfs_direct_req, work);
|
2006-03-20 18:44:36 +00:00
|
|
|
int flags = dreq->flags;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-20 18:44:36 +00:00
|
|
|
dreq->flags = 0;
|
|
|
|
switch (flags) {
|
|
|
|
case NFS_ODIRECT_DO_COMMIT:
|
|
|
|
nfs_direct_commit_schedule(dreq);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
2006-03-20 18:44:36 +00:00
|
|
|
case NFS_ODIRECT_RESCHED_WRITES:
|
|
|
|
nfs_direct_write_reschedule(dreq);
|
|
|
|
break;
|
|
|
|
default:
|
2012-05-31 16:22:33 +00:00
|
|
|
nfs_inode_dio_write_done(dreq->inode);
|
2006-03-20 18:44:36 +00:00
|
|
|
nfs_direct_complete(dreq);
|
|
|
|
}
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode)
|
2006-03-20 18:44:36 +00:00
|
|
|
{
|
2012-04-20 18:47:57 +00:00
|
|
|
schedule_work(&dreq->work); /* Calls nfs_direct_write_schedule_work */
|
2006-03-20 18:44:36 +00:00
|
|
|
}
|
2012-04-20 18:47:57 +00:00
|
|
|
|
2006-03-20 18:44:36 +00:00
|
|
|
#else
|
2012-04-30 17:27:11 +00:00
|
|
|
static void nfs_direct_write_schedule_work(struct work_struct *work)
|
|
|
|
{
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-20 18:44:36 +00:00
|
|
|
static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode)
|
|
|
|
{
|
2012-05-31 16:22:33 +00:00
|
|
|
nfs_inode_dio_write_done(inode);
|
2006-03-20 18:44:36 +00:00
|
|
|
nfs_direct_complete(dreq);
|
|
|
|
}
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-15 20:56:39 +00:00
|
|
|
/*
|
|
|
|
* NB: Return the value of the first error return code. Subsequent
|
|
|
|
* errors after the first one are ignored.
|
|
|
|
*/
|
2006-03-20 18:44:32 +00:00
|
|
|
/*
|
2006-06-28 20:52:45 +00:00
|
|
|
* For each wsize'd chunk of the user's buffer, dispatch an NFS WRITE
|
|
|
|
* operation. If nfs_writedata_alloc() or get_user_pages() fails,
|
|
|
|
* bail and stop sending more writes. Write length accounting is
|
|
|
|
* handled automatically by nfs_direct_write_result(). Otherwise, if
|
|
|
|
* no requests have been sent, just return an error.
|
2006-03-20 18:44:32 +00:00
|
|
|
*/
|
2012-04-20 18:47:57 +00:00
|
|
|
static ssize_t nfs_direct_write_schedule_segment(struct nfs_pageio_descriptor *desc,
|
2007-11-12 17:17:03 +00:00
|
|
|
const struct iovec *iov,
|
2012-07-31 23:45:12 +00:00
|
|
|
loff_t pos, bool uio)
|
2006-03-20 18:44:32 +00:00
|
|
|
{
|
2012-04-20 18:47:57 +00:00
|
|
|
struct nfs_direct_req *dreq = desc->pg_dreq;
|
2006-03-20 18:44:36 +00:00
|
|
|
struct nfs_open_context *ctx = dreq->ctx;
|
2011-06-22 22:40:12 +00:00
|
|
|
struct inode *inode = ctx->dentry->d_inode;
|
2007-11-12 17:17:03 +00:00
|
|
|
unsigned long user_addr = (unsigned long)iov->iov_base;
|
|
|
|
size_t count = iov->iov_len;
|
2006-03-20 18:44:32 +00:00
|
|
|
size_t wsize = NFS_SERVER(inode)->wsize;
|
2006-06-28 20:52:45 +00:00
|
|
|
unsigned int pgbase;
|
|
|
|
int result;
|
|
|
|
ssize_t started = 0;
|
2012-04-20 18:47:57 +00:00
|
|
|
struct page **pagevec = NULL;
|
|
|
|
unsigned int npages;
|
2006-06-20 16:57:03 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
do {
|
2006-03-20 18:44:32 +00:00
|
|
|
size_t bytes;
|
2012-04-20 18:47:57 +00:00
|
|
|
int i;
|
2006-03-20 18:44:32 +00:00
|
|
|
|
2006-09-08 16:48:54 +00:00
|
|
|
pgbase = user_addr & ~PAGE_MASK;
|
2012-05-04 17:47:16 +00:00
|
|
|
bytes = min(max_t(size_t, wsize, PAGE_SIZE), count);
|
2006-09-08 16:48:54 +00:00
|
|
|
|
2006-06-28 20:52:45 +00:00
|
|
|
result = -ENOMEM;
|
2012-04-20 18:47:57 +00:00
|
|
|
npages = nfs_page_array_len(pgbase, bytes);
|
|
|
|
if (!pagevec)
|
|
|
|
pagevec = kmalloc(npages * sizeof(struct page *), GFP_KERNEL);
|
|
|
|
if (!pagevec)
|
2006-06-28 20:52:45 +00:00
|
|
|
break;
|
|
|
|
|
2012-07-31 23:45:12 +00:00
|
|
|
if (uio) {
|
|
|
|
down_read(¤t->mm->mmap_sem);
|
|
|
|
result = get_user_pages(current, current->mm, user_addr,
|
|
|
|
npages, 0, 0, pagevec, NULL);
|
|
|
|
up_read(¤t->mm->mmap_sem);
|
|
|
|
if (result < 0)
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
WARN_ON(npages != 1);
|
|
|
|
result = get_kernel_page(user_addr, 0, pagevec);
|
|
|
|
if (WARN_ON(result != 1))
|
|
|
|
break;
|
|
|
|
}
|
2012-04-20 18:47:57 +00:00
|
|
|
|
|
|
|
if ((unsigned)result < npages) {
|
2007-05-22 14:22:20 +00:00
|
|
|
bytes = result * PAGE_SIZE;
|
|
|
|
if (bytes <= pgbase) {
|
2012-04-20 18:47:57 +00:00
|
|
|
nfs_direct_release_pages(pagevec, result);
|
2007-05-22 14:22:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
bytes -= pgbase;
|
2012-04-20 18:47:57 +00:00
|
|
|
npages = result;
|
2006-06-28 20:52:45 +00:00
|
|
|
}
|
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
for (i = 0; i < npages; i++) {
|
|
|
|
struct nfs_page *req;
|
2012-05-04 17:47:16 +00:00
|
|
|
unsigned int req_len = min_t(size_t, bytes, PAGE_SIZE - pgbase);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
req = nfs_create_request(dreq->ctx, dreq->inode,
|
|
|
|
pagevec[i],
|
|
|
|
pgbase, req_len);
|
|
|
|
if (IS_ERR(req)) {
|
|
|
|
result = PTR_ERR(req);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
nfs_lock_request(req);
|
|
|
|
req->wb_index = pos >> PAGE_SHIFT;
|
|
|
|
req->wb_offset = pos & ~PAGE_MASK;
|
|
|
|
if (!nfs_pageio_add_request(desc, req)) {
|
|
|
|
result = desc->pg_error;
|
2012-05-09 18:04:55 +00:00
|
|
|
nfs_unlock_and_release_request(req);
|
2012-04-30 17:22:54 +00:00
|
|
|
break;
|
2012-04-20 18:47:57 +00:00
|
|
|
}
|
|
|
|
pgbase = 0;
|
|
|
|
bytes -= req_len;
|
|
|
|
started += req_len;
|
|
|
|
user_addr += req_len;
|
|
|
|
pos += req_len;
|
|
|
|
count -= req_len;
|
2012-09-25 06:55:57 +00:00
|
|
|
dreq->bytes_left -= req_len;
|
2012-04-20 18:47:57 +00:00
|
|
|
}
|
2012-04-30 17:27:31 +00:00
|
|
|
/* The nfs_page now hold references to these pages */
|
|
|
|
nfs_direct_release_pages(pagevec, npages);
|
2012-04-30 17:22:54 +00:00
|
|
|
} while (count != 0 && result >= 0);
|
2006-06-28 20:52:45 +00:00
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
kfree(pagevec);
|
|
|
|
|
2006-06-28 20:52:45 +00:00
|
|
|
if (started)
|
2007-11-12 17:16:52 +00:00
|
|
|
return started;
|
2006-06-28 20:52:45 +00:00
|
|
|
return result < 0 ? (ssize_t) result : -EFAULT;
|
2006-03-20 18:44:32 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
static void nfs_direct_write_completion(struct nfs_pgio_header *hdr)
|
|
|
|
{
|
|
|
|
struct nfs_direct_req *dreq = hdr->dreq;
|
|
|
|
struct nfs_commit_info cinfo;
|
|
|
|
int bit = -1;
|
|
|
|
struct nfs_page *req = nfs_list_entry(hdr->pages.next);
|
|
|
|
|
|
|
|
if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
|
|
|
|
goto out_put;
|
|
|
|
|
|
|
|
nfs_init_cinfo_from_dreq(&cinfo, dreq);
|
|
|
|
|
|
|
|
spin_lock(&dreq->lock);
|
|
|
|
|
|
|
|
if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
|
|
|
|
dreq->flags = 0;
|
|
|
|
dreq->error = hdr->error;
|
|
|
|
}
|
|
|
|
if (dreq->error != 0)
|
|
|
|
bit = NFS_IOHDR_ERROR;
|
|
|
|
else {
|
|
|
|
dreq->count += hdr->good_bytes;
|
|
|
|
if (test_bit(NFS_IOHDR_NEED_RESCHED, &hdr->flags)) {
|
|
|
|
dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
|
|
|
|
bit = NFS_IOHDR_NEED_RESCHED;
|
|
|
|
} else if (test_bit(NFS_IOHDR_NEED_COMMIT, &hdr->flags)) {
|
|
|
|
if (dreq->flags == NFS_ODIRECT_RESCHED_WRITES)
|
|
|
|
bit = NFS_IOHDR_NEED_RESCHED;
|
|
|
|
else if (dreq->flags == 0) {
|
2012-06-05 22:32:03 +00:00
|
|
|
memcpy(&dreq->verf, hdr->verf,
|
2012-04-20 18:47:57 +00:00
|
|
|
sizeof(dreq->verf));
|
|
|
|
bit = NFS_IOHDR_NEED_COMMIT;
|
|
|
|
dreq->flags = NFS_ODIRECT_DO_COMMIT;
|
|
|
|
} else if (dreq->flags == NFS_ODIRECT_DO_COMMIT) {
|
2012-06-05 22:32:03 +00:00
|
|
|
if (memcmp(&dreq->verf, hdr->verf, sizeof(dreq->verf))) {
|
2012-04-20 18:47:57 +00:00
|
|
|
dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
|
|
|
|
bit = NFS_IOHDR_NEED_RESCHED;
|
|
|
|
} else
|
|
|
|
bit = NFS_IOHDR_NEED_COMMIT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
spin_unlock(&dreq->lock);
|
|
|
|
|
|
|
|
while (!list_empty(&hdr->pages)) {
|
|
|
|
req = nfs_list_entry(hdr->pages.next);
|
|
|
|
nfs_list_remove_request(req);
|
|
|
|
switch (bit) {
|
|
|
|
case NFS_IOHDR_NEED_RESCHED:
|
|
|
|
case NFS_IOHDR_NEED_COMMIT:
|
2012-05-09 17:54:53 +00:00
|
|
|
kref_get(&req->wb_kref);
|
2012-04-20 18:47:57 +00:00
|
|
|
nfs_mark_request_commit(req, hdr->lseg, &cinfo);
|
|
|
|
}
|
2012-05-09 18:04:55 +00:00
|
|
|
nfs_unlock_and_release_request(req);
|
2012-04-20 18:47:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
out_put:
|
|
|
|
if (put_dreq(dreq))
|
|
|
|
nfs_direct_write_complete(dreq, hdr->inode);
|
|
|
|
hdr->release(hdr);
|
|
|
|
}
|
|
|
|
|
2012-04-30 17:40:06 +00:00
|
|
|
static void nfs_write_sync_pgio_error(struct list_head *head)
|
|
|
|
{
|
|
|
|
struct nfs_page *req;
|
|
|
|
|
|
|
|
while (!list_empty(head)) {
|
|
|
|
req = nfs_list_entry(head->next);
|
|
|
|
nfs_list_remove_request(req);
|
2012-05-09 18:04:55 +00:00
|
|
|
nfs_unlock_and_release_request(req);
|
2012-04-30 17:40:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-20 18:47:57 +00:00
|
|
|
static const struct nfs_pgio_completion_ops nfs_direct_write_completion_ops = {
|
2012-04-30 17:40:06 +00:00
|
|
|
.error_cleanup = nfs_write_sync_pgio_error,
|
2012-04-20 18:47:57 +00:00
|
|
|
.init_hdr = nfs_direct_pgio_init,
|
|
|
|
.completion = nfs_direct_write_completion,
|
|
|
|
};
|
|
|
|
|
2007-11-12 17:16:47 +00:00
|
|
|
static ssize_t nfs_direct_write_schedule_iovec(struct nfs_direct_req *dreq,
|
|
|
|
const struct iovec *iov,
|
|
|
|
unsigned long nr_segs,
|
2012-07-31 23:45:12 +00:00
|
|
|
loff_t pos, bool uio)
|
2007-11-12 17:16:47 +00:00
|
|
|
{
|
2012-04-20 18:47:57 +00:00
|
|
|
struct nfs_pageio_descriptor desc;
|
2012-05-31 16:22:33 +00:00
|
|
|
struct inode *inode = dreq->inode;
|
2007-11-12 17:16:47 +00:00
|
|
|
ssize_t result = 0;
|
|
|
|
size_t requested_bytes = 0;
|
|
|
|
unsigned long seg;
|
|
|
|
|
2012-07-18 18:20:50 +00:00
|
|
|
NFS_PROTO(inode)->write_pageio_init(&desc, inode, FLUSH_COND_STABLE,
|
2012-04-20 18:47:57 +00:00
|
|
|
&nfs_direct_write_completion_ops);
|
|
|
|
desc.pg_dreq = dreq;
|
2007-11-12 17:16:47 +00:00
|
|
|
get_dreq(dreq);
|
2012-05-31 16:22:33 +00:00
|
|
|
atomic_inc(&inode->i_dio_count);
|
2007-11-12 17:16:47 +00:00
|
|
|
|
2012-08-23 16:27:48 +00:00
|
|
|
NFS_I(dreq->inode)->write_io += iov_length(iov, nr_segs);
|
2007-11-12 17:16:47 +00:00
|
|
|
for (seg = 0; seg < nr_segs; seg++) {
|
|
|
|
const struct iovec *vec = &iov[seg];
|
2012-07-31 23:45:12 +00:00
|
|
|
result = nfs_direct_write_schedule_segment(&desc, vec, pos, uio);
|
2007-11-12 17:16:47 +00:00
|
|
|
if (result < 0)
|
|
|
|
break;
|
|
|
|
requested_bytes += result;
|
|
|
|
if ((size_t)result < vec->iov_len)
|
|
|
|
break;
|
|
|
|
pos += vec->iov_len;
|
|
|
|
}
|
2012-04-20 18:47:57 +00:00
|
|
|
nfs_pageio_complete(&desc);
|
2007-11-12 17:16:47 +00:00
|
|
|
|
2011-01-21 15:54:57 +00:00
|
|
|
/*
|
|
|
|
* If no bytes were started, return the error, and let the
|
|
|
|
* generic layer handle the completion.
|
|
|
|
*/
|
|
|
|
if (requested_bytes == 0) {
|
2012-05-31 16:22:33 +00:00
|
|
|
inode_dio_done(inode);
|
2011-01-21 15:54:57 +00:00
|
|
|
nfs_direct_req_release(dreq);
|
|
|
|
return result < 0 ? result : -EIO;
|
|
|
|
}
|
|
|
|
|
2007-11-12 17:16:47 +00:00
|
|
|
if (put_dreq(dreq))
|
|
|
|
nfs_direct_write_complete(dreq, dreq->inode);
|
2011-01-21 15:54:57 +00:00
|
|
|
return 0;
|
2007-11-12 17:16:47 +00:00
|
|
|
}
|
|
|
|
|
2007-11-12 17:16:52 +00:00
|
|
|
static ssize_t nfs_direct_write(struct kiocb *iocb, const struct iovec *iov,
|
|
|
|
unsigned long nr_segs, loff_t pos,
|
2012-07-31 23:45:12 +00:00
|
|
|
size_t count, bool uio)
|
2006-03-20 18:44:32 +00:00
|
|
|
{
|
2010-06-25 20:35:53 +00:00
|
|
|
ssize_t result = -ENOMEM;
|
2006-03-20 18:44:33 +00:00
|
|
|
struct inode *inode = iocb->ki_filp->f_mapping->host;
|
2006-03-20 18:44:32 +00:00
|
|
|
struct nfs_direct_req *dreq;
|
2012-08-13 21:15:50 +00:00
|
|
|
struct nfs_lock_context *l_ctx;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-28 20:52:45 +00:00
|
|
|
dreq = nfs_direct_req_alloc();
|
2006-03-20 18:44:32 +00:00
|
|
|
if (!dreq)
|
2010-06-25 20:35:53 +00:00
|
|
|
goto out;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-20 18:44:33 +00:00
|
|
|
dreq->inode = inode;
|
2012-09-25 06:55:57 +00:00
|
|
|
dreq->bytes_left = count;
|
2007-08-10 21:44:32 +00:00
|
|
|
dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp));
|
2012-08-13 21:15:50 +00:00
|
|
|
l_ctx = nfs_get_lock_context(dreq->ctx);
|
|
|
|
if (IS_ERR(l_ctx)) {
|
|
|
|
result = PTR_ERR(l_ctx);
|
2010-06-25 20:35:53 +00:00
|
|
|
goto out_release;
|
2012-08-13 21:15:50 +00:00
|
|
|
}
|
|
|
|
dreq->l_ctx = l_ctx;
|
2006-03-20 18:44:33 +00:00
|
|
|
if (!is_sync_kiocb(iocb))
|
|
|
|
dreq->iocb = iocb;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-07-31 23:45:12 +00:00
|
|
|
result = nfs_direct_write_schedule_iovec(dreq, iov, nr_segs, pos, uio);
|
2006-06-28 20:52:45 +00:00
|
|
|
if (!result)
|
|
|
|
result = nfs_direct_wait(dreq);
|
2010-06-25 20:35:53 +00:00
|
|
|
out_release:
|
2007-05-30 16:58:00 +00:00
|
|
|
nfs_direct_req_release(dreq);
|
2010-06-25 20:35:53 +00:00
|
|
|
out:
|
2005-04-16 22:20:36 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nfs_file_direct_read - file direct read operation for NFS files
|
|
|
|
* @iocb: target I/O control block
|
2006-10-01 06:28:46 +00:00
|
|
|
* @iov: vector of user buffers into which to read data
|
|
|
|
* @nr_segs: size of iov vector
|
2006-03-20 18:44:34 +00:00
|
|
|
* @pos: byte offset in file where reading starts
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* We use this function for direct reads instead of calling
|
|
|
|
* generic_file_aio_read() in order to avoid gfar's check to see if
|
|
|
|
* the request starts before the end of the file. For that check
|
|
|
|
* to work, we must generate a GETATTR before each direct read, and
|
|
|
|
* even then there is a window between the GETATTR and the subsequent
|
2006-03-20 18:44:34 +00:00
|
|
|
* READ where the file size could change. Our preference is simply
|
2005-04-16 22:20:36 +00:00
|
|
|
* to do all reads the application wants, and the server will take
|
|
|
|
* care of managing the end of file boundary.
|
2006-03-20 18:44:34 +00:00
|
|
|
*
|
2005-04-16 22:20:36 +00:00
|
|
|
* This function also eliminates unnecessarily updating the file's
|
|
|
|
* atime locally, as the NFS server sets the file's atime, and this
|
|
|
|
* client must read the updated atime from the server back into its
|
|
|
|
* cache.
|
|
|
|
*/
|
2006-10-01 06:28:46 +00:00
|
|
|
ssize_t nfs_file_direct_read(struct kiocb *iocb, const struct iovec *iov,
|
2012-07-31 23:45:12 +00:00
|
|
|
unsigned long nr_segs, loff_t pos, bool uio)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
ssize_t retval = -EINVAL;
|
|
|
|
struct file *file = iocb->ki_filp;
|
|
|
|
struct address_space *mapping = file->f_mapping;
|
2007-11-12 17:16:52 +00:00
|
|
|
size_t count;
|
|
|
|
|
|
|
|
count = iov_length(iov, nr_segs);
|
|
|
|
nfs_add_stats(mapping->host, NFSIOS_DIRECTREADBYTES, count);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-06-11 21:55:58 +00:00
|
|
|
dfprintk(FILE, "NFS: direct read(%s/%s, %zd@%Ld)\n",
|
2006-12-08 10:36:40 +00:00
|
|
|
file->f_path.dentry->d_parent->d_name.name,
|
|
|
|
file->f_path.dentry->d_name.name,
|
2007-11-12 17:16:52 +00:00
|
|
|
count, (long long) pos);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
retval = 0;
|
|
|
|
if (!count)
|
|
|
|
goto out;
|
|
|
|
|
2005-12-13 21:13:54 +00:00
|
|
|
retval = nfs_sync_mapping(mapping);
|
|
|
|
if (retval)
|
|
|
|
goto out;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-02-21 21:28:34 +00:00
|
|
|
task_io_account_read(count);
|
|
|
|
|
2012-07-31 23:45:12 +00:00
|
|
|
retval = nfs_direct_read(iocb, iov, nr_segs, pos, uio);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (retval > 0)
|
2006-03-20 18:44:29 +00:00
|
|
|
iocb->ki_pos = pos + retval;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nfs_file_direct_write - file direct write operation for NFS files
|
|
|
|
* @iocb: target I/O control block
|
2006-10-01 06:28:46 +00:00
|
|
|
* @iov: vector of user buffers from which to write data
|
|
|
|
* @nr_segs: size of iov vector
|
2006-03-20 18:44:34 +00:00
|
|
|
* @pos: byte offset in file where writing starts
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* We use this function for direct writes instead of calling
|
|
|
|
* generic_file_aio_write() in order to avoid taking the inode
|
|
|
|
* semaphore and updating the i_size. The NFS server will set
|
|
|
|
* the new i_size and this client must read the updated size
|
|
|
|
* back into its cache. We let the server do generic write
|
|
|
|
* parameter checking and report problems.
|
|
|
|
*
|
|
|
|
* We eliminate local atime updates, see direct read above.
|
|
|
|
*
|
|
|
|
* We avoid unnecessary page cache invalidations for normal cached
|
|
|
|
* readers of this file.
|
|
|
|
*
|
|
|
|
* Note that O_APPEND is not supported for NFS direct writes, as there
|
|
|
|
* is no atomic O_APPEND write facility in the NFS protocol.
|
|
|
|
*/
|
2006-10-01 06:28:46 +00:00
|
|
|
ssize_t nfs_file_direct_write(struct kiocb *iocb, const struct iovec *iov,
|
2012-07-31 23:45:12 +00:00
|
|
|
unsigned long nr_segs, loff_t pos, bool uio)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-05-19 21:22:52 +00:00
|
|
|
ssize_t retval = -EINVAL;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct file *file = iocb->ki_filp;
|
|
|
|
struct address_space *mapping = file->f_mapping;
|
2007-11-12 17:16:52 +00:00
|
|
|
size_t count;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-11-12 17:16:52 +00:00
|
|
|
count = iov_length(iov, nr_segs);
|
|
|
|
nfs_add_stats(mapping->host, NFSIOS_DIRECTWRITTENBYTES, count);
|
|
|
|
|
2008-06-11 21:55:58 +00:00
|
|
|
dfprintk(FILE, "NFS: direct write(%s/%s, %zd@%Ld)\n",
|
2006-12-08 10:36:40 +00:00
|
|
|
file->f_path.dentry->d_parent->d_name.name,
|
|
|
|
file->f_path.dentry->d_name.name,
|
2007-11-12 17:16:52 +00:00
|
|
|
count, (long long) pos);
|
2006-10-01 06:28:46 +00:00
|
|
|
|
2005-11-30 23:08:17 +00:00
|
|
|
retval = generic_write_checks(file, &pos, &count, 0);
|
|
|
|
if (retval)
|
2005-04-16 22:20:36 +00:00
|
|
|
goto out;
|
2005-11-30 23:08:17 +00:00
|
|
|
|
|
|
|
retval = -EINVAL;
|
|
|
|
if ((ssize_t) count < 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
goto out;
|
|
|
|
retval = 0;
|
|
|
|
if (!count)
|
|
|
|
goto out;
|
2005-11-30 23:08:17 +00:00
|
|
|
|
2005-12-13 21:13:54 +00:00
|
|
|
retval = nfs_sync_mapping(mapping);
|
|
|
|
if (retval)
|
|
|
|
goto out;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-02-21 21:28:34 +00:00
|
|
|
task_io_account_write(count);
|
|
|
|
|
2012-07-31 23:45:12 +00:00
|
|
|
retval = nfs_direct_write(iocb, iov, nr_segs, pos, count, uio);
|
2012-04-20 18:47:57 +00:00
|
|
|
if (retval > 0) {
|
|
|
|
struct inode *inode = mapping->host;
|
2006-03-20 18:44:33 +00:00
|
|
|
|
2005-11-30 23:08:17 +00:00
|
|
|
iocb->ki_pos = pos + retval;
|
2012-04-20 18:47:57 +00:00
|
|
|
spin_lock(&inode->i_lock);
|
|
|
|
if (i_size_read(inode) < iocb->ki_pos)
|
|
|
|
i_size_write(inode, iocb->ki_pos);
|
|
|
|
spin_unlock(&inode->i_lock);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
out:
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2006-03-20 18:44:34 +00:00
|
|
|
/**
|
|
|
|
* nfs_init_directcache - create a slab cache for nfs_direct_req structures
|
|
|
|
*
|
|
|
|
*/
|
NFS: Split fs/nfs/inode.c
As fs/nfs/inode.c is rather large, heterogenous and unwieldy, the attached
patch splits it up into a number of files:
(*) fs/nfs/inode.c
Strictly inode specific functions.
(*) fs/nfs/super.c
Superblock management functions for NFS and NFS4, normal access, clones
and referrals. The NFS4 superblock functions _could_ move out into a
separate conditionally compiled file, but it's probably not worth it as
there're so many common bits.
(*) fs/nfs/namespace.c
Some namespace-specific functions have been moved here.
(*) fs/nfs/nfs4namespace.c
NFS4-specific namespace functions (this could be merged into the previous
file). This file is conditionally compiled.
(*) fs/nfs/internal.h
Inter-file declarations, plus a few simple utility functions moved from
fs/nfs/inode.c.
Additionally, all the in-.c-file externs have been moved here, and those
files they were moved from now includes this file.
For the most part, the functions have not been changed, only some multiplexor
functions have changed significantly.
I've also:
(*) Added some extra banner comments above some functions.
(*) Rearranged the function order within the files to be more logical and
better grouped (IMO), though someone may prefer a different order.
(*) Reduced the number of #ifdefs in .c files.
(*) Added missing __init and __exit directives.
Signed-Off-By: David Howells <dhowells@redhat.com>
2006-06-09 13:34:33 +00:00
|
|
|
int __init nfs_init_directcache(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
nfs_direct_cachep = kmem_cache_create("nfs_direct_cache",
|
|
|
|
sizeof(struct nfs_direct_req),
|
2006-03-24 11:16:06 +00:00
|
|
|
0, (SLAB_RECLAIM_ACCOUNT|
|
|
|
|
SLAB_MEM_SPREAD),
|
2007-07-20 01:11:58 +00:00
|
|
|
NULL);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (nfs_direct_cachep == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-03-20 18:44:34 +00:00
|
|
|
/**
|
NFS: Split fs/nfs/inode.c
As fs/nfs/inode.c is rather large, heterogenous and unwieldy, the attached
patch splits it up into a number of files:
(*) fs/nfs/inode.c
Strictly inode specific functions.
(*) fs/nfs/super.c
Superblock management functions for NFS and NFS4, normal access, clones
and referrals. The NFS4 superblock functions _could_ move out into a
separate conditionally compiled file, but it's probably not worth it as
there're so many common bits.
(*) fs/nfs/namespace.c
Some namespace-specific functions have been moved here.
(*) fs/nfs/nfs4namespace.c
NFS4-specific namespace functions (this could be merged into the previous
file). This file is conditionally compiled.
(*) fs/nfs/internal.h
Inter-file declarations, plus a few simple utility functions moved from
fs/nfs/inode.c.
Additionally, all the in-.c-file externs have been moved here, and those
files they were moved from now includes this file.
For the most part, the functions have not been changed, only some multiplexor
functions have changed significantly.
I've also:
(*) Added some extra banner comments above some functions.
(*) Rearranged the function order within the files to be more logical and
better grouped (IMO), though someone may prefer a different order.
(*) Reduced the number of #ifdefs in .c files.
(*) Added missing __init and __exit directives.
Signed-Off-By: David Howells <dhowells@redhat.com>
2006-06-09 13:34:33 +00:00
|
|
|
* nfs_destroy_directcache - destroy the slab cache for nfs_direct_req structures
|
2006-03-20 18:44:34 +00:00
|
|
|
*
|
|
|
|
*/
|
2006-06-27 19:59:15 +00:00
|
|
|
void nfs_destroy_directcache(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-09-27 08:49:40 +00:00
|
|
|
kmem_cache_destroy(nfs_direct_cachep);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|