vfs_addr.c 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 *  linux/fs/9p/vfs_addr.c
 *
 * 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>
 *
 *  This program is free software; you can redistribute it and/or modify
10 11
 *  it under the terms of the GNU General Public License version 2
 *  as published by the Free Software Foundation.
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to:
 *  Free Software Foundation
 *  51 Franklin Street, Fifth Floor
 *  Boston, MA  02111-1301  USA
 *
 */

#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>
A
Alexey Dobriyan 已提交
35
#include <linux/sched.h>
36 37
#include <net/9p/9p.h>
#include <net/9p/client.h>
38 39 40 41 42 43 44 45

#include "v9fs.h"
#include "v9fs_vfs.h"
#include "fid.h"

/**
 * v9fs_vfs_readpage - read an entire page in from 9P
 *
E
Eric Van Hensbergen 已提交
46
 * @filp: file being read
47 48 49 50 51 52
 * @page: structure to page
 *
 */

static int v9fs_vfs_readpage(struct file *filp, struct page *page)
{
53 54 55 56
	int retval;
	loff_t offset;
	char *buffer;
	struct p9_fid *fid;
57

58 59
	P9_DPRINTK(P9_DEBUG_VFS, "\n");
	fid = filp->private_data;
60
	buffer = kmap(page);
61
	offset = page_offset(page);
62

63 64 65
	retval = p9_client_readn(fid, buffer, offset, PAGE_CACHE_SIZE);
	if (retval < 0)
		goto done;
66

67
	memset(buffer + retval, 0, PAGE_CACHE_SIZE - retval);
68 69 70 71
	flush_dcache_page(page);
	SetPageUptodate(page);
	retval = 0;

72
done:
73 74 75 76 77
	kunmap(page);
	unlock_page(page);
	return retval;
}

78
const struct address_space_operations v9fs_addr_operations = {
79 80
      .readpage = v9fs_vfs_readpage,
};