| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) 2005, 2006 | 
| Boaz Harrosh | 27d2e14 | 2009-06-14 17:23:09 +0300 | [diff] [blame] | 3 |  * Avishay Traeger (avishay@gmail.com) | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 4 |  * Copyright (C) 2008, 2009 | 
 | 5 |  * Boaz Harrosh <bharrosh@panasas.com> | 
 | 6 |  * | 
 | 7 |  * Copyrights for code taken from ext2: | 
 | 8 |  *     Copyright (C) 1992, 1993, 1994, 1995 | 
 | 9 |  *     Remy Card (card@masi.ibp.fr) | 
 | 10 |  *     Laboratoire MASI - Institut Blaise Pascal | 
 | 11 |  *     Universite Pierre et Marie Curie (Paris VI) | 
 | 12 |  *     from | 
 | 13 |  *     linux/fs/minix/inode.c | 
 | 14 |  *     Copyright (C) 1991, 1992  Linus Torvalds | 
 | 15 |  * | 
 | 16 |  * This file is part of exofs. | 
 | 17 |  * | 
 | 18 |  * exofs is free software; you can redistribute it and/or modify | 
 | 19 |  * it under the terms of the GNU General Public License as published by | 
 | 20 |  * the Free Software Foundation.  Since it is based on ext2, and the only | 
 | 21 |  * valid version of GPL for the Linux kernel is version 2, the only valid | 
 | 22 |  * version of GPL for exofs is version 2. | 
 | 23 |  * | 
 | 24 |  * exofs is distributed in the hope that it will be useful, | 
 | 25 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 26 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 27 |  * GNU General Public License for more details. | 
 | 28 |  * | 
 | 29 |  * You should have received a copy of the GNU General Public License | 
 | 30 |  * along with exofs; if not, write to the Free Software | 
 | 31 |  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA | 
 | 32 |  */ | 
 | 33 |  | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 35 |  | 
 | 36 | #include "exofs.h" | 
 | 37 |  | 
| Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 38 | #define EXOFS_DBGMSG2(M...) do {} while (0) | 
 | 39 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 40 | enum { BIO_MAX_PAGES_KMALLOC = | 
 | 41 | 		(PAGE_SIZE - sizeof(struct bio)) / sizeof(struct bio_vec), | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 42 | 	MAX_PAGES_KMALLOC = | 
 | 43 | 		PAGE_SIZE / sizeof(struct page *), | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 44 | }; | 
 | 45 |  | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 46 | struct page_collect { | 
 | 47 | 	struct exofs_sb_info *sbi; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 48 | 	struct inode *inode; | 
 | 49 | 	unsigned expected_pages; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 50 | 	struct exofs_io_state *ios; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 51 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 52 | 	struct page **pages; | 
 | 53 | 	unsigned alloc_pages; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 54 | 	unsigned nr_pages; | 
 | 55 | 	unsigned long length; | 
 | 56 | 	loff_t pg_first; /* keep 64bit also in 32-arches */ | 
 | 57 | }; | 
 | 58 |  | 
 | 59 | static void _pcol_init(struct page_collect *pcol, unsigned expected_pages, | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 60 | 		       struct inode *inode) | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 61 | { | 
 | 62 | 	struct exofs_sb_info *sbi = inode->i_sb->s_fs_info; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 63 |  | 
 | 64 | 	pcol->sbi = sbi; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 65 | 	pcol->inode = inode; | 
 | 66 | 	pcol->expected_pages = expected_pages; | 
 | 67 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 68 | 	pcol->ios = NULL; | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 69 | 	pcol->pages = NULL; | 
 | 70 | 	pcol->alloc_pages = 0; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 71 | 	pcol->nr_pages = 0; | 
 | 72 | 	pcol->length = 0; | 
 | 73 | 	pcol->pg_first = -1; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 74 | } | 
 | 75 |  | 
 | 76 | static void _pcol_reset(struct page_collect *pcol) | 
 | 77 | { | 
 | 78 | 	pcol->expected_pages -= min(pcol->nr_pages, pcol->expected_pages); | 
 | 79 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 80 | 	pcol->pages = NULL; | 
 | 81 | 	pcol->alloc_pages = 0; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 82 | 	pcol->nr_pages = 0; | 
 | 83 | 	pcol->length = 0; | 
 | 84 | 	pcol->pg_first = -1; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 85 | 	pcol->ios = NULL; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 86 |  | 
 | 87 | 	/* this is probably the end of the loop but in writes | 
 | 88 | 	 * it might not end here. don't be left with nothing | 
 | 89 | 	 */ | 
 | 90 | 	if (!pcol->expected_pages) | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 91 | 		pcol->expected_pages = MAX_PAGES_KMALLOC; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 92 | } | 
 | 93 |  | 
 | 94 | static int pcol_try_alloc(struct page_collect *pcol) | 
 | 95 | { | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 96 | 	unsigned pages = min_t(unsigned, pcol->expected_pages, | 
 | 97 | 			  MAX_PAGES_KMALLOC); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 98 |  | 
 | 99 | 	if (!pcol->ios) { /* First time allocate io_state */ | 
| Boaz Harrosh | 45d3abc | 2010-01-28 11:46:16 +0200 | [diff] [blame] | 100 | 		int ret = exofs_get_io_state(&pcol->sbi->layout, &pcol->ios); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 101 |  | 
 | 102 | 		if (ret) | 
 | 103 | 			return ret; | 
 | 104 | 	} | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 105 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 106 | 	/* TODO: easily support bio chaining */ | 
 | 107 | 	pages =  min_t(unsigned, pages, | 
 | 108 | 		       pcol->sbi->layout.group_width * BIO_MAX_PAGES_KMALLOC); | 
 | 109 |  | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 110 | 	for (; pages; pages >>= 1) { | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 111 | 		pcol->pages = kmalloc(pages * sizeof(struct page *), | 
 | 112 | 				      GFP_KERNEL); | 
 | 113 | 		if (likely(pcol->pages)) { | 
 | 114 | 			pcol->alloc_pages = pages; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 115 | 			return 0; | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 116 | 		} | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 117 | 	} | 
 | 118 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 119 | 	EXOFS_ERR("Failed to kmalloc expected_pages=%u\n", | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 120 | 		  pcol->expected_pages); | 
 | 121 | 	return -ENOMEM; | 
 | 122 | } | 
 | 123 |  | 
 | 124 | static void pcol_free(struct page_collect *pcol) | 
 | 125 | { | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 126 | 	kfree(pcol->pages); | 
 | 127 | 	pcol->pages = NULL; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 128 |  | 
 | 129 | 	if (pcol->ios) { | 
 | 130 | 		exofs_put_io_state(pcol->ios); | 
 | 131 | 		pcol->ios = NULL; | 
 | 132 | 	} | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 133 | } | 
 | 134 |  | 
 | 135 | static int pcol_add_page(struct page_collect *pcol, struct page *page, | 
 | 136 | 			 unsigned len) | 
 | 137 | { | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 138 | 	if (unlikely(pcol->nr_pages >= pcol->alloc_pages)) | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 139 | 		return -ENOMEM; | 
 | 140 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 141 | 	pcol->pages[pcol->nr_pages++] = page; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 142 | 	pcol->length += len; | 
 | 143 | 	return 0; | 
 | 144 | } | 
 | 145 |  | 
 | 146 | static int update_read_page(struct page *page, int ret) | 
 | 147 | { | 
 | 148 | 	if (ret == 0) { | 
 | 149 | 		/* Everything is OK */ | 
 | 150 | 		SetPageUptodate(page); | 
 | 151 | 		if (PageError(page)) | 
 | 152 | 			ClearPageError(page); | 
 | 153 | 	} else if (ret == -EFAULT) { | 
 | 154 | 		/* In this case we were trying to read something that wasn't on | 
 | 155 | 		 * disk yet - return a page full of zeroes.  This should be OK, | 
 | 156 | 		 * because the object should be empty (if there was a write | 
 | 157 | 		 * before this read, the read would be waiting with the page | 
 | 158 | 		 * locked */ | 
 | 159 | 		clear_highpage(page); | 
 | 160 |  | 
 | 161 | 		SetPageUptodate(page); | 
 | 162 | 		if (PageError(page)) | 
 | 163 | 			ClearPageError(page); | 
 | 164 | 		ret = 0; /* recovered error */ | 
 | 165 | 		EXOFS_DBGMSG("recovered read error\n"); | 
 | 166 | 	} else /* Error */ | 
 | 167 | 		SetPageError(page); | 
 | 168 |  | 
 | 169 | 	return ret; | 
 | 170 | } | 
 | 171 |  | 
 | 172 | static void update_write_page(struct page *page, int ret) | 
 | 173 | { | 
 | 174 | 	if (ret) { | 
 | 175 | 		mapping_set_error(page->mapping, ret); | 
 | 176 | 		SetPageError(page); | 
 | 177 | 	} | 
 | 178 | 	end_page_writeback(page); | 
 | 179 | } | 
 | 180 |  | 
 | 181 | /* Called at the end of reads, to optionally unlock pages and update their | 
 | 182 |  * status. | 
 | 183 |  */ | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 184 | static int __readpages_done(struct page_collect *pcol, bool do_unlock) | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 185 | { | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 186 | 	int i; | 
 | 187 | 	u64 resid; | 
 | 188 | 	u64 good_bytes; | 
 | 189 | 	u64 length = 0; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 190 | 	int ret = exofs_check_io(pcol->ios, &resid); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 191 |  | 
 | 192 | 	if (likely(!ret)) | 
 | 193 | 		good_bytes = pcol->length; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 194 | 	else | 
 | 195 | 		good_bytes = pcol->length - resid; | 
 | 196 |  | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 197 | 	EXOFS_DBGMSG2("readpages_done(0x%lx) good_bytes=0x%llx" | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 198 | 		     " length=0x%lx nr_pages=%u\n", | 
 | 199 | 		     pcol->inode->i_ino, _LLU(good_bytes), pcol->length, | 
 | 200 | 		     pcol->nr_pages); | 
 | 201 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 202 | 	for (i = 0; i < pcol->nr_pages; i++) { | 
 | 203 | 		struct page *page = pcol->pages[i]; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 204 | 		struct inode *inode = page->mapping->host; | 
 | 205 | 		int page_stat; | 
 | 206 |  | 
 | 207 | 		if (inode != pcol->inode) | 
 | 208 | 			continue; /* osd might add more pages at end */ | 
 | 209 |  | 
 | 210 | 		if (likely(length < good_bytes)) | 
 | 211 | 			page_stat = 0; | 
 | 212 | 		else | 
 | 213 | 			page_stat = ret; | 
 | 214 |  | 
| Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 215 | 		EXOFS_DBGMSG2("    readpages_done(0x%lx, 0x%lx) %s\n", | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 216 | 			  inode->i_ino, page->index, | 
 | 217 | 			  page_stat ? "bad_bytes" : "good_bytes"); | 
 | 218 |  | 
 | 219 | 		ret = update_read_page(page, page_stat); | 
 | 220 | 		if (do_unlock) | 
 | 221 | 			unlock_page(page); | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 222 | 		length += PAGE_SIZE; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 223 | 	} | 
 | 224 |  | 
 | 225 | 	pcol_free(pcol); | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 226 | 	EXOFS_DBGMSG2("readpages_done END\n"); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 227 | 	return ret; | 
 | 228 | } | 
 | 229 |  | 
 | 230 | /* callback of async reads */ | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 231 | static void readpages_done(struct exofs_io_state *ios, void *p) | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 232 | { | 
 | 233 | 	struct page_collect *pcol = p; | 
 | 234 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 235 | 	__readpages_done(pcol, true); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 236 | 	atomic_dec(&pcol->sbi->s_curr_pending); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 237 | 	kfree(pcol); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 238 | } | 
 | 239 |  | 
 | 240 | static void _unlock_pcol_pages(struct page_collect *pcol, int ret, int rw) | 
 | 241 | { | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 242 | 	int i; | 
 | 243 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 244 | 	for (i = 0; i < pcol->nr_pages; i++) { | 
 | 245 | 		struct page *page = pcol->pages[i]; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 246 |  | 
 | 247 | 		if (rw == READ) | 
 | 248 | 			update_read_page(page, ret); | 
 | 249 | 		else | 
 | 250 | 			update_write_page(page, ret); | 
 | 251 |  | 
 | 252 | 		unlock_page(page); | 
 | 253 | 	} | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 254 | } | 
 | 255 |  | 
 | 256 | static int read_exec(struct page_collect *pcol, bool is_sync) | 
 | 257 | { | 
 | 258 | 	struct exofs_i_info *oi = exofs_i(pcol->inode); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 259 | 	struct exofs_io_state *ios = pcol->ios; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 260 | 	struct page_collect *pcol_copy = NULL; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 261 | 	int ret; | 
 | 262 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 263 | 	if (!pcol->pages) | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 264 | 		return 0; | 
 | 265 |  | 
 | 266 | 	/* see comment in _readpage() about sync reads */ | 
 | 267 | 	WARN_ON(is_sync && (pcol->nr_pages != 1)); | 
 | 268 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 269 | 	ios->pages = pcol->pages; | 
 | 270 | 	ios->nr_pages = pcol->nr_pages; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 271 | 	ios->length = pcol->length; | 
 | 272 | 	ios->offset = pcol->pg_first << PAGE_CACHE_SHIFT; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 273 |  | 
 | 274 | 	if (is_sync) { | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 275 | 		exofs_oi_read(oi, pcol->ios); | 
 | 276 | 		return __readpages_done(pcol, false); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 277 | 	} | 
 | 278 |  | 
 | 279 | 	pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL); | 
 | 280 | 	if (!pcol_copy) { | 
 | 281 | 		ret = -ENOMEM; | 
 | 282 | 		goto err; | 
 | 283 | 	} | 
 | 284 |  | 
 | 285 | 	*pcol_copy = *pcol; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 286 | 	ios->done = readpages_done; | 
 | 287 | 	ios->private = pcol_copy; | 
 | 288 | 	ret = exofs_oi_read(oi, ios); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 289 | 	if (unlikely(ret)) | 
 | 290 | 		goto err; | 
 | 291 |  | 
 | 292 | 	atomic_inc(&pcol->sbi->s_curr_pending); | 
 | 293 |  | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 294 | 	EXOFS_DBGMSG2("read_exec obj=0x%llx start=0x%llx length=0x%lx\n", | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 295 | 		  ios->obj.id, _LLU(ios->offset), pcol->length); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 296 |  | 
 | 297 | 	/* pages ownership was passed to pcol_copy */ | 
 | 298 | 	_pcol_reset(pcol); | 
 | 299 | 	return 0; | 
 | 300 |  | 
 | 301 | err: | 
 | 302 | 	if (!is_sync) | 
 | 303 | 		_unlock_pcol_pages(pcol, ret, READ); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 304 |  | 
 | 305 | 	pcol_free(pcol); | 
| Boaz Harrosh | b76a3f9 | 2009-06-08 19:28:41 +0300 | [diff] [blame] | 306 |  | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 307 | 	kfree(pcol_copy); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 308 | 	return ret; | 
 | 309 | } | 
 | 310 |  | 
 | 311 | /* readpage_strip is called either directly from readpage() or by the VFS from | 
 | 312 |  * within read_cache_pages(), to add one more page to be read. It will try to | 
 | 313 |  * collect as many contiguous pages as posible. If a discontinuity is | 
 | 314 |  * encountered, or it runs out of resources, it will submit the previous segment | 
 | 315 |  * and will start a new collection. Eventually caller must submit the last | 
 | 316 |  * segment if present. | 
 | 317 |  */ | 
 | 318 | static int readpage_strip(void *data, struct page *page) | 
 | 319 | { | 
 | 320 | 	struct page_collect *pcol = data; | 
 | 321 | 	struct inode *inode = pcol->inode; | 
 | 322 | 	struct exofs_i_info *oi = exofs_i(inode); | 
 | 323 | 	loff_t i_size = i_size_read(inode); | 
 | 324 | 	pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT; | 
 | 325 | 	size_t len; | 
 | 326 | 	int ret; | 
 | 327 |  | 
 | 328 | 	/* FIXME: Just for debugging, will be removed */ | 
 | 329 | 	if (PageUptodate(page)) | 
 | 330 | 		EXOFS_ERR("PageUptodate(0x%lx, 0x%lx)\n", pcol->inode->i_ino, | 
 | 331 | 			  page->index); | 
 | 332 |  | 
 | 333 | 	if (page->index < end_index) | 
 | 334 | 		len = PAGE_CACHE_SIZE; | 
 | 335 | 	else if (page->index == end_index) | 
 | 336 | 		len = i_size & ~PAGE_CACHE_MASK; | 
 | 337 | 	else | 
 | 338 | 		len = 0; | 
 | 339 |  | 
 | 340 | 	if (!len || !obj_created(oi)) { | 
 | 341 | 		/* this will be out of bounds, or doesn't exist yet. | 
 | 342 | 		 * Current page is cleared and the request is split | 
 | 343 | 		 */ | 
 | 344 | 		clear_highpage(page); | 
 | 345 |  | 
 | 346 | 		SetPageUptodate(page); | 
 | 347 | 		if (PageError(page)) | 
 | 348 | 			ClearPageError(page); | 
 | 349 |  | 
 | 350 | 		unlock_page(page); | 
 | 351 | 		EXOFS_DBGMSG("readpage_strip(0x%lx, 0x%lx) empty page," | 
 | 352 | 			     " splitting\n", inode->i_ino, page->index); | 
 | 353 |  | 
 | 354 | 		return read_exec(pcol, false); | 
 | 355 | 	} | 
 | 356 |  | 
 | 357 | try_again: | 
 | 358 |  | 
 | 359 | 	if (unlikely(pcol->pg_first == -1)) { | 
 | 360 | 		pcol->pg_first = page->index; | 
 | 361 | 	} else if (unlikely((pcol->pg_first + pcol->nr_pages) != | 
 | 362 | 		   page->index)) { | 
 | 363 | 		/* Discontinuity detected, split the request */ | 
 | 364 | 		ret = read_exec(pcol, false); | 
 | 365 | 		if (unlikely(ret)) | 
 | 366 | 			goto fail; | 
 | 367 | 		goto try_again; | 
 | 368 | 	} | 
 | 369 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 370 | 	if (!pcol->pages) { | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 371 | 		ret = pcol_try_alloc(pcol); | 
 | 372 | 		if (unlikely(ret)) | 
 | 373 | 			goto fail; | 
 | 374 | 	} | 
 | 375 |  | 
 | 376 | 	if (len != PAGE_CACHE_SIZE) | 
 | 377 | 		zero_user(page, len, PAGE_CACHE_SIZE - len); | 
 | 378 |  | 
| Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 379 | 	EXOFS_DBGMSG2("    readpage_strip(0x%lx, 0x%lx) len=0x%zx\n", | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 380 | 		     inode->i_ino, page->index, len); | 
 | 381 |  | 
 | 382 | 	ret = pcol_add_page(pcol, page, len); | 
 | 383 | 	if (ret) { | 
| Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 384 | 		EXOFS_DBGMSG2("Failed pcol_add_page pages[i]=%p " | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 385 | 			  "this_len=0x%zx nr_pages=%u length=0x%lx\n", | 
 | 386 | 			  page, len, pcol->nr_pages, pcol->length); | 
 | 387 |  | 
 | 388 | 		/* split the request, and start again with current page */ | 
 | 389 | 		ret = read_exec(pcol, false); | 
 | 390 | 		if (unlikely(ret)) | 
 | 391 | 			goto fail; | 
 | 392 |  | 
 | 393 | 		goto try_again; | 
 | 394 | 	} | 
 | 395 |  | 
 | 396 | 	return 0; | 
 | 397 |  | 
 | 398 | fail: | 
 | 399 | 	/* SetPageError(page); ??? */ | 
 | 400 | 	unlock_page(page); | 
 | 401 | 	return ret; | 
 | 402 | } | 
 | 403 |  | 
 | 404 | static int exofs_readpages(struct file *file, struct address_space *mapping, | 
 | 405 | 			   struct list_head *pages, unsigned nr_pages) | 
 | 406 | { | 
 | 407 | 	struct page_collect pcol; | 
 | 408 | 	int ret; | 
 | 409 |  | 
 | 410 | 	_pcol_init(&pcol, nr_pages, mapping->host); | 
 | 411 |  | 
 | 412 | 	ret = read_cache_pages(mapping, pages, readpage_strip, &pcol); | 
 | 413 | 	if (ret) { | 
 | 414 | 		EXOFS_ERR("read_cache_pages => %d\n", ret); | 
 | 415 | 		return ret; | 
 | 416 | 	} | 
 | 417 |  | 
 | 418 | 	return read_exec(&pcol, false); | 
 | 419 | } | 
 | 420 |  | 
 | 421 | static int _readpage(struct page *page, bool is_sync) | 
 | 422 | { | 
 | 423 | 	struct page_collect pcol; | 
 | 424 | 	int ret; | 
 | 425 |  | 
 | 426 | 	_pcol_init(&pcol, 1, page->mapping->host); | 
 | 427 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 428 | 	/* readpage_strip might call read_exec(,is_sync==false) at several | 
 | 429 | 	 * places but not if we have a single page. | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 430 | 	 */ | 
 | 431 | 	ret = readpage_strip(&pcol, page); | 
 | 432 | 	if (ret) { | 
 | 433 | 		EXOFS_ERR("_readpage => %d\n", ret); | 
 | 434 | 		return ret; | 
 | 435 | 	} | 
 | 436 |  | 
 | 437 | 	return read_exec(&pcol, is_sync); | 
 | 438 | } | 
 | 439 |  | 
 | 440 | /* | 
 | 441 |  * We don't need the file | 
 | 442 |  */ | 
 | 443 | static int exofs_readpage(struct file *file, struct page *page) | 
 | 444 | { | 
 | 445 | 	return _readpage(page, false); | 
 | 446 | } | 
 | 447 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 448 | /* Callback for osd_write. All writes are asynchronous */ | 
 | 449 | static void writepages_done(struct exofs_io_state *ios, void *p) | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 450 | { | 
 | 451 | 	struct page_collect *pcol = p; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 452 | 	int i; | 
 | 453 | 	u64 resid; | 
 | 454 | 	u64  good_bytes; | 
 | 455 | 	u64  length = 0; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 456 | 	int ret = exofs_check_io(ios, &resid); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 457 |  | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 458 | 	atomic_dec(&pcol->sbi->s_curr_pending); | 
 | 459 |  | 
 | 460 | 	if (likely(!ret)) | 
 | 461 | 		good_bytes = pcol->length; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 462 | 	else | 
 | 463 | 		good_bytes = pcol->length - resid; | 
 | 464 |  | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 465 | 	EXOFS_DBGMSG2("writepages_done(0x%lx) good_bytes=0x%llx" | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 466 | 		     " length=0x%lx nr_pages=%u\n", | 
 | 467 | 		     pcol->inode->i_ino, _LLU(good_bytes), pcol->length, | 
 | 468 | 		     pcol->nr_pages); | 
 | 469 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 470 | 	for (i = 0; i < pcol->nr_pages; i++) { | 
 | 471 | 		struct page *page = pcol->pages[i]; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 472 | 		struct inode *inode = page->mapping->host; | 
 | 473 | 		int page_stat; | 
 | 474 |  | 
 | 475 | 		if (inode != pcol->inode) | 
 | 476 | 			continue; /* osd might add more pages to a bio */ | 
 | 477 |  | 
 | 478 | 		if (likely(length < good_bytes)) | 
 | 479 | 			page_stat = 0; | 
 | 480 | 		else | 
 | 481 | 			page_stat = ret; | 
 | 482 |  | 
 | 483 | 		update_write_page(page, page_stat); | 
 | 484 | 		unlock_page(page); | 
| Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 485 | 		EXOFS_DBGMSG2("    writepages_done(0x%lx, 0x%lx) status=%d\n", | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 486 | 			     inode->i_ino, page->index, page_stat); | 
 | 487 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 488 | 		length += PAGE_SIZE; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 489 | 	} | 
 | 490 |  | 
 | 491 | 	pcol_free(pcol); | 
 | 492 | 	kfree(pcol); | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 493 | 	EXOFS_DBGMSG2("writepages_done END\n"); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 494 | } | 
 | 495 |  | 
 | 496 | static int write_exec(struct page_collect *pcol) | 
 | 497 | { | 
 | 498 | 	struct exofs_i_info *oi = exofs_i(pcol->inode); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 499 | 	struct exofs_io_state *ios = pcol->ios; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 500 | 	struct page_collect *pcol_copy = NULL; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 501 | 	int ret; | 
 | 502 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 503 | 	if (!pcol->pages) | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 504 | 		return 0; | 
 | 505 |  | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 506 | 	pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL); | 
 | 507 | 	if (!pcol_copy) { | 
 | 508 | 		EXOFS_ERR("write_exec: Faild to kmalloc(pcol)\n"); | 
 | 509 | 		ret = -ENOMEM; | 
 | 510 | 		goto err; | 
 | 511 | 	} | 
 | 512 |  | 
 | 513 | 	*pcol_copy = *pcol; | 
 | 514 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 515 | 	ios->pages = pcol_copy->pages; | 
 | 516 | 	ios->nr_pages = pcol_copy->nr_pages; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 517 | 	ios->offset = pcol_copy->pg_first << PAGE_CACHE_SHIFT; | 
 | 518 | 	ios->length = pcol_copy->length; | 
 | 519 | 	ios->done = writepages_done; | 
 | 520 | 	ios->private = pcol_copy; | 
 | 521 |  | 
 | 522 | 	ret = exofs_oi_write(oi, ios); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 523 | 	if (unlikely(ret)) { | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 524 | 		EXOFS_ERR("write_exec: exofs_oi_write() Faild\n"); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 525 | 		goto err; | 
 | 526 | 	} | 
 | 527 |  | 
 | 528 | 	atomic_inc(&pcol->sbi->s_curr_pending); | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 529 | 	EXOFS_DBGMSG2("write_exec(0x%lx, 0x%llx) start=0x%llx length=0x%lx\n", | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 530 | 		  pcol->inode->i_ino, pcol->pg_first, _LLU(ios->offset), | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 531 | 		  pcol->length); | 
 | 532 | 	/* pages ownership was passed to pcol_copy */ | 
 | 533 | 	_pcol_reset(pcol); | 
 | 534 | 	return 0; | 
 | 535 |  | 
 | 536 | err: | 
 | 537 | 	_unlock_pcol_pages(pcol, ret, WRITE); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 538 | 	pcol_free(pcol); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 539 | 	kfree(pcol_copy); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 540 |  | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 541 | 	return ret; | 
 | 542 | } | 
 | 543 |  | 
 | 544 | /* writepage_strip is called either directly from writepage() or by the VFS from | 
 | 545 |  * within write_cache_pages(), to add one more page to be written to storage. | 
 | 546 |  * It will try to collect as many contiguous pages as possible. If a | 
 | 547 |  * discontinuity is encountered or it runs out of resources it will submit the | 
 | 548 |  * previous segment and will start a new collection. | 
 | 549 |  * Eventually caller must submit the last segment if present. | 
 | 550 |  */ | 
 | 551 | static int writepage_strip(struct page *page, | 
 | 552 | 			   struct writeback_control *wbc_unused, void *data) | 
 | 553 | { | 
 | 554 | 	struct page_collect *pcol = data; | 
 | 555 | 	struct inode *inode = pcol->inode; | 
 | 556 | 	struct exofs_i_info *oi = exofs_i(inode); | 
 | 557 | 	loff_t i_size = i_size_read(inode); | 
 | 558 | 	pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT; | 
 | 559 | 	size_t len; | 
 | 560 | 	int ret; | 
 | 561 |  | 
 | 562 | 	BUG_ON(!PageLocked(page)); | 
 | 563 |  | 
 | 564 | 	ret = wait_obj_created(oi); | 
 | 565 | 	if (unlikely(ret)) | 
 | 566 | 		goto fail; | 
 | 567 |  | 
 | 568 | 	if (page->index < end_index) | 
 | 569 | 		/* in this case, the page is within the limits of the file */ | 
 | 570 | 		len = PAGE_CACHE_SIZE; | 
 | 571 | 	else { | 
 | 572 | 		len = i_size & ~PAGE_CACHE_MASK; | 
 | 573 |  | 
 | 574 | 		if (page->index > end_index || !len) { | 
 | 575 | 			/* in this case, the page is outside the limits | 
 | 576 | 			 * (truncate in progress) | 
 | 577 | 			 */ | 
 | 578 | 			ret = write_exec(pcol); | 
 | 579 | 			if (unlikely(ret)) | 
 | 580 | 				goto fail; | 
 | 581 | 			if (PageError(page)) | 
 | 582 | 				ClearPageError(page); | 
 | 583 | 			unlock_page(page); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 584 | 			EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) " | 
 | 585 | 				     "outside the limits\n", | 
 | 586 | 				     inode->i_ino, page->index); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 587 | 			return 0; | 
 | 588 | 		} | 
 | 589 | 	} | 
 | 590 |  | 
 | 591 | try_again: | 
 | 592 |  | 
 | 593 | 	if (unlikely(pcol->pg_first == -1)) { | 
 | 594 | 		pcol->pg_first = page->index; | 
 | 595 | 	} else if (unlikely((pcol->pg_first + pcol->nr_pages) != | 
 | 596 | 		   page->index)) { | 
 | 597 | 		/* Discontinuity detected, split the request */ | 
 | 598 | 		ret = write_exec(pcol); | 
 | 599 | 		if (unlikely(ret)) | 
 | 600 | 			goto fail; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 601 |  | 
 | 602 | 		EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) Discontinuity\n", | 
 | 603 | 			     inode->i_ino, page->index); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 604 | 		goto try_again; | 
 | 605 | 	} | 
 | 606 |  | 
| Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 607 | 	if (!pcol->pages) { | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 608 | 		ret = pcol_try_alloc(pcol); | 
 | 609 | 		if (unlikely(ret)) | 
 | 610 | 			goto fail; | 
 | 611 | 	} | 
 | 612 |  | 
| Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 613 | 	EXOFS_DBGMSG2("    writepage_strip(0x%lx, 0x%lx) len=0x%zx\n", | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 614 | 		     inode->i_ino, page->index, len); | 
 | 615 |  | 
 | 616 | 	ret = pcol_add_page(pcol, page, len); | 
 | 617 | 	if (unlikely(ret)) { | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 618 | 		EXOFS_DBGMSG2("Failed pcol_add_page " | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 619 | 			     "nr_pages=%u total_length=0x%lx\n", | 
 | 620 | 			     pcol->nr_pages, pcol->length); | 
 | 621 |  | 
 | 622 | 		/* split the request, next loop will start again */ | 
 | 623 | 		ret = write_exec(pcol); | 
 | 624 | 		if (unlikely(ret)) { | 
 | 625 | 			EXOFS_DBGMSG("write_exec faild => %d", ret); | 
 | 626 | 			goto fail; | 
 | 627 | 		} | 
 | 628 |  | 
 | 629 | 		goto try_again; | 
 | 630 | 	} | 
 | 631 |  | 
 | 632 | 	BUG_ON(PageWriteback(page)); | 
 | 633 | 	set_page_writeback(page); | 
 | 634 |  | 
 | 635 | 	return 0; | 
 | 636 |  | 
 | 637 | fail: | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 638 | 	EXOFS_DBGMSG("Error: writepage_strip(0x%lx, 0x%lx)=>%d\n", | 
 | 639 | 		     inode->i_ino, page->index, ret); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 640 | 	set_bit(AS_EIO, &page->mapping->flags); | 
 | 641 | 	unlock_page(page); | 
 | 642 | 	return ret; | 
 | 643 | } | 
 | 644 |  | 
 | 645 | static int exofs_writepages(struct address_space *mapping, | 
 | 646 | 		       struct writeback_control *wbc) | 
 | 647 | { | 
 | 648 | 	struct page_collect pcol; | 
 | 649 | 	long start, end, expected_pages; | 
 | 650 | 	int ret; | 
 | 651 |  | 
 | 652 | 	start = wbc->range_start >> PAGE_CACHE_SHIFT; | 
 | 653 | 	end = (wbc->range_end == LLONG_MAX) ? | 
 | 654 | 			start + mapping->nrpages : | 
 | 655 | 			wbc->range_end >> PAGE_CACHE_SHIFT; | 
 | 656 |  | 
 | 657 | 	if (start || end) | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 658 | 		expected_pages = end - start + 1; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 659 | 	else | 
 | 660 | 		expected_pages = mapping->nrpages; | 
 | 661 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 662 | 	if (expected_pages < 32L) | 
 | 663 | 		expected_pages = 32L; | 
 | 664 |  | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 665 | 	EXOFS_DBGMSG2("inode(0x%lx) wbc->start=0x%llx wbc->end=0x%llx " | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 666 | 		     "nrpages=%lu start=0x%lx end=0x%lx expected_pages=%ld\n", | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 667 | 		     mapping->host->i_ino, wbc->range_start, wbc->range_end, | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 668 | 		     mapping->nrpages, start, end, expected_pages); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 669 |  | 
 | 670 | 	_pcol_init(&pcol, expected_pages, mapping->host); | 
 | 671 |  | 
 | 672 | 	ret = write_cache_pages(mapping, wbc, writepage_strip, &pcol); | 
 | 673 | 	if (ret) { | 
 | 674 | 		EXOFS_ERR("write_cache_pages => %d\n", ret); | 
 | 675 | 		return ret; | 
 | 676 | 	} | 
 | 677 |  | 
 | 678 | 	return write_exec(&pcol); | 
 | 679 | } | 
 | 680 |  | 
 | 681 | static int exofs_writepage(struct page *page, struct writeback_control *wbc) | 
 | 682 | { | 
 | 683 | 	struct page_collect pcol; | 
 | 684 | 	int ret; | 
 | 685 |  | 
 | 686 | 	_pcol_init(&pcol, 1, page->mapping->host); | 
 | 687 |  | 
 | 688 | 	ret = writepage_strip(page, NULL, &pcol); | 
 | 689 | 	if (ret) { | 
 | 690 | 		EXOFS_ERR("exofs_writepage => %d\n", ret); | 
 | 691 | 		return ret; | 
 | 692 | 	} | 
 | 693 |  | 
 | 694 | 	return write_exec(&pcol); | 
 | 695 | } | 
 | 696 |  | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 697 | /* i_mutex held using inode->i_size directly */ | 
 | 698 | static void _write_failed(struct inode *inode, loff_t to) | 
 | 699 | { | 
 | 700 | 	if (to > inode->i_size) | 
 | 701 | 		truncate_pagecache(inode, to, inode->i_size); | 
 | 702 | } | 
 | 703 |  | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 704 | int exofs_write_begin(struct file *file, struct address_space *mapping, | 
 | 705 | 		loff_t pos, unsigned len, unsigned flags, | 
 | 706 | 		struct page **pagep, void **fsdata) | 
 | 707 | { | 
 | 708 | 	int ret = 0; | 
 | 709 | 	struct page *page; | 
 | 710 |  | 
 | 711 | 	page = *pagep; | 
 | 712 | 	if (page == NULL) { | 
 | 713 | 		ret = simple_write_begin(file, mapping, pos, len, flags, pagep, | 
 | 714 | 					 fsdata); | 
 | 715 | 		if (ret) { | 
 | 716 | 			EXOFS_DBGMSG("simple_write_begin faild\n"); | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 717 | 			goto out; | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 718 | 		} | 
 | 719 |  | 
 | 720 | 		page = *pagep; | 
 | 721 | 	} | 
 | 722 |  | 
 | 723 | 	 /* read modify write */ | 
 | 724 | 	if (!PageUptodate(page) && (len != PAGE_CACHE_SIZE)) { | 
 | 725 | 		ret = _readpage(page, true); | 
 | 726 | 		if (ret) { | 
 | 727 | 			/*SetPageError was done by _readpage. Is it ok?*/ | 
 | 728 | 			unlock_page(page); | 
 | 729 | 			EXOFS_DBGMSG("__readpage_filler faild\n"); | 
 | 730 | 		} | 
 | 731 | 	} | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 732 | out: | 
 | 733 | 	if (unlikely(ret)) | 
 | 734 | 		_write_failed(mapping->host, pos + len); | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 735 |  | 
 | 736 | 	return ret; | 
 | 737 | } | 
 | 738 |  | 
 | 739 | static int exofs_write_begin_export(struct file *file, | 
 | 740 | 		struct address_space *mapping, | 
 | 741 | 		loff_t pos, unsigned len, unsigned flags, | 
 | 742 | 		struct page **pagep, void **fsdata) | 
 | 743 | { | 
 | 744 | 	*pagep = NULL; | 
 | 745 |  | 
 | 746 | 	return exofs_write_begin(file, mapping, pos, len, flags, pagep, | 
 | 747 | 					fsdata); | 
 | 748 | } | 
 | 749 |  | 
| Boaz Harrosh | efd124b | 2009-12-27 17:01:42 +0200 | [diff] [blame] | 750 | static int exofs_write_end(struct file *file, struct address_space *mapping, | 
 | 751 | 			loff_t pos, unsigned len, unsigned copied, | 
 | 752 | 			struct page *page, void *fsdata) | 
 | 753 | { | 
 | 754 | 	struct inode *inode = mapping->host; | 
 | 755 | 	/* According to comment in simple_write_end i_mutex is held */ | 
 | 756 | 	loff_t i_size = inode->i_size; | 
 | 757 | 	int ret; | 
 | 758 |  | 
 | 759 | 	ret = simple_write_end(file, mapping,pos, len, copied, page, fsdata); | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 760 | 	if (unlikely(ret)) | 
 | 761 | 		_write_failed(inode, pos + len); | 
 | 762 |  | 
 | 763 | 	/* TODO: once simple_write_end marks inode dirty remove */ | 
| Boaz Harrosh | efd124b | 2009-12-27 17:01:42 +0200 | [diff] [blame] | 764 | 	if (i_size != inode->i_size) | 
 | 765 | 		mark_inode_dirty(inode); | 
 | 766 | 	return ret; | 
 | 767 | } | 
 | 768 |  | 
| Boaz Harrosh | 200b070 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 769 | static int exofs_releasepage(struct page *page, gfp_t gfp) | 
 | 770 | { | 
 | 771 | 	EXOFS_DBGMSG("page 0x%lx\n", page->index); | 
 | 772 | 	WARN_ON(1); | 
| Boaz Harrosh | 85dc787 | 2010-05-31 18:55:43 +0300 | [diff] [blame] | 773 | 	return 0; | 
| Boaz Harrosh | 200b070 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 774 | } | 
 | 775 |  | 
 | 776 | static void exofs_invalidatepage(struct page *page, unsigned long offset) | 
 | 777 | { | 
| Boaz Harrosh | 85dc787 | 2010-05-31 18:55:43 +0300 | [diff] [blame] | 778 | 	EXOFS_DBGMSG("page 0x%lx offset 0x%lx\n", page->index, offset); | 
| Boaz Harrosh | 200b070 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 779 | 	WARN_ON(1); | 
| Boaz Harrosh | 200b070 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 780 | } | 
 | 781 |  | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 782 | const struct address_space_operations exofs_aops = { | 
 | 783 | 	.readpage	= exofs_readpage, | 
 | 784 | 	.readpages	= exofs_readpages, | 
 | 785 | 	.writepage	= exofs_writepage, | 
 | 786 | 	.writepages	= exofs_writepages, | 
 | 787 | 	.write_begin	= exofs_write_begin_export, | 
| Boaz Harrosh | efd124b | 2009-12-27 17:01:42 +0200 | [diff] [blame] | 788 | 	.write_end	= exofs_write_end, | 
| Boaz Harrosh | 200b070 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 789 | 	.releasepage	= exofs_releasepage, | 
 | 790 | 	.set_page_dirty	= __set_page_dirty_nobuffers, | 
 | 791 | 	.invalidatepage = exofs_invalidatepage, | 
 | 792 |  | 
 | 793 | 	/* Not implemented Yet */ | 
 | 794 | 	.bmap		= NULL, /* TODO: use osd's OSD_ACT_READ_MAP */ | 
 | 795 | 	.direct_IO	= NULL, /* TODO: Should be trivial to do */ | 
 | 796 |  | 
 | 797 | 	/* With these NULL has special meaning or default is not exported */ | 
 | 798 | 	.sync_page	= NULL, | 
 | 799 | 	.get_xip_mem	= NULL, | 
 | 800 | 	.migratepage	= NULL, | 
 | 801 | 	.launder_page	= NULL, | 
 | 802 | 	.is_partially_uptodate = NULL, | 
 | 803 | 	.error_remove_page = NULL, | 
| Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 804 | }; | 
 | 805 |  | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 806 | /****************************************************************************** | 
 | 807 |  * INODE OPERATIONS | 
 | 808 |  *****************************************************************************/ | 
 | 809 |  | 
 | 810 | /* | 
 | 811 |  * Test whether an inode is a fast symlink. | 
 | 812 |  */ | 
 | 813 | static inline int exofs_inode_is_fast_symlink(struct inode *inode) | 
 | 814 | { | 
 | 815 | 	struct exofs_i_info *oi = exofs_i(inode); | 
 | 816 |  | 
 | 817 | 	return S_ISLNK(inode->i_mode) && (oi->i_data[0] != 0); | 
 | 818 | } | 
 | 819 |  | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 820 | const struct osd_attr g_attr_logical_length = ATTR_DEF( | 
 | 821 | 	OSD_APAGE_OBJECT_INFORMATION, OSD_ATTR_OI_LOGICAL_LENGTH, 8); | 
 | 822 |  | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 823 | static int _do_truncate(struct inode *inode, loff_t newsize) | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 824 | { | 
 | 825 | 	struct exofs_i_info *oi = exofs_i(inode); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 826 | 	int ret; | 
 | 827 |  | 
 | 828 | 	inode->i_mtime = inode->i_ctime = CURRENT_TIME; | 
 | 829 |  | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 830 | 	ret = exofs_oi_truncate(oi, (u64)newsize); | 
 | 831 | 	if (likely(!ret)) | 
 | 832 | 		truncate_setsize(inode, newsize); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 833 |  | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 834 | 	EXOFS_DBGMSG("(0x%lx) size=0x%llx ret=>%d\n", | 
 | 835 | 		     inode->i_ino, newsize, ret); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 836 | 	return ret; | 
 | 837 | } | 
 | 838 |  | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 839 | /* | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 840 |  * Set inode attributes - update size attribute on OSD if needed, | 
 | 841 |  *                        otherwise just call generic functions. | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 842 |  */ | 
 | 843 | int exofs_setattr(struct dentry *dentry, struct iattr *iattr) | 
 | 844 | { | 
 | 845 | 	struct inode *inode = dentry->d_inode; | 
 | 846 | 	int error; | 
 | 847 |  | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 848 | 	/* if we are about to modify an object, and it hasn't been | 
 | 849 | 	 * created yet, wait | 
 | 850 | 	 */ | 
 | 851 | 	error = wait_obj_created(exofs_i(inode)); | 
 | 852 | 	if (unlikely(error)) | 
 | 853 | 		return error; | 
 | 854 |  | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 855 | 	error = inode_change_ok(inode, iattr); | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 856 | 	if (unlikely(error)) | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 857 | 		return error; | 
 | 858 |  | 
| Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 859 | 	if ((iattr->ia_valid & ATTR_SIZE) && | 
 | 860 | 	    iattr->ia_size != i_size_read(inode)) { | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 861 | 		error = _do_truncate(inode, iattr->ia_size); | 
 | 862 | 		if (unlikely(error)) | 
| Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 863 | 			return error; | 
 | 864 | 	} | 
 | 865 |  | 
 | 866 | 	setattr_copy(inode, iattr); | 
 | 867 | 	mark_inode_dirty(inode); | 
 | 868 | 	return 0; | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 869 | } | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 870 |  | 
| Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 871 | static const struct osd_attr g_attr_inode_file_layout = ATTR_DEF( | 
 | 872 | 	EXOFS_APAGE_FS_DATA, | 
 | 873 | 	EXOFS_ATTR_INODE_FILE_LAYOUT, | 
 | 874 | 	0); | 
 | 875 | static const struct osd_attr g_attr_inode_dir_layout = ATTR_DEF( | 
 | 876 | 	EXOFS_APAGE_FS_DATA, | 
 | 877 | 	EXOFS_ATTR_INODE_DIR_LAYOUT, | 
 | 878 | 	0); | 
 | 879 |  | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 880 | /* | 
| Boaz Harrosh | 5d952b8 | 2010-02-01 13:35:51 +0200 | [diff] [blame] | 881 |  * Read the Linux inode info from the OSD, and return it as is. In exofs the | 
 | 882 |  * inode info is in an application specific page/attribute of the osd-object. | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 883 |  */ | 
 | 884 | static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi, | 
| Boaz Harrosh | 5d952b8 | 2010-02-01 13:35:51 +0200 | [diff] [blame] | 885 | 		    struct exofs_fcb *inode) | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 886 | { | 
 | 887 | 	struct exofs_sb_info *sbi = sb->s_fs_info; | 
| Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 888 | 	struct osd_attr attrs[] = { | 
 | 889 | 		[0] = g_attr_inode_data, | 
 | 890 | 		[1] = g_attr_inode_file_layout, | 
 | 891 | 		[2] = g_attr_inode_dir_layout, | 
| Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 892 | 	}; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 893 | 	struct exofs_io_state *ios; | 
| Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 894 | 	struct exofs_on_disk_inode_layout *layout; | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 895 | 	int ret; | 
 | 896 |  | 
| Boaz Harrosh | 45d3abc | 2010-01-28 11:46:16 +0200 | [diff] [blame] | 897 | 	ret = exofs_get_io_state(&sbi->layout, &ios); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 898 | 	if (unlikely(ret)) { | 
 | 899 | 		EXOFS_ERR("%s: exofs_get_io_state failed.\n", __func__); | 
 | 900 | 		return ret; | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 901 | 	} | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 902 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 903 | 	ios->obj.id = exofs_oi_objno(oi); | 
 | 904 | 	exofs_make_credential(oi->i_cred, &ios->obj); | 
 | 905 | 	ios->cred = oi->i_cred; | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 906 |  | 
| Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 907 | 	attrs[1].len = exofs_on_disk_inode_layout_size(sbi->layout.s_numdevs); | 
 | 908 | 	attrs[2].len = exofs_on_disk_inode_layout_size(sbi->layout.s_numdevs); | 
 | 909 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 910 | 	ios->in_attr = attrs; | 
 | 911 | 	ios->in_attr_len = ARRAY_SIZE(attrs); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 912 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 913 | 	ret = exofs_sbi_read(ios); | 
| Boaz Harrosh | 96391e2 | 2010-02-09 11:43:21 +0200 | [diff] [blame] | 914 | 	if (unlikely(ret)) { | 
 | 915 | 		EXOFS_ERR("object(0x%llx) corrupted, return empty file=>%d\n", | 
 | 916 | 			  _LLU(ios->obj.id), ret); | 
 | 917 | 		memset(inode, 0, sizeof(*inode)); | 
 | 918 | 		inode->i_mode = 0040000 | (0777 & ~022); | 
 | 919 | 		/* If object is lost on target we might as well enable it's | 
 | 920 | 		 * delete. | 
 | 921 | 		 */ | 
 | 922 | 		if ((ret == -ENOENT) || (ret == -EINVAL)) | 
 | 923 | 			ret = 0; | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 924 | 		goto out; | 
| Boaz Harrosh | 96391e2 | 2010-02-09 11:43:21 +0200 | [diff] [blame] | 925 | 	} | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 926 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 927 | 	ret = extract_attr_from_ios(ios, &attrs[0]); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 928 | 	if (ret) { | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 929 | 		EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 930 | 		goto out; | 
 | 931 | 	} | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 932 | 	WARN_ON(attrs[0].len != EXOFS_INO_ATTR_SIZE); | 
 | 933 | 	memcpy(inode, attrs[0].val_ptr, EXOFS_INO_ATTR_SIZE); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 934 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 935 | 	ret = extract_attr_from_ios(ios, &attrs[1]); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 936 | 	if (ret) { | 
| Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 937 | 		EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__); | 
 | 938 | 		goto out; | 
 | 939 | 	} | 
 | 940 | 	if (attrs[1].len) { | 
 | 941 | 		layout = attrs[1].val_ptr; | 
 | 942 | 		if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) { | 
 | 943 | 			EXOFS_ERR("%s: unsupported files layout %d\n", | 
 | 944 | 				__func__, layout->gen_func); | 
 | 945 | 			ret = -ENOTSUPP; | 
 | 946 | 			goto out; | 
 | 947 | 		} | 
 | 948 | 	} | 
 | 949 |  | 
 | 950 | 	ret = extract_attr_from_ios(ios, &attrs[2]); | 
 | 951 | 	if (ret) { | 
 | 952 | 		EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__); | 
 | 953 | 		goto out; | 
 | 954 | 	} | 
 | 955 | 	if (attrs[2].len) { | 
 | 956 | 		layout = attrs[2].val_ptr; | 
 | 957 | 		if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) { | 
 | 958 | 			EXOFS_ERR("%s: unsupported meta-data layout %d\n", | 
 | 959 | 				__func__, layout->gen_func); | 
 | 960 | 			ret = -ENOTSUPP; | 
 | 961 | 			goto out; | 
 | 962 | 		} | 
 | 963 | 	} | 
 | 964 |  | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 965 | out: | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 966 | 	exofs_put_io_state(ios); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 967 | 	return ret; | 
 | 968 | } | 
 | 969 |  | 
| Boaz Harrosh | 9cfdc7a | 2009-08-04 20:40:29 +0300 | [diff] [blame] | 970 | static void __oi_init(struct exofs_i_info *oi) | 
 | 971 | { | 
 | 972 | 	init_waitqueue_head(&oi->i_wq); | 
 | 973 | 	oi->i_flags = 0; | 
 | 974 | } | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 975 | /* | 
 | 976 |  * Fill in an inode read from the OSD and set it up for use | 
 | 977 |  */ | 
 | 978 | struct inode *exofs_iget(struct super_block *sb, unsigned long ino) | 
 | 979 | { | 
 | 980 | 	struct exofs_i_info *oi; | 
 | 981 | 	struct exofs_fcb fcb; | 
 | 982 | 	struct inode *inode; | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 983 | 	int ret; | 
 | 984 |  | 
 | 985 | 	inode = iget_locked(sb, ino); | 
 | 986 | 	if (!inode) | 
 | 987 | 		return ERR_PTR(-ENOMEM); | 
 | 988 | 	if (!(inode->i_state & I_NEW)) | 
 | 989 | 		return inode; | 
 | 990 | 	oi = exofs_i(inode); | 
| Boaz Harrosh | 9cfdc7a | 2009-08-04 20:40:29 +0300 | [diff] [blame] | 991 | 	__oi_init(oi); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 992 |  | 
 | 993 | 	/* read the inode from the osd */ | 
| Boaz Harrosh | 5d952b8 | 2010-02-01 13:35:51 +0200 | [diff] [blame] | 994 | 	ret = exofs_get_inode(sb, oi, &fcb); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 995 | 	if (ret) | 
 | 996 | 		goto bad_inode; | 
 | 997 |  | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 998 | 	set_obj_created(oi); | 
 | 999 |  | 
 | 1000 | 	/* copy stuff from on-disk struct to in-memory struct */ | 
 | 1001 | 	inode->i_mode = le16_to_cpu(fcb.i_mode); | 
 | 1002 | 	inode->i_uid = le32_to_cpu(fcb.i_uid); | 
 | 1003 | 	inode->i_gid = le32_to_cpu(fcb.i_gid); | 
 | 1004 | 	inode->i_nlink = le16_to_cpu(fcb.i_links_count); | 
 | 1005 | 	inode->i_ctime.tv_sec = (signed)le32_to_cpu(fcb.i_ctime); | 
 | 1006 | 	inode->i_atime.tv_sec = (signed)le32_to_cpu(fcb.i_atime); | 
 | 1007 | 	inode->i_mtime.tv_sec = (signed)le32_to_cpu(fcb.i_mtime); | 
 | 1008 | 	inode->i_ctime.tv_nsec = | 
 | 1009 | 		inode->i_atime.tv_nsec = inode->i_mtime.tv_nsec = 0; | 
 | 1010 | 	oi->i_commit_size = le64_to_cpu(fcb.i_size); | 
 | 1011 | 	i_size_write(inode, oi->i_commit_size); | 
 | 1012 | 	inode->i_blkbits = EXOFS_BLKSHIFT; | 
 | 1013 | 	inode->i_generation = le32_to_cpu(fcb.i_generation); | 
 | 1014 |  | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1015 | 	oi->i_dir_start_lookup = 0; | 
 | 1016 |  | 
 | 1017 | 	if ((inode->i_nlink == 0) && (inode->i_mode == 0)) { | 
 | 1018 | 		ret = -ESTALE; | 
 | 1019 | 		goto bad_inode; | 
 | 1020 | 	} | 
 | 1021 |  | 
 | 1022 | 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { | 
 | 1023 | 		if (fcb.i_data[0]) | 
 | 1024 | 			inode->i_rdev = | 
 | 1025 | 				old_decode_dev(le32_to_cpu(fcb.i_data[0])); | 
 | 1026 | 		else | 
 | 1027 | 			inode->i_rdev = | 
 | 1028 | 				new_decode_dev(le32_to_cpu(fcb.i_data[1])); | 
 | 1029 | 	} else { | 
 | 1030 | 		memcpy(oi->i_data, fcb.i_data, sizeof(fcb.i_data)); | 
 | 1031 | 	} | 
 | 1032 |  | 
 | 1033 | 	if (S_ISREG(inode->i_mode)) { | 
 | 1034 | 		inode->i_op = &exofs_file_inode_operations; | 
 | 1035 | 		inode->i_fop = &exofs_file_operations; | 
 | 1036 | 		inode->i_mapping->a_ops = &exofs_aops; | 
 | 1037 | 	} else if (S_ISDIR(inode->i_mode)) { | 
 | 1038 | 		inode->i_op = &exofs_dir_inode_operations; | 
 | 1039 | 		inode->i_fop = &exofs_dir_operations; | 
 | 1040 | 		inode->i_mapping->a_ops = &exofs_aops; | 
 | 1041 | 	} else if (S_ISLNK(inode->i_mode)) { | 
 | 1042 | 		if (exofs_inode_is_fast_symlink(inode)) | 
 | 1043 | 			inode->i_op = &exofs_fast_symlink_inode_operations; | 
 | 1044 | 		else { | 
 | 1045 | 			inode->i_op = &exofs_symlink_inode_operations; | 
 | 1046 | 			inode->i_mapping->a_ops = &exofs_aops; | 
 | 1047 | 		} | 
 | 1048 | 	} else { | 
 | 1049 | 		inode->i_op = &exofs_special_inode_operations; | 
 | 1050 | 		if (fcb.i_data[0]) | 
 | 1051 | 			init_special_inode(inode, inode->i_mode, | 
 | 1052 | 			   old_decode_dev(le32_to_cpu(fcb.i_data[0]))); | 
 | 1053 | 		else | 
 | 1054 | 			init_special_inode(inode, inode->i_mode, | 
 | 1055 | 			   new_decode_dev(le32_to_cpu(fcb.i_data[1]))); | 
 | 1056 | 	} | 
 | 1057 |  | 
 | 1058 | 	unlock_new_inode(inode); | 
 | 1059 | 	return inode; | 
 | 1060 |  | 
 | 1061 | bad_inode: | 
 | 1062 | 	iget_failed(inode); | 
 | 1063 | 	return ERR_PTR(ret); | 
 | 1064 | } | 
 | 1065 |  | 
 | 1066 | int __exofs_wait_obj_created(struct exofs_i_info *oi) | 
 | 1067 | { | 
 | 1068 | 	if (!obj_created(oi)) { | 
 | 1069 | 		BUG_ON(!obj_2bcreated(oi)); | 
 | 1070 | 		wait_event(oi->i_wq, obj_created(oi)); | 
 | 1071 | 	} | 
 | 1072 | 	return unlikely(is_bad_inode(&oi->vfs_inode)) ? -EIO : 0; | 
 | 1073 | } | 
 | 1074 | /* | 
 | 1075 |  * Callback function from exofs_new_inode().  The important thing is that we | 
 | 1076 |  * set the obj_created flag so that other methods know that the object exists on | 
 | 1077 |  * the OSD. | 
 | 1078 |  */ | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1079 | static void create_done(struct exofs_io_state *ios, void *p) | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1080 | { | 
 | 1081 | 	struct inode *inode = p; | 
 | 1082 | 	struct exofs_i_info *oi = exofs_i(inode); | 
 | 1083 | 	struct exofs_sb_info *sbi = inode->i_sb->s_fs_info; | 
 | 1084 | 	int ret; | 
 | 1085 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1086 | 	ret = exofs_check_io(ios, NULL); | 
 | 1087 | 	exofs_put_io_state(ios); | 
 | 1088 |  | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1089 | 	atomic_dec(&sbi->s_curr_pending); | 
 | 1090 |  | 
 | 1091 | 	if (unlikely(ret)) { | 
 | 1092 | 		EXOFS_ERR("object=0x%llx creation faild in pid=0x%llx", | 
| Boaz Harrosh | 45d3abc | 2010-01-28 11:46:16 +0200 | [diff] [blame] | 1093 | 			  _LLU(exofs_oi_objno(oi)), _LLU(sbi->layout.s_pid)); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1094 | 		/*TODO: When FS is corrupted creation can fail, object already | 
 | 1095 | 		 * exist. Get rid of this asynchronous creation, if exist | 
 | 1096 | 		 * increment the obj counter and try the next object. Until we | 
 | 1097 | 		 * succeed. All these dangling objects will be made into lost | 
 | 1098 | 		 * files by chkfs.exofs | 
 | 1099 | 		 */ | 
 | 1100 | 	} | 
 | 1101 |  | 
 | 1102 | 	set_obj_created(oi); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1103 |  | 
 | 1104 | 	atomic_dec(&inode->i_count); | 
 | 1105 | 	wake_up(&oi->i_wq); | 
 | 1106 | } | 
 | 1107 |  | 
 | 1108 | /* | 
 | 1109 |  * Set up a new inode and create an object for it on the OSD | 
 | 1110 |  */ | 
 | 1111 | struct inode *exofs_new_inode(struct inode *dir, int mode) | 
 | 1112 | { | 
 | 1113 | 	struct super_block *sb; | 
 | 1114 | 	struct inode *inode; | 
 | 1115 | 	struct exofs_i_info *oi; | 
 | 1116 | 	struct exofs_sb_info *sbi; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1117 | 	struct exofs_io_state *ios; | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1118 | 	int ret; | 
 | 1119 |  | 
 | 1120 | 	sb = dir->i_sb; | 
 | 1121 | 	inode = new_inode(sb); | 
 | 1122 | 	if (!inode) | 
 | 1123 | 		return ERR_PTR(-ENOMEM); | 
 | 1124 |  | 
 | 1125 | 	oi = exofs_i(inode); | 
| Boaz Harrosh | 9cfdc7a | 2009-08-04 20:40:29 +0300 | [diff] [blame] | 1126 | 	__oi_init(oi); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1127 |  | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1128 | 	set_obj_2bcreated(oi); | 
 | 1129 |  | 
 | 1130 | 	sbi = sb->s_fs_info; | 
 | 1131 |  | 
 | 1132 | 	sb->s_dirt = 1; | 
| Dmitry Monakhov | e00117f | 2010-03-04 17:31:48 +0300 | [diff] [blame] | 1133 | 	inode_init_owner(inode, dir, mode); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1134 | 	inode->i_ino = sbi->s_nextid++; | 
 | 1135 | 	inode->i_blkbits = EXOFS_BLKSHIFT; | 
 | 1136 | 	inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; | 
 | 1137 | 	oi->i_commit_size = inode->i_size = 0; | 
 | 1138 | 	spin_lock(&sbi->s_next_gen_lock); | 
 | 1139 | 	inode->i_generation = sbi->s_next_generation++; | 
 | 1140 | 	spin_unlock(&sbi->s_next_gen_lock); | 
 | 1141 | 	insert_inode_hash(inode); | 
 | 1142 |  | 
 | 1143 | 	mark_inode_dirty(inode); | 
 | 1144 |  | 
| Boaz Harrosh | 45d3abc | 2010-01-28 11:46:16 +0200 | [diff] [blame] | 1145 | 	ret = exofs_get_io_state(&sbi->layout, &ios); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1146 | 	if (unlikely(ret)) { | 
 | 1147 | 		EXOFS_ERR("exofs_new_inode: exofs_get_io_state failed\n"); | 
 | 1148 | 		return ERR_PTR(ret); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1149 | 	} | 
 | 1150 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1151 | 	ios->obj.id = exofs_oi_objno(oi); | 
 | 1152 | 	exofs_make_credential(oi->i_cred, &ios->obj); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1153 |  | 
 | 1154 | 	/* increment the refcount so that the inode will still be around when we | 
 | 1155 | 	 * reach the callback | 
 | 1156 | 	 */ | 
 | 1157 | 	atomic_inc(&inode->i_count); | 
 | 1158 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1159 | 	ios->done = create_done; | 
 | 1160 | 	ios->private = inode; | 
 | 1161 | 	ios->cred = oi->i_cred; | 
 | 1162 | 	ret = exofs_sbi_create(ios); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1163 | 	if (ret) { | 
 | 1164 | 		atomic_dec(&inode->i_count); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1165 | 		exofs_put_io_state(ios); | 
 | 1166 | 		return ERR_PTR(ret); | 
| Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1167 | 	} | 
 | 1168 | 	atomic_inc(&sbi->s_curr_pending); | 
 | 1169 |  | 
 | 1170 | 	return inode; | 
 | 1171 | } | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1172 |  | 
 | 1173 | /* | 
 | 1174 |  * struct to pass two arguments to update_inode's callback | 
 | 1175 |  */ | 
 | 1176 | struct updatei_args { | 
 | 1177 | 	struct exofs_sb_info	*sbi; | 
 | 1178 | 	struct exofs_fcb	fcb; | 
 | 1179 | }; | 
 | 1180 |  | 
 | 1181 | /* | 
 | 1182 |  * Callback function from exofs_update_inode(). | 
 | 1183 |  */ | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1184 | static void updatei_done(struct exofs_io_state *ios, void *p) | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1185 | { | 
 | 1186 | 	struct updatei_args *args = p; | 
 | 1187 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1188 | 	exofs_put_io_state(ios); | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1189 |  | 
 | 1190 | 	atomic_dec(&args->sbi->s_curr_pending); | 
 | 1191 |  | 
 | 1192 | 	kfree(args); | 
 | 1193 | } | 
 | 1194 |  | 
 | 1195 | /* | 
 | 1196 |  * Write the inode to the OSD.  Just fill up the struct, and set the attribute | 
 | 1197 |  * synchronously or asynchronously depending on the do_sync flag. | 
 | 1198 |  */ | 
 | 1199 | static int exofs_update_inode(struct inode *inode, int do_sync) | 
 | 1200 | { | 
 | 1201 | 	struct exofs_i_info *oi = exofs_i(inode); | 
 | 1202 | 	struct super_block *sb = inode->i_sb; | 
 | 1203 | 	struct exofs_sb_info *sbi = sb->s_fs_info; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1204 | 	struct exofs_io_state *ios; | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1205 | 	struct osd_attr attr; | 
 | 1206 | 	struct exofs_fcb *fcb; | 
 | 1207 | 	struct updatei_args *args; | 
 | 1208 | 	int ret; | 
 | 1209 |  | 
 | 1210 | 	args = kzalloc(sizeof(*args), GFP_KERNEL); | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 1211 | 	if (!args) { | 
 | 1212 | 		EXOFS_DBGMSG("Faild kzalloc of args\n"); | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1213 | 		return -ENOMEM; | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 1214 | 	} | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1215 |  | 
 | 1216 | 	fcb = &args->fcb; | 
 | 1217 |  | 
 | 1218 | 	fcb->i_mode = cpu_to_le16(inode->i_mode); | 
 | 1219 | 	fcb->i_uid = cpu_to_le32(inode->i_uid); | 
 | 1220 | 	fcb->i_gid = cpu_to_le32(inode->i_gid); | 
 | 1221 | 	fcb->i_links_count = cpu_to_le16(inode->i_nlink); | 
 | 1222 | 	fcb->i_ctime = cpu_to_le32(inode->i_ctime.tv_sec); | 
 | 1223 | 	fcb->i_atime = cpu_to_le32(inode->i_atime.tv_sec); | 
 | 1224 | 	fcb->i_mtime = cpu_to_le32(inode->i_mtime.tv_sec); | 
 | 1225 | 	oi->i_commit_size = i_size_read(inode); | 
 | 1226 | 	fcb->i_size = cpu_to_le64(oi->i_commit_size); | 
 | 1227 | 	fcb->i_generation = cpu_to_le32(inode->i_generation); | 
 | 1228 |  | 
 | 1229 | 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { | 
 | 1230 | 		if (old_valid_dev(inode->i_rdev)) { | 
 | 1231 | 			fcb->i_data[0] = | 
 | 1232 | 				cpu_to_le32(old_encode_dev(inode->i_rdev)); | 
 | 1233 | 			fcb->i_data[1] = 0; | 
 | 1234 | 		} else { | 
 | 1235 | 			fcb->i_data[0] = 0; | 
 | 1236 | 			fcb->i_data[1] = | 
 | 1237 | 				cpu_to_le32(new_encode_dev(inode->i_rdev)); | 
 | 1238 | 			fcb->i_data[2] = 0; | 
 | 1239 | 		} | 
 | 1240 | 	} else | 
 | 1241 | 		memcpy(fcb->i_data, oi->i_data, sizeof(fcb->i_data)); | 
 | 1242 |  | 
| Boaz Harrosh | 45d3abc | 2010-01-28 11:46:16 +0200 | [diff] [blame] | 1243 | 	ret = exofs_get_io_state(&sbi->layout, &ios); | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1244 | 	if (unlikely(ret)) { | 
 | 1245 | 		EXOFS_ERR("%s: exofs_get_io_state failed.\n", __func__); | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1246 | 		goto free_args; | 
 | 1247 | 	} | 
 | 1248 |  | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1249 | 	attr = g_attr_inode_data; | 
 | 1250 | 	attr.val_ptr = fcb; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1251 | 	ios->out_attr_len = 1; | 
 | 1252 | 	ios->out_attr = &attr; | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1253 |  | 
 | 1254 | 	if (!obj_created(oi)) { | 
 | 1255 | 		EXOFS_DBGMSG("!obj_created\n"); | 
 | 1256 | 		BUG_ON(!obj_2bcreated(oi)); | 
 | 1257 | 		wait_event(oi->i_wq, obj_created(oi)); | 
 | 1258 | 		EXOFS_DBGMSG("wait_event done\n"); | 
 | 1259 | 	} | 
 | 1260 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1261 | 	if (!do_sync) { | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1262 | 		args->sbi = sbi; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1263 | 		ios->done = updatei_done; | 
 | 1264 | 		ios->private = args; | 
 | 1265 | 	} | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1266 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1267 | 	ret = exofs_oi_write(oi, ios); | 
 | 1268 | 	if (!do_sync && !ret) { | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1269 | 		atomic_inc(&sbi->s_curr_pending); | 
 | 1270 | 		goto out; /* deallocation in updatei_done */ | 
 | 1271 | 	} | 
 | 1272 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1273 | 	exofs_put_io_state(ios); | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1274 | free_args: | 
 | 1275 | 	kfree(args); | 
 | 1276 | out: | 
| Boaz Harrosh | 34ce4e7 | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 1277 | 	EXOFS_DBGMSG("(0x%lx) do_sync=%d ret=>%d\n", | 
 | 1278 | 		     inode->i_ino, do_sync, ret); | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1279 | 	return ret; | 
 | 1280 | } | 
 | 1281 |  | 
| Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 1282 | int exofs_write_inode(struct inode *inode, struct writeback_control *wbc) | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1283 | { | 
| Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 1284 | 	return exofs_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL); | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1285 | } | 
 | 1286 |  | 
 | 1287 | /* | 
 | 1288 |  * Callback function from exofs_delete_inode() - don't have much cleaning up to | 
 | 1289 |  * do. | 
 | 1290 |  */ | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1291 | static void delete_done(struct exofs_io_state *ios, void *p) | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1292 | { | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1293 | 	struct exofs_sb_info *sbi = p; | 
 | 1294 |  | 
 | 1295 | 	exofs_put_io_state(ios); | 
 | 1296 |  | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1297 | 	atomic_dec(&sbi->s_curr_pending); | 
 | 1298 | } | 
 | 1299 |  | 
 | 1300 | /* | 
 | 1301 |  * Called when the refcount of an inode reaches zero.  We remove the object | 
 | 1302 |  * from the OSD here.  We make sure the object was created before we try and | 
 | 1303 |  * delete it. | 
 | 1304 |  */ | 
| Al Viro | 4ec70c9 | 2010-06-07 11:42:26 -0400 | [diff] [blame] | 1305 | void exofs_evict_inode(struct inode *inode) | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1306 | { | 
 | 1307 | 	struct exofs_i_info *oi = exofs_i(inode); | 
 | 1308 | 	struct super_block *sb = inode->i_sb; | 
 | 1309 | 	struct exofs_sb_info *sbi = sb->s_fs_info; | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1310 | 	struct exofs_io_state *ios; | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1311 | 	int ret; | 
 | 1312 |  | 
 | 1313 | 	truncate_inode_pages(&inode->i_data, 0); | 
 | 1314 |  | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1315 | 	/* TODO: should do better here */ | 
| Al Viro | 4ec70c9 | 2010-06-07 11:42:26 -0400 | [diff] [blame] | 1316 | 	if (inode->i_nlink || is_bad_inode(inode)) | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1317 | 		goto no_delete; | 
 | 1318 |  | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1319 | 	inode->i_size = 0; | 
| Al Viro | 4ec70c9 | 2010-06-07 11:42:26 -0400 | [diff] [blame] | 1320 | 	end_writeback(inode); | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1321 |  | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1322 | 	/* if we are deleting an obj that hasn't been created yet, wait */ | 
 | 1323 | 	if (!obj_created(oi)) { | 
 | 1324 | 		BUG_ON(!obj_2bcreated(oi)); | 
 | 1325 | 		wait_event(oi->i_wq, obj_created(oi)); | 
| Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1326 | 		/* ignore the error attempt a remove anyway */ | 
 | 1327 | 	} | 
 | 1328 |  | 
 | 1329 | 	/* Now Remove the OSD objects */ | 
 | 1330 | 	ret = exofs_get_io_state(&sbi->layout, &ios); | 
 | 1331 | 	if (unlikely(ret)) { | 
 | 1332 | 		EXOFS_ERR("%s: exofs_get_io_state failed\n", __func__); | 
 | 1333 | 		return; | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1334 | 	} | 
 | 1335 |  | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1336 | 	ios->obj.id = exofs_oi_objno(oi); | 
 | 1337 | 	ios->done = delete_done; | 
 | 1338 | 	ios->private = sbi; | 
 | 1339 | 	ios->cred = oi->i_cred; | 
 | 1340 | 	ret = exofs_sbi_remove(ios); | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1341 | 	if (ret) { | 
| Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1342 | 		EXOFS_ERR("%s: exofs_sbi_remove failed\n", __func__); | 
 | 1343 | 		exofs_put_io_state(ios); | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1344 | 		return; | 
 | 1345 | 	} | 
 | 1346 | 	atomic_inc(&sbi->s_curr_pending); | 
 | 1347 |  | 
 | 1348 | 	return; | 
 | 1349 |  | 
 | 1350 | no_delete: | 
| Al Viro | 4ec70c9 | 2010-06-07 11:42:26 -0400 | [diff] [blame] | 1351 | 	end_writeback(inode); | 
| Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1352 | } |