2019-05-29 00:57:16 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2006-01-19 09:43:02 +08:00
|
|
|
/*
|
|
|
|
* This file contians vfs address (mmap) ops for 9P2000.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Eric Van Hensbergen <ericvh@gmail.com>
|
|
|
|
* Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/file.h>
|
|
|
|
#include <linux/stat.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/inet.h>
|
|
|
|
#include <linux/pagemap.h>
|
|
|
|
#include <linux/idr.h>
|
Detach sched.h from mm.h
First thing mm.h does is including sched.h solely for can_do_mlock() inline
function which has "current" dereference inside. By dealing with can_do_mlock()
mm.h can be detached from sched.h which is good. See below, why.
This patch
a) removes unconditional inclusion of sched.h from mm.h
b) makes can_do_mlock() normal function in mm/mlock.c
c) exports can_do_mlock() to not break compilation
d) adds sched.h inclusions back to files that were getting it indirectly.
e) adds less bloated headers to some files (asm/signal.h, jiffies.h) that were
getting them indirectly
Net result is:
a) mm.h users would get less code to open, read, preprocess, parse, ... if
they don't need sched.h
b) sched.h stops being dependency for significant number of files:
on x86_64 allmodconfig touching sched.h results in recompile of 4083 files,
after patch it's only 3744 (-8.3%).
Cross-compile tested on
all arm defconfigs, all mips defconfigs, all powerpc defconfigs,
alpha alpha-up
arm
i386 i386-up i386-defconfig i386-allnoconfig
ia64 ia64-up
m68k
mips
parisc parisc-up
powerpc powerpc-up
s390 s390-up
sparc sparc-up
sparc64 sparc64-up
um-x86_64
x86_64 x86_64-up x86_64-defconfig x86_64-allnoconfig
as well as my two usual configs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-21 05:22:52 +08:00
|
|
|
#include <linux/sched.h>
|
2015-02-23 00:58:50 +08:00
|
|
|
#include <linux/uio.h>
|
2021-11-02 16:29:55 +08:00
|
|
|
#include <linux/netfs.h>
|
2007-07-11 06:57:28 +08:00
|
|
|
#include <net/9p/9p.h>
|
|
|
|
#include <net/9p/client.h>
|
2006-01-19 09:43:02 +08:00
|
|
|
|
|
|
|
#include "v9fs.h"
|
|
|
|
#include "v9fs_vfs.h"
|
2009-09-24 02:00:27 +08:00
|
|
|
#include "cache.h"
|
2011-02-28 19:33:58 +08:00
|
|
|
#include "fid.h"
|
2006-01-19 09:43:02 +08:00
|
|
|
|
|
|
|
/**
|
2021-11-02 16:29:55 +08:00
|
|
|
* v9fs_req_issue_op - Issue a read from 9P
|
|
|
|
* @subreq: The read to make
|
2006-01-19 09:43:02 +08:00
|
|
|
*/
|
2021-11-02 16:29:55 +08:00
|
|
|
static void v9fs_req_issue_op(struct netfs_read_subrequest *subreq)
|
2006-01-19 09:43:02 +08:00
|
|
|
{
|
2021-11-02 16:29:55 +08:00
|
|
|
struct netfs_read_request *rreq = subreq->rreq;
|
|
|
|
struct p9_fid *fid = rreq->netfs_priv;
|
2015-04-02 11:42:28 +08:00
|
|
|
struct iov_iter to;
|
2021-11-02 16:29:55 +08:00
|
|
|
loff_t pos = subreq->start + subreq->transferred;
|
|
|
|
size_t len = subreq->len - subreq->transferred;
|
|
|
|
int total, err;
|
2007-02-12 03:21:39 +08:00
|
|
|
|
2021-11-02 16:29:55 +08:00
|
|
|
iov_iter_xarray(&to, READ, &rreq->mapping->i_pages, pos, len);
|
2009-09-24 02:00:27 +08:00
|
|
|
|
2021-11-02 16:29:55 +08:00
|
|
|
total = p9_client_read(fid, pos, &to, &err);
|
|
|
|
netfs_subreq_terminated(subreq, err ?: total, false);
|
|
|
|
}
|
2009-09-24 02:00:27 +08:00
|
|
|
|
2021-11-02 16:29:55 +08:00
|
|
|
/**
|
|
|
|
* v9fs_init_rreq - Initialise a read request
|
|
|
|
* @rreq: The read request
|
|
|
|
* @file: The file being read from
|
|
|
|
*/
|
|
|
|
static void v9fs_init_rreq(struct netfs_read_request *rreq, struct file *file)
|
|
|
|
{
|
|
|
|
struct p9_fid *fid = file->private_data;
|
2009-09-24 02:00:27 +08:00
|
|
|
|
2021-11-02 16:29:55 +08:00
|
|
|
refcount_inc(&fid->count);
|
|
|
|
rreq->netfs_priv = fid;
|
|
|
|
}
|
2006-01-19 09:43:02 +08:00
|
|
|
|
2021-11-02 16:29:55 +08:00
|
|
|
/**
|
|
|
|
* v9fs_req_cleanup - Cleanup request initialized by v9fs_init_rreq
|
|
|
|
* @mapping: unused mapping of request to cleanup
|
|
|
|
* @priv: private data to cleanup, a fid, guaranted non-null.
|
|
|
|
*/
|
|
|
|
static void v9fs_req_cleanup(struct address_space *mapping, void *priv)
|
|
|
|
{
|
|
|
|
struct p9_fid *fid = priv;
|
2006-01-19 09:43:02 +08:00
|
|
|
|
2021-11-02 16:29:55 +08:00
|
|
|
p9_client_clunk(fid);
|
|
|
|
}
|
2009-09-24 02:00:27 +08:00
|
|
|
|
2021-11-02 16:29:55 +08:00
|
|
|
/**
|
|
|
|
* v9fs_is_cache_enabled - Determine if caching is enabled for an inode
|
|
|
|
* @inode: The inode to check
|
|
|
|
*/
|
|
|
|
static bool v9fs_is_cache_enabled(struct inode *inode)
|
|
|
|
{
|
2020-11-18 17:06:42 +08:00
|
|
|
struct fscache_cookie *cookie = v9fs_inode_cookie(V9FS_I(inode));
|
|
|
|
|
|
|
|
return fscache_cookie_enabled(cookie) && cookie->cache_priv;
|
2021-11-02 16:29:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* v9fs_begin_cache_operation - Begin a cache operation for a read
|
|
|
|
* @rreq: The read request
|
|
|
|
*/
|
|
|
|
static int v9fs_begin_cache_operation(struct netfs_read_request *rreq)
|
|
|
|
{
|
2021-10-26 04:53:44 +08:00
|
|
|
#ifdef CONFIG_9P_FSCACHE
|
2021-11-02 16:29:55 +08:00
|
|
|
struct fscache_cookie *cookie = v9fs_inode_cookie(V9FS_I(rreq->inode));
|
|
|
|
|
2020-11-18 17:06:42 +08:00
|
|
|
return fscache_begin_read_operation(&rreq->cache_resources, cookie);
|
2021-10-26 04:53:44 +08:00
|
|
|
#else
|
|
|
|
return -ENOBUFS;
|
|
|
|
#endif
|
2006-01-19 09:43:02 +08:00
|
|
|
}
|
|
|
|
|
2021-11-02 16:29:55 +08:00
|
|
|
static const struct netfs_read_request_ops v9fs_req_ops = {
|
|
|
|
.init_rreq = v9fs_init_rreq,
|
|
|
|
.is_cache_enabled = v9fs_is_cache_enabled,
|
|
|
|
.begin_cache_operation = v9fs_begin_cache_operation,
|
|
|
|
.issue_op = v9fs_req_issue_op,
|
|
|
|
.cleanup = v9fs_req_cleanup,
|
|
|
|
};
|
|
|
|
|
2011-02-28 19:33:58 +08:00
|
|
|
/**
|
|
|
|
* v9fs_vfs_readpage - read an entire page in from 9P
|
2021-11-02 16:29:55 +08:00
|
|
|
* @file: file being read
|
2011-02-28 19:33:58 +08:00
|
|
|
* @page: structure to page
|
|
|
|
*
|
|
|
|
*/
|
2021-11-02 16:29:55 +08:00
|
|
|
static int v9fs_vfs_readpage(struct file *file, struct page *page)
|
2011-02-28 19:33:58 +08:00
|
|
|
{
|
2021-08-11 16:49:13 +08:00
|
|
|
struct folio *folio = page_folio(page);
|
|
|
|
|
|
|
|
return netfs_readpage(file, folio, &v9fs_req_ops, NULL);
|
2011-02-28 19:33:58 +08:00
|
|
|
}
|
|
|
|
|
2009-09-24 02:00:27 +08:00
|
|
|
/**
|
2021-11-02 16:29:55 +08:00
|
|
|
* v9fs_vfs_readahead - read a set of pages from 9P
|
|
|
|
* @ractl: The readahead parameters
|
2009-09-24 02:00:27 +08:00
|
|
|
*/
|
2021-11-02 16:29:55 +08:00
|
|
|
static void v9fs_vfs_readahead(struct readahead_control *ractl)
|
2009-09-24 02:00:27 +08:00
|
|
|
{
|
2021-11-02 16:29:55 +08:00
|
|
|
netfs_readahead(ractl, &v9fs_req_ops, NULL);
|
2009-09-24 02:00:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* v9fs_release_page - release the private state associated with a page
|
2021-10-05 05:07:22 +08:00
|
|
|
* @page: The page to be released
|
|
|
|
* @gfp: The caller's allocation restrictions
|
2009-09-24 02:00:27 +08:00
|
|
|
*
|
|
|
|
* Returns 1 if the page can be released, false otherwise.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int v9fs_release_page(struct page *page, gfp_t gfp)
|
|
|
|
{
|
2021-08-11 16:49:13 +08:00
|
|
|
struct folio *folio = page_folio(page);
|
|
|
|
|
|
|
|
if (folio_test_private(folio))
|
2009-09-24 02:00:27 +08:00
|
|
|
return 0;
|
2021-11-02 16:29:55 +08:00
|
|
|
#ifdef CONFIG_9P_FSCACHE
|
2021-08-11 16:49:13 +08:00
|
|
|
if (folio_test_fscache(folio)) {
|
2020-11-18 17:06:42 +08:00
|
|
|
if (!gfpflags_allow_blocking(gfp) || !(gfp & __GFP_FS))
|
2021-11-02 16:29:55 +08:00
|
|
|
return 0;
|
2021-08-11 16:49:13 +08:00
|
|
|
folio_wait_fscache(folio);
|
2021-11-02 16:29:55 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return 1;
|
2009-09-24 02:00:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* v9fs_invalidate_page - Invalidate a page completely or partially
|
2021-10-05 05:07:22 +08:00
|
|
|
* @page: The page to be invalidated
|
|
|
|
* @offset: offset of the invalidated region
|
|
|
|
* @length: length of the invalidated region
|
2009-09-24 02:00:27 +08:00
|
|
|
*/
|
|
|
|
|
2013-05-22 11:17:23 +08:00
|
|
|
static void v9fs_invalidate_page(struct page *page, unsigned int offset,
|
|
|
|
unsigned int length)
|
2009-09-24 02:00:27 +08:00
|
|
|
{
|
2021-08-11 16:49:13 +08:00
|
|
|
struct folio *folio = page_folio(page);
|
|
|
|
|
|
|
|
folio_wait_fscache(folio);
|
2009-09-24 02:00:27 +08:00
|
|
|
}
|
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
static int v9fs_vfs_write_folio_locked(struct folio *folio)
|
2011-02-28 19:33:58 +08:00
|
|
|
{
|
2021-08-11 16:49:13 +08:00
|
|
|
struct inode *inode = folio_inode(folio);
|
2015-04-02 09:54:42 +08:00
|
|
|
struct v9fs_inode *v9inode = V9FS_I(inode);
|
2021-08-11 16:49:13 +08:00
|
|
|
loff_t start = folio_pos(folio);
|
|
|
|
loff_t i_size = i_size_read(inode);
|
2015-04-02 09:54:42 +08:00
|
|
|
struct iov_iter from;
|
2021-08-11 16:49:13 +08:00
|
|
|
size_t len = folio_size(folio);
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (start >= i_size)
|
|
|
|
return 0; /* Simultaneous truncation occurred */
|
2011-02-28 19:33:58 +08:00
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
len = min_t(loff_t, i_size - start, len);
|
2011-02-28 19:33:58 +08:00
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
iov_iter_xarray(&from, WRITE, &folio_mapping(folio)->i_pages, start, len);
|
2011-02-28 19:33:58 +08:00
|
|
|
|
2011-02-28 19:34:03 +08:00
|
|
|
/* We should have writeback_fid always set */
|
|
|
|
BUG_ON(!v9inode->writeback_fid);
|
2011-02-28 19:33:58 +08:00
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
folio_start_writeback(folio);
|
2015-04-02 09:54:42 +08:00
|
|
|
|
2021-11-02 16:29:55 +08:00
|
|
|
p9_client_write(v9inode->writeback_fid, start, &from, &err);
|
2011-02-28 19:33:58 +08:00
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
folio_end_writeback(folio);
|
2015-04-02 09:54:42 +08:00
|
|
|
return err;
|
2011-02-28 19:33:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int v9fs_vfs_writepage(struct page *page, struct writeback_control *wbc)
|
|
|
|
{
|
2021-08-11 16:49:13 +08:00
|
|
|
struct folio *folio = page_folio(page);
|
2011-02-28 19:33:58 +08:00
|
|
|
int retval;
|
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
p9_debug(P9_DEBUG_VFS, "folio %p\n", folio);
|
2014-01-10 20:44:09 +08:00
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
retval = v9fs_vfs_write_folio_locked(folio);
|
2011-02-28 19:33:58 +08:00
|
|
|
if (retval < 0) {
|
|
|
|
if (retval == -EAGAIN) {
|
2021-08-11 16:49:13 +08:00
|
|
|
folio_redirty_for_writepage(wbc, folio);
|
2011-02-28 19:33:58 +08:00
|
|
|
retval = 0;
|
|
|
|
} else {
|
2021-08-11 16:49:13 +08:00
|
|
|
mapping_set_error(folio_mapping(folio), retval);
|
2011-02-28 19:33:58 +08:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
retval = 0;
|
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
folio_unlock(folio);
|
2011-02-28 19:33:58 +08:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-09-24 02:00:27 +08:00
|
|
|
/**
|
|
|
|
* v9fs_launder_page - Writeback a dirty page
|
2021-10-05 05:07:22 +08:00
|
|
|
* @page: The page to be cleaned up
|
|
|
|
*
|
2009-09-24 02:00:27 +08:00
|
|
|
* Returns 0 on success.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int v9fs_launder_page(struct page *page)
|
|
|
|
{
|
2021-08-11 16:49:13 +08:00
|
|
|
struct folio *folio = page_folio(page);
|
2011-02-28 19:33:58 +08:00
|
|
|
int retval;
|
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
if (folio_clear_dirty_for_io(folio)) {
|
|
|
|
retval = v9fs_vfs_write_folio_locked(folio);
|
2011-02-28 19:33:58 +08:00
|
|
|
if (retval)
|
|
|
|
return retval;
|
|
|
|
}
|
2021-08-11 16:49:13 +08:00
|
|
|
folio_wait_fscache(folio);
|
2009-09-24 02:00:27 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-24 23:43:28 +08:00
|
|
|
/**
|
|
|
|
* v9fs_direct_IO - 9P address space operation for direct I/O
|
|
|
|
* @iocb: target I/O control block
|
2021-10-05 05:07:22 +08:00
|
|
|
* @iter: The data/buffer to use
|
2010-08-24 23:43:28 +08:00
|
|
|
*
|
|
|
|
* The presence of v9fs_direct_IO() in the address space ops vector
|
|
|
|
* allowes open() O_DIRECT flags which would have failed otherwise.
|
|
|
|
*
|
|
|
|
* In the non-cached mode, we shunt off direct read and write requests before
|
|
|
|
* the VFS gets them, so this method should never be called.
|
|
|
|
*
|
|
|
|
* Direct IO is not 'yet' supported in the cached mode. Hence when
|
|
|
|
* this routine is called through generic_file_aio_read(), the read/write fails
|
|
|
|
* with an error.
|
|
|
|
*
|
|
|
|
*/
|
2011-02-28 19:34:04 +08:00
|
|
|
static ssize_t
|
2016-04-07 23:51:58 +08:00
|
|
|
v9fs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
|
2010-08-24 23:43:28 +08:00
|
|
|
{
|
2015-04-02 10:32:23 +08:00
|
|
|
struct file *file = iocb->ki_filp;
|
2016-04-07 23:51:58 +08:00
|
|
|
loff_t pos = iocb->ki_pos;
|
2015-04-02 11:49:24 +08:00
|
|
|
ssize_t n;
|
|
|
|
int err = 0;
|
2021-11-02 21:16:43 +08:00
|
|
|
|
2015-03-16 19:33:52 +08:00
|
|
|
if (iov_iter_rw(iter) == WRITE) {
|
2015-04-02 11:49:24 +08:00
|
|
|
n = p9_client_write(file->private_data, pos, iter, &err);
|
|
|
|
if (n) {
|
2015-04-02 10:32:23 +08:00
|
|
|
struct inode *inode = file_inode(file);
|
|
|
|
loff_t i_size = i_size_read(inode);
|
2021-11-02 21:16:43 +08:00
|
|
|
|
2015-04-02 11:49:24 +08:00
|
|
|
if (pos + n > i_size)
|
|
|
|
inode_add_bytes(inode, pos + n - i_size);
|
2015-04-02 10:32:23 +08:00
|
|
|
}
|
2015-04-02 11:49:24 +08:00
|
|
|
} else {
|
|
|
|
n = p9_client_read(file->private_data, pos, iter, &err);
|
2015-04-02 10:32:23 +08:00
|
|
|
}
|
2015-04-02 11:49:24 +08:00
|
|
|
return n ? n : err;
|
2010-08-24 23:43:28 +08:00
|
|
|
}
|
2011-02-28 19:33:58 +08:00
|
|
|
|
|
|
|
static int v9fs_write_begin(struct file *filp, struct address_space *mapping,
|
2021-11-02 21:16:43 +08:00
|
|
|
loff_t pos, unsigned int len, unsigned int flags,
|
2021-08-11 16:49:13 +08:00
|
|
|
struct page **subpagep, void **fsdata)
|
2011-02-28 19:33:58 +08:00
|
|
|
{
|
2021-11-02 16:29:55 +08:00
|
|
|
int retval;
|
2021-08-11 16:49:13 +08:00
|
|
|
struct folio *folio;
|
2021-11-02 16:29:55 +08:00
|
|
|
struct v9fs_inode *v9inode = V9FS_I(mapping->host);
|
2014-01-10 20:44:09 +08:00
|
|
|
|
|
|
|
p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
|
|
|
|
|
2011-02-28 19:34:03 +08:00
|
|
|
BUG_ON(!v9inode->writeback_fid);
|
2011-02-28 19:33:58 +08:00
|
|
|
|
2021-11-02 16:29:55 +08:00
|
|
|
/* Prefetch area to be written into the cache if we're caching this
|
|
|
|
* file. We need to do this before we get a lock on the page in case
|
|
|
|
* there's more than one writer competing for the same cache block.
|
|
|
|
*/
|
2021-08-11 16:49:13 +08:00
|
|
|
retval = netfs_write_begin(filp, mapping, pos, len, flags, &folio, fsdata,
|
2021-11-02 16:29:55 +08:00
|
|
|
&v9fs_req_ops, NULL);
|
|
|
|
if (retval < 0)
|
|
|
|
return retval;
|
2011-02-28 19:33:58 +08:00
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
*subpagep = &folio->page;
|
2011-02-28 19:33:58 +08:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int v9fs_write_end(struct file *filp, struct address_space *mapping,
|
2021-11-02 21:16:43 +08:00
|
|
|
loff_t pos, unsigned int len, unsigned int copied,
|
2021-08-11 16:49:13 +08:00
|
|
|
struct page *subpage, void *fsdata)
|
2011-02-28 19:33:58 +08:00
|
|
|
{
|
|
|
|
loff_t last_pos = pos + copied;
|
2021-08-11 16:49:13 +08:00
|
|
|
struct folio *folio = page_folio(subpage);
|
|
|
|
struct inode *inode = mapping->host;
|
2011-02-28 19:33:58 +08:00
|
|
|
|
2014-01-10 20:44:09 +08:00
|
|
|
p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
|
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
if (!folio_test_uptodate(folio)) {
|
2017-04-11 02:46:51 +08:00
|
|
|
if (unlikely(copied < len)) {
|
|
|
|
copied = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2021-11-02 16:29:55 +08:00
|
|
|
|
2021-08-11 16:49:13 +08:00
|
|
|
folio_mark_uptodate(folio);
|
2011-02-28 19:33:58 +08:00
|
|
|
}
|
2021-11-02 16:29:55 +08:00
|
|
|
|
2011-02-28 19:33:58 +08:00
|
|
|
/*
|
|
|
|
* No need to use i_size_read() here, the i_size
|
|
|
|
* cannot change under us because we hold the i_mutex.
|
|
|
|
*/
|
|
|
|
if (last_pos > inode->i_size) {
|
|
|
|
inode_add_bytes(inode, last_pos - inode->i_size);
|
|
|
|
i_size_write(inode, last_pos);
|
|
|
|
}
|
2021-08-11 16:49:13 +08:00
|
|
|
folio_mark_dirty(folio);
|
2016-08-30 08:56:35 +08:00
|
|
|
out:
|
2021-08-11 16:49:13 +08:00
|
|
|
folio_unlock(folio);
|
|
|
|
folio_put(folio);
|
2011-02-28 19:33:58 +08:00
|
|
|
|
|
|
|
return copied;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-28 19:26:44 +08:00
|
|
|
const struct address_space_operations v9fs_addr_operations = {
|
2011-02-28 19:33:58 +08:00
|
|
|
.readpage = v9fs_vfs_readpage,
|
2021-11-02 16:29:55 +08:00
|
|
|
.readahead = v9fs_vfs_readahead,
|
2011-02-28 19:33:58 +08:00
|
|
|
.set_page_dirty = __set_page_dirty_nobuffers,
|
|
|
|
.writepage = v9fs_vfs_writepage,
|
|
|
|
.write_begin = v9fs_write_begin,
|
|
|
|
.write_end = v9fs_write_end,
|
|
|
|
.releasepage = v9fs_release_page,
|
|
|
|
.invalidatepage = v9fs_invalidate_page,
|
|
|
|
.launder_page = v9fs_launder_page,
|
|
|
|
.direct_IO = v9fs_direct_IO,
|
2006-01-19 09:43:02 +08:00
|
|
|
};
|