| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/fs/9p/vfs_addr.c | 
|  | 3 | * | 
|  | 4 | * This file contians vfs address (mmap) ops for 9P2000. | 
|  | 5 | * | 
|  | 6 | *  Copyright (C) 2005 by Eric Van Hensbergen <ericvh@gmail.com> | 
|  | 7 | *  Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov> | 
|  | 8 | * | 
|  | 9 | *  This program is free software; you can redistribute it and/or modify | 
| Eric Van Hensbergen | 42e8c50 | 2006-03-25 03:07:28 -0800 | [diff] [blame] | 10 | *  it under the terms of the GNU General Public License version 2 | 
|  | 11 | *  as published by the Free Software Foundation. | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 12 | * | 
|  | 13 | *  This program is distributed in the hope that it will be useful, | 
|  | 14 | *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 15 | *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 16 | *  GNU General Public License for more details. | 
|  | 17 | * | 
|  | 18 | *  You should have received a copy of the GNU General Public License | 
|  | 19 | *  along with this program; if not, write to: | 
|  | 20 | *  Free Software Foundation | 
|  | 21 | *  51 Franklin Street, Fifth Floor | 
|  | 22 | *  Boston, MA  02111-1301  USA | 
|  | 23 | * | 
|  | 24 | */ | 
|  | 25 |  | 
|  | 26 | #include <linux/module.h> | 
|  | 27 | #include <linux/errno.h> | 
|  | 28 | #include <linux/fs.h> | 
|  | 29 | #include <linux/file.h> | 
|  | 30 | #include <linux/stat.h> | 
|  | 31 | #include <linux/string.h> | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 32 | #include <linux/inet.h> | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 33 | #include <linux/pagemap.h> | 
|  | 34 | #include <linux/idr.h> | 
| Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 35 | #include <linux/sched.h> | 
| Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 36 | #include <net/9p/9p.h> | 
|  | 37 | #include <net/9p/client.h> | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 38 |  | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 39 | #include "v9fs.h" | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 40 | #include "v9fs_vfs.h" | 
| Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 41 | #include "cache.h" | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 42 |  | 
|  | 43 | /** | 
|  | 44 | * v9fs_vfs_readpage - read an entire page in from 9P | 
|  | 45 | * | 
| Eric Van Hensbergen | ee44399 | 2008-03-05 07:08:09 -0600 | [diff] [blame] | 46 | * @filp: file being read | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 47 | * @page: structure to page | 
|  | 48 | * | 
|  | 49 | */ | 
|  | 50 |  | 
|  | 51 | static int v9fs_vfs_readpage(struct file *filp, struct page *page) | 
|  | 52 | { | 
| Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 53 | int retval; | 
|  | 54 | loff_t offset; | 
|  | 55 | char *buffer; | 
| Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 56 | struct inode *inode; | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 57 |  | 
| Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 58 | inode = page->mapping->host; | 
| Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 59 | P9_DPRINTK(P9_DEBUG_VFS, "\n"); | 
| Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 60 |  | 
|  | 61 | BUG_ON(!PageLocked(page)); | 
|  | 62 |  | 
|  | 63 | retval = v9fs_readpage_from_fscache(inode, page); | 
|  | 64 | if (retval == 0) | 
|  | 65 | return retval; | 
|  | 66 |  | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 67 | buffer = kmap(page); | 
| Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 68 | offset = page_offset(page); | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 69 |  | 
| Abhishek Kulkarni | 9c9ad61 | 2009-07-14 13:26:52 -0500 | [diff] [blame] | 70 | retval = v9fs_file_readn(filp, buffer, NULL, PAGE_CACHE_SIZE, offset); | 
| Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 71 | if (retval < 0) { | 
|  | 72 | v9fs_uncache_page(inode, page); | 
| Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 73 | goto done; | 
| Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 74 | } | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 75 |  | 
| Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 76 | memset(buffer + retval, 0, PAGE_CACHE_SIZE - retval); | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 77 | flush_dcache_page(page); | 
|  | 78 | SetPageUptodate(page); | 
| Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 79 |  | 
|  | 80 | v9fs_readpage_to_fscache(inode, page); | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 81 | retval = 0; | 
|  | 82 |  | 
| Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 83 | done: | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 84 | kunmap(page); | 
|  | 85 | unlock_page(page); | 
|  | 86 | return retval; | 
|  | 87 | } | 
|  | 88 |  | 
| Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 89 | /** | 
|  | 90 | * v9fs_vfs_readpages - read a set of pages from 9P | 
|  | 91 | * | 
|  | 92 | * @filp: file being read | 
|  | 93 | * @mapping: the address space | 
|  | 94 | * @pages: list of pages to read | 
|  | 95 | * @nr_pages: count of pages to read | 
|  | 96 | * | 
|  | 97 | */ | 
|  | 98 |  | 
|  | 99 | static int v9fs_vfs_readpages(struct file *filp, struct address_space *mapping, | 
|  | 100 | struct list_head *pages, unsigned nr_pages) | 
|  | 101 | { | 
|  | 102 | int ret = 0; | 
|  | 103 | struct inode *inode; | 
|  | 104 |  | 
|  | 105 | inode = mapping->host; | 
|  | 106 | P9_DPRINTK(P9_DEBUG_VFS, "inode: %p file: %p\n", inode, filp); | 
|  | 107 |  | 
|  | 108 | ret = v9fs_readpages_from_fscache(inode, mapping, pages, &nr_pages); | 
|  | 109 | if (ret == 0) | 
|  | 110 | return ret; | 
|  | 111 |  | 
|  | 112 | ret = read_cache_pages(mapping, pages, (void *)v9fs_vfs_readpage, filp); | 
|  | 113 | P9_DPRINTK(P9_DEBUG_VFS, "  = %d\n", ret); | 
|  | 114 | return ret; | 
|  | 115 | } | 
|  | 116 |  | 
|  | 117 | /** | 
|  | 118 | * v9fs_release_page - release the private state associated with a page | 
|  | 119 | * | 
|  | 120 | * Returns 1 if the page can be released, false otherwise. | 
|  | 121 | */ | 
|  | 122 |  | 
|  | 123 | static int v9fs_release_page(struct page *page, gfp_t gfp) | 
|  | 124 | { | 
|  | 125 | if (PagePrivate(page)) | 
|  | 126 | return 0; | 
|  | 127 |  | 
|  | 128 | return v9fs_fscache_release_page(page, gfp); | 
|  | 129 | } | 
|  | 130 |  | 
|  | 131 | /** | 
|  | 132 | * v9fs_invalidate_page - Invalidate a page completely or partially | 
|  | 133 | * | 
|  | 134 | * @page: structure to page | 
|  | 135 | * @offset: offset in the page | 
|  | 136 | */ | 
|  | 137 |  | 
|  | 138 | static void v9fs_invalidate_page(struct page *page, unsigned long offset) | 
|  | 139 | { | 
|  | 140 | if (offset == 0) | 
|  | 141 | v9fs_fscache_invalidate_page(page); | 
|  | 142 | } | 
|  | 143 |  | 
|  | 144 | /** | 
|  | 145 | * v9fs_launder_page - Writeback a dirty page | 
|  | 146 | * Since the writes go directly to the server, we simply return a 0 | 
|  | 147 | * here to indicate success. | 
|  | 148 | * | 
|  | 149 | * Returns 0 on success. | 
|  | 150 | */ | 
|  | 151 |  | 
|  | 152 | static int v9fs_launder_page(struct page *page) | 
|  | 153 | { | 
|  | 154 | return 0; | 
|  | 155 | } | 
|  | 156 |  | 
| Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 157 | const struct address_space_operations v9fs_addr_operations = { | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 158 | .readpage = v9fs_vfs_readpage, | 
| Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 159 | .readpages = v9fs_vfs_readpages, | 
|  | 160 | .releasepage = v9fs_release_page, | 
|  | 161 | .invalidatepage = v9fs_invalidate_page, | 
|  | 162 | .launder_page = v9fs_launder_page, | 
| Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 163 | }; |