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 |
Boaz Harrosh | aa281ac | 2014-10-19 19:38:58 +0300 | [diff] [blame] | 5 | * Boaz Harrosh <ooo@electrozaur.com> |
Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 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 | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 40 | unsigned exofs_max_io_pages(struct ore_layout *layout, |
bharrosh@panasas.com | 66cd6ca | 2010-10-07 14:28:18 -0400 | [diff] [blame] | 41 | unsigned expected_pages) |
| 42 | { |
Boaz Harrosh | be388f3 | 2012-08-02 14:59:57 +0300 | [diff] [blame] | 43 | unsigned pages = min_t(unsigned, expected_pages, |
| 44 | layout->max_io_length / PAGE_SIZE); |
bharrosh@panasas.com | 66cd6ca | 2010-10-07 14:28:18 -0400 | [diff] [blame] | 45 | |
bharrosh@panasas.com | 66cd6ca | 2010-10-07 14:28:18 -0400 | [diff] [blame] | 46 | return pages; |
| 47 | } |
| 48 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 49 | struct page_collect { |
| 50 | struct exofs_sb_info *sbi; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 51 | struct inode *inode; |
| 52 | unsigned expected_pages; |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 53 | struct ore_io_state *ios; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 54 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 55 | struct page **pages; |
| 56 | unsigned alloc_pages; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 57 | unsigned nr_pages; |
| 58 | unsigned long length; |
| 59 | loff_t pg_first; /* keep 64bit also in 32-arches */ |
Boaz Harrosh | f17b1f9 | 2010-10-07 13:37:51 -0400 | [diff] [blame] | 60 | bool read_4_write; /* This means two things: that the read is sync |
| 61 | * And the pages should not be unlocked. |
| 62 | */ |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 63 | struct page *that_locked_page; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | static void _pcol_init(struct page_collect *pcol, unsigned expected_pages, |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 67 | struct inode *inode) |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 68 | { |
| 69 | struct exofs_sb_info *sbi = inode->i_sb->s_fs_info; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 70 | |
| 71 | pcol->sbi = sbi; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 72 | pcol->inode = inode; |
| 73 | pcol->expected_pages = expected_pages; |
| 74 | |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 75 | pcol->ios = NULL; |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 76 | pcol->pages = NULL; |
| 77 | pcol->alloc_pages = 0; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 78 | pcol->nr_pages = 0; |
| 79 | pcol->length = 0; |
| 80 | pcol->pg_first = -1; |
Boaz Harrosh | f17b1f9 | 2010-10-07 13:37:51 -0400 | [diff] [blame] | 81 | pcol->read_4_write = false; |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 82 | pcol->that_locked_page = NULL; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | static void _pcol_reset(struct page_collect *pcol) |
| 86 | { |
| 87 | pcol->expected_pages -= min(pcol->nr_pages, pcol->expected_pages); |
| 88 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 89 | pcol->pages = NULL; |
| 90 | pcol->alloc_pages = 0; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 91 | pcol->nr_pages = 0; |
| 92 | pcol->length = 0; |
| 93 | pcol->pg_first = -1; |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 94 | pcol->ios = NULL; |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 95 | pcol->that_locked_page = NULL; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 96 | |
| 97 | /* this is probably the end of the loop but in writes |
| 98 | * it might not end here. don't be left with nothing |
| 99 | */ |
| 100 | if (!pcol->expected_pages) |
Boaz Harrosh | be388f3 | 2012-08-02 14:59:57 +0300 | [diff] [blame] | 101 | pcol->expected_pages = |
| 102 | exofs_max_io_pages(&pcol->sbi->layout, ~0); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | static int pcol_try_alloc(struct page_collect *pcol) |
| 106 | { |
bharrosh@panasas.com | 66cd6ca | 2010-10-07 14:28:18 -0400 | [diff] [blame] | 107 | unsigned pages; |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 108 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 109 | /* TODO: easily support bio chaining */ |
bharrosh@panasas.com | 66cd6ca | 2010-10-07 14:28:18 -0400 | [diff] [blame] | 110 | pages = exofs_max_io_pages(&pcol->sbi->layout, pcol->expected_pages); |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 111 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 112 | for (; pages; pages >>= 1) { |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 113 | pcol->pages = kmalloc(pages * sizeof(struct page *), |
| 114 | GFP_KERNEL); |
| 115 | if (likely(pcol->pages)) { |
| 116 | pcol->alloc_pages = pages; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 117 | return 0; |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 118 | } |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 119 | } |
| 120 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 121 | EXOFS_ERR("Failed to kmalloc expected_pages=%u\n", |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 122 | pcol->expected_pages); |
| 123 | return -ENOMEM; |
| 124 | } |
| 125 | |
| 126 | static void pcol_free(struct page_collect *pcol) |
| 127 | { |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 128 | kfree(pcol->pages); |
| 129 | pcol->pages = NULL; |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 130 | |
| 131 | if (pcol->ios) { |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 132 | ore_put_io_state(pcol->ios); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 133 | pcol->ios = NULL; |
| 134 | } |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | static int pcol_add_page(struct page_collect *pcol, struct page *page, |
| 138 | unsigned len) |
| 139 | { |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 140 | if (unlikely(pcol->nr_pages >= pcol->alloc_pages)) |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 141 | return -ENOMEM; |
| 142 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 143 | pcol->pages[pcol->nr_pages++] = page; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 144 | pcol->length += len; |
| 145 | return 0; |
| 146 | } |
| 147 | |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 148 | enum {PAGE_WAS_NOT_IN_IO = 17}; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 149 | static int update_read_page(struct page *page, int ret) |
| 150 | { |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 151 | switch (ret) { |
| 152 | case 0: |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 153 | /* Everything is OK */ |
| 154 | SetPageUptodate(page); |
| 155 | if (PageError(page)) |
| 156 | ClearPageError(page); |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 157 | break; |
| 158 | case -EFAULT: |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 159 | /* In this case we were trying to read something that wasn't on |
| 160 | * disk yet - return a page full of zeroes. This should be OK, |
| 161 | * because the object should be empty (if there was a write |
| 162 | * before this read, the read would be waiting with the page |
| 163 | * locked */ |
| 164 | clear_highpage(page); |
| 165 | |
| 166 | SetPageUptodate(page); |
| 167 | if (PageError(page)) |
| 168 | ClearPageError(page); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 169 | EXOFS_DBGMSG("recovered read error\n"); |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 170 | /* fall through */ |
| 171 | case PAGE_WAS_NOT_IN_IO: |
| 172 | ret = 0; /* recovered error */ |
| 173 | break; |
| 174 | default: |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 175 | SetPageError(page); |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 176 | } |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 177 | return ret; |
| 178 | } |
| 179 | |
| 180 | static void update_write_page(struct page *page, int ret) |
| 181 | { |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 182 | if (unlikely(ret == PAGE_WAS_NOT_IN_IO)) |
| 183 | return; /* don't pass start don't collect $200 */ |
| 184 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 185 | if (ret) { |
| 186 | mapping_set_error(page->mapping, ret); |
| 187 | SetPageError(page); |
| 188 | } |
| 189 | end_page_writeback(page); |
| 190 | } |
| 191 | |
| 192 | /* Called at the end of reads, to optionally unlock pages and update their |
| 193 | * status. |
| 194 | */ |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 195 | static int __readpages_done(struct page_collect *pcol) |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 196 | { |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 197 | int i; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 198 | u64 good_bytes; |
| 199 | u64 length = 0; |
Boaz Harrosh | 4b46c9f | 2011-09-28 13:25:50 +0300 | [diff] [blame] | 200 | int ret = ore_check_io(pcol->ios, NULL); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 201 | |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 202 | if (likely(!ret)) { |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 203 | good_bytes = pcol->length; |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 204 | ret = PAGE_WAS_NOT_IN_IO; |
| 205 | } else { |
Boaz Harrosh | 4b46c9f | 2011-09-28 13:25:50 +0300 | [diff] [blame] | 206 | good_bytes = 0; |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 207 | } |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 208 | |
Boaz Harrosh | 34ce4e7c | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 209 | EXOFS_DBGMSG2("readpages_done(0x%lx) good_bytes=0x%llx" |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 210 | " length=0x%lx nr_pages=%u\n", |
| 211 | pcol->inode->i_ino, _LLU(good_bytes), pcol->length, |
| 212 | pcol->nr_pages); |
| 213 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 214 | for (i = 0; i < pcol->nr_pages; i++) { |
| 215 | struct page *page = pcol->pages[i]; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 216 | struct inode *inode = page->mapping->host; |
| 217 | int page_stat; |
| 218 | |
| 219 | if (inode != pcol->inode) |
| 220 | continue; /* osd might add more pages at end */ |
| 221 | |
| 222 | if (likely(length < good_bytes)) |
| 223 | page_stat = 0; |
| 224 | else |
| 225 | page_stat = ret; |
| 226 | |
Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 227 | EXOFS_DBGMSG2(" readpages_done(0x%lx, 0x%lx) %s\n", |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 228 | inode->i_ino, page->index, |
| 229 | page_stat ? "bad_bytes" : "good_bytes"); |
| 230 | |
| 231 | ret = update_read_page(page, page_stat); |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 232 | if (!pcol->read_4_write) |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 233 | unlock_page(page); |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 234 | length += PAGE_SIZE; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | pcol_free(pcol); |
Boaz Harrosh | 34ce4e7c | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 238 | EXOFS_DBGMSG2("readpages_done END\n"); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 239 | return ret; |
| 240 | } |
| 241 | |
| 242 | /* callback of async reads */ |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 243 | static void readpages_done(struct ore_io_state *ios, void *p) |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 244 | { |
| 245 | struct page_collect *pcol = p; |
| 246 | |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 247 | __readpages_done(pcol); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 248 | atomic_dec(&pcol->sbi->s_curr_pending); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 249 | kfree(pcol); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | static void _unlock_pcol_pages(struct page_collect *pcol, int ret, int rw) |
| 253 | { |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 254 | int i; |
| 255 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 256 | for (i = 0; i < pcol->nr_pages; i++) { |
| 257 | struct page *page = pcol->pages[i]; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 258 | |
| 259 | if (rw == READ) |
| 260 | update_read_page(page, ret); |
| 261 | else |
| 262 | update_write_page(page, ret); |
| 263 | |
| 264 | unlock_page(page); |
| 265 | } |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 266 | } |
| 267 | |
Boaz Harrosh | b916c5c | 2011-09-28 11:55:51 +0300 | [diff] [blame] | 268 | static int _maybe_not_all_in_one_io(struct ore_io_state *ios, |
| 269 | struct page_collect *pcol_src, struct page_collect *pcol) |
| 270 | { |
| 271 | /* length was wrong or offset was not page aligned */ |
| 272 | BUG_ON(pcol_src->nr_pages < ios->nr_pages); |
| 273 | |
| 274 | if (pcol_src->nr_pages > ios->nr_pages) { |
| 275 | struct page **src_page; |
| 276 | unsigned pages_less = pcol_src->nr_pages - ios->nr_pages; |
| 277 | unsigned long len_less = pcol_src->length - ios->length; |
| 278 | unsigned i; |
| 279 | int ret; |
| 280 | |
| 281 | /* This IO was trimmed */ |
| 282 | pcol_src->nr_pages = ios->nr_pages; |
| 283 | pcol_src->length = ios->length; |
| 284 | |
| 285 | /* Left over pages are passed to the next io */ |
| 286 | pcol->expected_pages += pages_less; |
| 287 | pcol->nr_pages = pages_less; |
| 288 | pcol->length = len_less; |
| 289 | src_page = pcol_src->pages + pcol_src->nr_pages; |
| 290 | pcol->pg_first = (*src_page)->index; |
| 291 | |
| 292 | ret = pcol_try_alloc(pcol); |
| 293 | if (unlikely(ret)) |
| 294 | return ret; |
| 295 | |
| 296 | for (i = 0; i < pages_less; ++i) |
| 297 | pcol->pages[i] = *src_page++; |
| 298 | |
| 299 | EXOFS_DBGMSG("Length was adjusted nr_pages=0x%x " |
| 300 | "pages_less=0x%x expected_pages=0x%x " |
| 301 | "next_offset=0x%llx next_len=0x%lx\n", |
| 302 | pcol_src->nr_pages, pages_less, pcol->expected_pages, |
| 303 | pcol->pg_first * PAGE_SIZE, pcol->length); |
| 304 | } |
| 305 | return 0; |
| 306 | } |
| 307 | |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 308 | static int read_exec(struct page_collect *pcol) |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 309 | { |
| 310 | struct exofs_i_info *oi = exofs_i(pcol->inode); |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 311 | struct ore_io_state *ios; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 312 | struct page_collect *pcol_copy = NULL; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 313 | int ret; |
| 314 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 315 | if (!pcol->pages) |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 316 | return 0; |
| 317 | |
Boaz Harrosh | e1042ba | 2010-11-16 20:09:58 +0200 | [diff] [blame] | 318 | if (!pcol->ios) { |
Boaz Harrosh | 5bf696d | 2011-09-28 11:39:59 +0300 | [diff] [blame] | 319 | int ret = ore_get_rw_state(&pcol->sbi->layout, &oi->oc, true, |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 320 | pcol->pg_first << PAGE_SHIFT, |
Boaz Harrosh | e1042ba | 2010-11-16 20:09:58 +0200 | [diff] [blame] | 321 | pcol->length, &pcol->ios); |
| 322 | |
| 323 | if (ret) |
| 324 | return ret; |
| 325 | } |
| 326 | |
| 327 | ios = pcol->ios; |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 328 | ios->pages = pcol->pages; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 329 | |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 330 | if (pcol->read_4_write) { |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 331 | ore_read(pcol->ios); |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 332 | return __readpages_done(pcol); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL); |
| 336 | if (!pcol_copy) { |
| 337 | ret = -ENOMEM; |
| 338 | goto err; |
| 339 | } |
| 340 | |
| 341 | *pcol_copy = *pcol; |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 342 | ios->done = readpages_done; |
| 343 | ios->private = pcol_copy; |
Boaz Harrosh | b916c5c | 2011-09-28 11:55:51 +0300 | [diff] [blame] | 344 | |
| 345 | /* pages ownership was passed to pcol_copy */ |
| 346 | _pcol_reset(pcol); |
| 347 | |
| 348 | ret = _maybe_not_all_in_one_io(ios, pcol_copy, pcol); |
| 349 | if (unlikely(ret)) |
| 350 | goto err; |
| 351 | |
| 352 | EXOFS_DBGMSG2("read_exec(0x%lx) offset=0x%llx length=0x%llx\n", |
| 353 | pcol->inode->i_ino, _LLU(ios->offset), _LLU(ios->length)); |
| 354 | |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 355 | ret = ore_read(ios); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 356 | if (unlikely(ret)) |
| 357 | goto err; |
| 358 | |
| 359 | atomic_inc(&pcol->sbi->s_curr_pending); |
| 360 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 361 | return 0; |
| 362 | |
| 363 | err: |
Boaz Harrosh | 861d666 | 2012-11-30 16:03:31 +0200 | [diff] [blame] | 364 | if (!pcol_copy) /* Failed before ownership transfer */ |
| 365 | pcol_copy = pcol; |
| 366 | _unlock_pcol_pages(pcol_copy, ret, READ); |
| 367 | pcol_free(pcol_copy); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 368 | kfree(pcol_copy); |
Boaz Harrosh | 861d666 | 2012-11-30 16:03:31 +0200 | [diff] [blame] | 369 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 370 | return ret; |
| 371 | } |
| 372 | |
| 373 | /* readpage_strip is called either directly from readpage() or by the VFS from |
| 374 | * within read_cache_pages(), to add one more page to be read. It will try to |
| 375 | * collect as many contiguous pages as posible. If a discontinuity is |
| 376 | * encountered, or it runs out of resources, it will submit the previous segment |
| 377 | * and will start a new collection. Eventually caller must submit the last |
| 378 | * segment if present. |
| 379 | */ |
| 380 | static int readpage_strip(void *data, struct page *page) |
| 381 | { |
| 382 | struct page_collect *pcol = data; |
| 383 | struct inode *inode = pcol->inode; |
| 384 | struct exofs_i_info *oi = exofs_i(inode); |
| 385 | loff_t i_size = i_size_read(inode); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 386 | pgoff_t end_index = i_size >> PAGE_SHIFT; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 387 | size_t len; |
| 388 | int ret; |
| 389 | |
Kautuk Consul | 0e8d96d | 2012-02-20 03:46:12 -0500 | [diff] [blame] | 390 | BUG_ON(!PageLocked(page)); |
| 391 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 392 | /* FIXME: Just for debugging, will be removed */ |
| 393 | if (PageUptodate(page)) |
| 394 | EXOFS_ERR("PageUptodate(0x%lx, 0x%lx)\n", pcol->inode->i_ino, |
| 395 | page->index); |
| 396 | |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 397 | pcol->that_locked_page = page; |
| 398 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 399 | if (page->index < end_index) |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 400 | len = PAGE_SIZE; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 401 | else if (page->index == end_index) |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 402 | len = i_size & ~PAGE_MASK; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 403 | else |
| 404 | len = 0; |
| 405 | |
| 406 | if (!len || !obj_created(oi)) { |
| 407 | /* this will be out of bounds, or doesn't exist yet. |
| 408 | * Current page is cleared and the request is split |
| 409 | */ |
| 410 | clear_highpage(page); |
| 411 | |
| 412 | SetPageUptodate(page); |
| 413 | if (PageError(page)) |
| 414 | ClearPageError(page); |
| 415 | |
Boaz Harrosh | f17b1f9 | 2010-10-07 13:37:51 -0400 | [diff] [blame] | 416 | if (!pcol->read_4_write) |
| 417 | unlock_page(page); |
Boaz Harrosh | a8f1418 | 2010-11-22 18:02:45 +0200 | [diff] [blame] | 418 | EXOFS_DBGMSG("readpage_strip(0x%lx) empty page len=%zx " |
| 419 | "read_4_write=%d index=0x%lx end_index=0x%lx " |
| 420 | "splitting\n", inode->i_ino, len, |
| 421 | pcol->read_4_write, page->index, end_index); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 422 | |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 423 | return read_exec(pcol); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | try_again: |
| 427 | |
| 428 | if (unlikely(pcol->pg_first == -1)) { |
| 429 | pcol->pg_first = page->index; |
| 430 | } else if (unlikely((pcol->pg_first + pcol->nr_pages) != |
| 431 | page->index)) { |
| 432 | /* Discontinuity detected, split the request */ |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 433 | ret = read_exec(pcol); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 434 | if (unlikely(ret)) |
| 435 | goto fail; |
| 436 | goto try_again; |
| 437 | } |
| 438 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 439 | if (!pcol->pages) { |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 440 | ret = pcol_try_alloc(pcol); |
| 441 | if (unlikely(ret)) |
| 442 | goto fail; |
| 443 | } |
| 444 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 445 | if (len != PAGE_SIZE) |
| 446 | zero_user(page, len, PAGE_SIZE - len); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 447 | |
Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 448 | EXOFS_DBGMSG2(" readpage_strip(0x%lx, 0x%lx) len=0x%zx\n", |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 449 | inode->i_ino, page->index, len); |
| 450 | |
| 451 | ret = pcol_add_page(pcol, page, len); |
| 452 | if (ret) { |
Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 453 | EXOFS_DBGMSG2("Failed pcol_add_page pages[i]=%p " |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 454 | "this_len=0x%zx nr_pages=%u length=0x%lx\n", |
| 455 | page, len, pcol->nr_pages, pcol->length); |
| 456 | |
| 457 | /* split the request, and start again with current page */ |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 458 | ret = read_exec(pcol); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 459 | if (unlikely(ret)) |
| 460 | goto fail; |
| 461 | |
| 462 | goto try_again; |
| 463 | } |
| 464 | |
| 465 | return 0; |
| 466 | |
| 467 | fail: |
| 468 | /* SetPageError(page); ??? */ |
| 469 | unlock_page(page); |
| 470 | return ret; |
| 471 | } |
| 472 | |
| 473 | static int exofs_readpages(struct file *file, struct address_space *mapping, |
| 474 | struct list_head *pages, unsigned nr_pages) |
| 475 | { |
| 476 | struct page_collect pcol; |
| 477 | int ret; |
| 478 | |
| 479 | _pcol_init(&pcol, nr_pages, mapping->host); |
| 480 | |
| 481 | ret = read_cache_pages(mapping, pages, readpage_strip, &pcol); |
| 482 | if (ret) { |
| 483 | EXOFS_ERR("read_cache_pages => %d\n", ret); |
| 484 | return ret; |
| 485 | } |
| 486 | |
Boaz Harrosh | b916c5c | 2011-09-28 11:55:51 +0300 | [diff] [blame] | 487 | ret = read_exec(&pcol); |
| 488 | if (unlikely(ret)) |
| 489 | return ret; |
| 490 | |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 491 | return read_exec(&pcol); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 492 | } |
| 493 | |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 494 | static int _readpage(struct page *page, bool read_4_write) |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 495 | { |
| 496 | struct page_collect pcol; |
| 497 | int ret; |
| 498 | |
| 499 | _pcol_init(&pcol, 1, page->mapping->host); |
| 500 | |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 501 | pcol.read_4_write = read_4_write; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 502 | ret = readpage_strip(&pcol, page); |
| 503 | if (ret) { |
| 504 | EXOFS_ERR("_readpage => %d\n", ret); |
| 505 | return ret; |
| 506 | } |
| 507 | |
Boaz Harrosh | 7aebf41 | 2010-10-13 12:55:43 -0400 | [diff] [blame] | 508 | return read_exec(&pcol); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | /* |
| 512 | * We don't need the file |
| 513 | */ |
| 514 | static int exofs_readpage(struct file *file, struct page *page) |
| 515 | { |
| 516 | return _readpage(page, false); |
| 517 | } |
| 518 | |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 519 | /* Callback for osd_write. All writes are asynchronous */ |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 520 | static void writepages_done(struct ore_io_state *ios, void *p) |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 521 | { |
| 522 | struct page_collect *pcol = p; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 523 | int i; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 524 | u64 good_bytes; |
| 525 | u64 length = 0; |
Boaz Harrosh | 4b46c9f | 2011-09-28 13:25:50 +0300 | [diff] [blame] | 526 | int ret = ore_check_io(ios, NULL); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 527 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 528 | atomic_dec(&pcol->sbi->s_curr_pending); |
| 529 | |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 530 | if (likely(!ret)) { |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 531 | good_bytes = pcol->length; |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 532 | ret = PAGE_WAS_NOT_IN_IO; |
| 533 | } else { |
Boaz Harrosh | 4b46c9f | 2011-09-28 13:25:50 +0300 | [diff] [blame] | 534 | good_bytes = 0; |
Boaz Harrosh | 154a930 | 2011-08-26 21:00:32 -0700 | [diff] [blame] | 535 | } |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 536 | |
Boaz Harrosh | 34ce4e7c | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 537 | EXOFS_DBGMSG2("writepages_done(0x%lx) good_bytes=0x%llx" |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 538 | " length=0x%lx nr_pages=%u\n", |
| 539 | pcol->inode->i_ino, _LLU(good_bytes), pcol->length, |
| 540 | pcol->nr_pages); |
| 541 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 542 | for (i = 0; i < pcol->nr_pages; i++) { |
| 543 | struct page *page = pcol->pages[i]; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 544 | struct inode *inode = page->mapping->host; |
| 545 | int page_stat; |
| 546 | |
| 547 | if (inode != pcol->inode) |
| 548 | continue; /* osd might add more pages to a bio */ |
| 549 | |
| 550 | if (likely(length < good_bytes)) |
| 551 | page_stat = 0; |
| 552 | else |
| 553 | page_stat = ret; |
| 554 | |
| 555 | update_write_page(page, page_stat); |
| 556 | unlock_page(page); |
Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 557 | EXOFS_DBGMSG2(" writepages_done(0x%lx, 0x%lx) status=%d\n", |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 558 | inode->i_ino, page->index, page_stat); |
| 559 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 560 | length += PAGE_SIZE; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | pcol_free(pcol); |
| 564 | kfree(pcol); |
Boaz Harrosh | 34ce4e7c | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 565 | EXOFS_DBGMSG2("writepages_done END\n"); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 566 | } |
| 567 | |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 568 | static struct page *__r4w_get_page(void *priv, u64 offset, bool *uptodate) |
| 569 | { |
| 570 | struct page_collect *pcol = priv; |
| 571 | pgoff_t index = offset / PAGE_SIZE; |
| 572 | |
| 573 | if (!pcol->that_locked_page || |
| 574 | (pcol->that_locked_page->index != index)) { |
Boaz Harrosh | 4b74f6e | 2012-07-20 15:50:27 +0300 | [diff] [blame] | 575 | struct page *page; |
| 576 | loff_t i_size = i_size_read(pcol->inode); |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 577 | |
Boaz Harrosh | 4b74f6e | 2012-07-20 15:50:27 +0300 | [diff] [blame] | 578 | if (offset >= i_size) { |
| 579 | *uptodate = true; |
Boaz Harrosh | 19350e7 | 2014-01-14 16:26:13 +0200 | [diff] [blame] | 580 | EXOFS_DBGMSG2("offset >= i_size index=0x%lx\n", index); |
Boaz Harrosh | 4b74f6e | 2012-07-20 15:50:27 +0300 | [diff] [blame] | 581 | return ZERO_PAGE(0); |
| 582 | } |
| 583 | |
| 584 | page = find_get_page(pcol->inode->i_mapping, index); |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 585 | if (!page) { |
| 586 | page = find_or_create_page(pcol->inode->i_mapping, |
| 587 | index, GFP_NOFS); |
| 588 | if (unlikely(!page)) { |
| 589 | EXOFS_DBGMSG("grab_cache_page Failed " |
| 590 | "index=0x%llx\n", _LLU(index)); |
| 591 | return NULL; |
| 592 | } |
| 593 | unlock_page(page); |
| 594 | } |
Hugh Dickins | 3066a96 | 2015-12-11 13:40:38 -0800 | [diff] [blame] | 595 | *uptodate = PageUptodate(page); |
Boaz Harrosh | 19350e7 | 2014-01-14 16:26:13 +0200 | [diff] [blame] | 596 | EXOFS_DBGMSG2("index=0x%lx uptodate=%d\n", index, *uptodate); |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 597 | return page; |
| 598 | } else { |
Boaz Harrosh | 19350e7 | 2014-01-14 16:26:13 +0200 | [diff] [blame] | 599 | EXOFS_DBGMSG2("YES that_locked_page index=0x%lx\n", |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 600 | pcol->that_locked_page->index); |
| 601 | *uptodate = true; |
| 602 | return pcol->that_locked_page; |
| 603 | } |
| 604 | } |
| 605 | |
| 606 | static void __r4w_put_page(void *priv, struct page *page) |
| 607 | { |
| 608 | struct page_collect *pcol = priv; |
| 609 | |
Boaz Harrosh | 4b74f6e | 2012-07-20 15:50:27 +0300 | [diff] [blame] | 610 | if ((pcol->that_locked_page != page) && (ZERO_PAGE(0) != page)) { |
Boaz Harrosh | 19350e7 | 2014-01-14 16:26:13 +0200 | [diff] [blame] | 611 | EXOFS_DBGMSG2("index=0x%lx\n", page->index); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 612 | put_page(page); |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 613 | return; |
| 614 | } |
Boaz Harrosh | 19350e7 | 2014-01-14 16:26:13 +0200 | [diff] [blame] | 615 | EXOFS_DBGMSG2("that_locked_page index=0x%lx\n", |
Boaz Harrosh | 4b74f6e | 2012-07-20 15:50:27 +0300 | [diff] [blame] | 616 | ZERO_PAGE(0) == page ? -1 : page->index); |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 617 | } |
| 618 | |
| 619 | static const struct _ore_r4w_op _r4w_op = { |
| 620 | .get_page = &__r4w_get_page, |
| 621 | .put_page = &__r4w_put_page, |
| 622 | }; |
| 623 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 624 | static int write_exec(struct page_collect *pcol) |
| 625 | { |
| 626 | struct exofs_i_info *oi = exofs_i(pcol->inode); |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 627 | struct ore_io_state *ios; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 628 | struct page_collect *pcol_copy = NULL; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 629 | int ret; |
| 630 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 631 | if (!pcol->pages) |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 632 | return 0; |
| 633 | |
Boaz Harrosh | e1042ba | 2010-11-16 20:09:58 +0200 | [diff] [blame] | 634 | BUG_ON(pcol->ios); |
Boaz Harrosh | 5bf696d | 2011-09-28 11:39:59 +0300 | [diff] [blame] | 635 | ret = ore_get_rw_state(&pcol->sbi->layout, &oi->oc, false, |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 636 | pcol->pg_first << PAGE_SHIFT, |
Boaz Harrosh | e1042ba | 2010-11-16 20:09:58 +0200 | [diff] [blame] | 637 | pcol->length, &pcol->ios); |
Boaz Harrosh | e1042ba | 2010-11-16 20:09:58 +0200 | [diff] [blame] | 638 | if (unlikely(ret)) |
| 639 | goto err; |
| 640 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 641 | pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL); |
| 642 | if (!pcol_copy) { |
Joe Perches | 571f7f4 | 2010-10-21 22:17:17 -0700 | [diff] [blame] | 643 | EXOFS_ERR("write_exec: Failed to kmalloc(pcol)\n"); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 644 | ret = -ENOMEM; |
| 645 | goto err; |
| 646 | } |
| 647 | |
| 648 | *pcol_copy = *pcol; |
| 649 | |
Boaz Harrosh | e1042ba | 2010-11-16 20:09:58 +0200 | [diff] [blame] | 650 | ios = pcol->ios; |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 651 | ios->pages = pcol_copy->pages; |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 652 | ios->done = writepages_done; |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 653 | ios->r4w = &_r4w_op; |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 654 | ios->private = pcol_copy; |
| 655 | |
Boaz Harrosh | b916c5c | 2011-09-28 11:55:51 +0300 | [diff] [blame] | 656 | /* pages ownership was passed to pcol_copy */ |
| 657 | _pcol_reset(pcol); |
| 658 | |
| 659 | ret = _maybe_not_all_in_one_io(ios, pcol_copy, pcol); |
| 660 | if (unlikely(ret)) |
| 661 | goto err; |
| 662 | |
| 663 | EXOFS_DBGMSG2("write_exec(0x%lx) offset=0x%llx length=0x%llx\n", |
| 664 | pcol->inode->i_ino, _LLU(ios->offset), _LLU(ios->length)); |
| 665 | |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 666 | ret = ore_write(ios); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 667 | if (unlikely(ret)) { |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 668 | EXOFS_ERR("write_exec: ore_write() Failed\n"); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 669 | goto err; |
| 670 | } |
| 671 | |
| 672 | atomic_inc(&pcol->sbi->s_curr_pending); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 673 | return 0; |
| 674 | |
| 675 | err: |
Idan Kedar | af402ab | 2012-11-30 16:03:31 +0200 | [diff] [blame] | 676 | if (!pcol_copy) /* Failed before ownership transfer */ |
| 677 | pcol_copy = pcol; |
| 678 | _unlock_pcol_pages(pcol_copy, ret, WRITE); |
| 679 | pcol_free(pcol_copy); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 680 | kfree(pcol_copy); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 681 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 682 | return ret; |
| 683 | } |
| 684 | |
| 685 | /* writepage_strip is called either directly from writepage() or by the VFS from |
| 686 | * within write_cache_pages(), to add one more page to be written to storage. |
| 687 | * It will try to collect as many contiguous pages as possible. If a |
| 688 | * discontinuity is encountered or it runs out of resources it will submit the |
| 689 | * previous segment and will start a new collection. |
| 690 | * Eventually caller must submit the last segment if present. |
| 691 | */ |
| 692 | static int writepage_strip(struct page *page, |
| 693 | struct writeback_control *wbc_unused, void *data) |
| 694 | { |
| 695 | struct page_collect *pcol = data; |
| 696 | struct inode *inode = pcol->inode; |
| 697 | struct exofs_i_info *oi = exofs_i(inode); |
| 698 | loff_t i_size = i_size_read(inode); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 699 | pgoff_t end_index = i_size >> PAGE_SHIFT; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 700 | size_t len; |
| 701 | int ret; |
| 702 | |
| 703 | BUG_ON(!PageLocked(page)); |
| 704 | |
| 705 | ret = wait_obj_created(oi); |
| 706 | if (unlikely(ret)) |
| 707 | goto fail; |
| 708 | |
| 709 | if (page->index < end_index) |
| 710 | /* in this case, the page is within the limits of the file */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 711 | len = PAGE_SIZE; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 712 | else { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 713 | len = i_size & ~PAGE_MASK; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 714 | |
| 715 | if (page->index > end_index || !len) { |
| 716 | /* in this case, the page is outside the limits |
| 717 | * (truncate in progress) |
| 718 | */ |
| 719 | ret = write_exec(pcol); |
| 720 | if (unlikely(ret)) |
| 721 | goto fail; |
| 722 | if (PageError(page)) |
| 723 | ClearPageError(page); |
| 724 | unlock_page(page); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 725 | EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) " |
| 726 | "outside the limits\n", |
| 727 | inode->i_ino, page->index); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 728 | return 0; |
| 729 | } |
| 730 | } |
| 731 | |
| 732 | try_again: |
| 733 | |
| 734 | if (unlikely(pcol->pg_first == -1)) { |
| 735 | pcol->pg_first = page->index; |
| 736 | } else if (unlikely((pcol->pg_first + pcol->nr_pages) != |
| 737 | page->index)) { |
| 738 | /* Discontinuity detected, split the request */ |
| 739 | ret = write_exec(pcol); |
| 740 | if (unlikely(ret)) |
| 741 | goto fail; |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 742 | |
| 743 | EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) Discontinuity\n", |
| 744 | inode->i_ino, page->index); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 745 | goto try_again; |
| 746 | } |
| 747 | |
Boaz Harrosh | 86093aa | 2010-01-28 18:24:06 +0200 | [diff] [blame] | 748 | if (!pcol->pages) { |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 749 | ret = pcol_try_alloc(pcol); |
| 750 | if (unlikely(ret)) |
| 751 | goto fail; |
| 752 | } |
| 753 | |
Boaz Harrosh | fe33cc1 | 2009-11-01 18:28:14 +0200 | [diff] [blame] | 754 | EXOFS_DBGMSG2(" writepage_strip(0x%lx, 0x%lx) len=0x%zx\n", |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 755 | inode->i_ino, page->index, len); |
| 756 | |
| 757 | ret = pcol_add_page(pcol, page, len); |
| 758 | if (unlikely(ret)) { |
Boaz Harrosh | 34ce4e7c | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 759 | EXOFS_DBGMSG2("Failed pcol_add_page " |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 760 | "nr_pages=%u total_length=0x%lx\n", |
| 761 | pcol->nr_pages, pcol->length); |
| 762 | |
| 763 | /* split the request, next loop will start again */ |
| 764 | ret = write_exec(pcol); |
| 765 | if (unlikely(ret)) { |
Joe Perches | 571f7f4 | 2010-10-21 22:17:17 -0700 | [diff] [blame] | 766 | EXOFS_DBGMSG("write_exec failed => %d", ret); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 767 | goto fail; |
| 768 | } |
| 769 | |
| 770 | goto try_again; |
| 771 | } |
| 772 | |
| 773 | BUG_ON(PageWriteback(page)); |
| 774 | set_page_writeback(page); |
| 775 | |
| 776 | return 0; |
| 777 | |
| 778 | fail: |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 779 | EXOFS_DBGMSG("Error: writepage_strip(0x%lx, 0x%lx)=>%d\n", |
| 780 | inode->i_ino, page->index, ret); |
Michal Hocko | 5114a97 | 2016-10-11 13:56:01 -0700 | [diff] [blame] | 781 | mapping_set_error(page->mapping, -EIO); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 782 | unlock_page(page); |
| 783 | return ret; |
| 784 | } |
| 785 | |
| 786 | static int exofs_writepages(struct address_space *mapping, |
| 787 | struct writeback_control *wbc) |
| 788 | { |
| 789 | struct page_collect pcol; |
| 790 | long start, end, expected_pages; |
| 791 | int ret; |
| 792 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 793 | start = wbc->range_start >> PAGE_SHIFT; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 794 | end = (wbc->range_end == LLONG_MAX) ? |
| 795 | start + mapping->nrpages : |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 796 | wbc->range_end >> PAGE_SHIFT; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 797 | |
| 798 | if (start || end) |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 799 | expected_pages = end - start + 1; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 800 | else |
| 801 | expected_pages = mapping->nrpages; |
| 802 | |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 803 | if (expected_pages < 32L) |
| 804 | expected_pages = 32L; |
| 805 | |
Boaz Harrosh | 34ce4e7c | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 806 | 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] | 807 | "nrpages=%lu start=0x%lx end=0x%lx expected_pages=%ld\n", |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 808 | mapping->host->i_ino, wbc->range_start, wbc->range_end, |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 809 | mapping->nrpages, start, end, expected_pages); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 810 | |
| 811 | _pcol_init(&pcol, expected_pages, mapping->host); |
| 812 | |
| 813 | ret = write_cache_pages(mapping, wbc, writepage_strip, &pcol); |
Boaz Harrosh | b916c5c | 2011-09-28 11:55:51 +0300 | [diff] [blame] | 814 | if (unlikely(ret)) { |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 815 | EXOFS_ERR("write_cache_pages => %d\n", ret); |
| 816 | return ret; |
| 817 | } |
| 818 | |
Boaz Harrosh | b916c5c | 2011-09-28 11:55:51 +0300 | [diff] [blame] | 819 | ret = write_exec(&pcol); |
| 820 | if (unlikely(ret)) |
| 821 | return ret; |
| 822 | |
| 823 | if (wbc->sync_mode == WB_SYNC_ALL) { |
| 824 | return write_exec(&pcol); /* pump the last reminder */ |
| 825 | } else if (pcol.nr_pages) { |
| 826 | /* not SYNC let the reminder join the next writeout */ |
| 827 | unsigned i; |
| 828 | |
| 829 | for (i = 0; i < pcol.nr_pages; i++) { |
| 830 | struct page *page = pcol.pages[i]; |
| 831 | |
| 832 | end_page_writeback(page); |
| 833 | set_page_dirty(page); |
| 834 | unlock_page(page); |
| 835 | } |
| 836 | } |
| 837 | return 0; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 838 | } |
| 839 | |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 840 | /* |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 841 | static int exofs_writepage(struct page *page, struct writeback_control *wbc) |
| 842 | { |
| 843 | struct page_collect pcol; |
| 844 | int ret; |
| 845 | |
| 846 | _pcol_init(&pcol, 1, page->mapping->host); |
| 847 | |
| 848 | ret = writepage_strip(page, NULL, &pcol); |
| 849 | if (ret) { |
| 850 | EXOFS_ERR("exofs_writepage => %d\n", ret); |
| 851 | return ret; |
| 852 | } |
| 853 | |
| 854 | return write_exec(&pcol); |
| 855 | } |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 856 | */ |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 857 | /* i_mutex held using inode->i_size directly */ |
| 858 | static void _write_failed(struct inode *inode, loff_t to) |
| 859 | { |
| 860 | if (to > inode->i_size) |
Kirill A. Shutemov | 7caef26 | 2013-09-12 15:13:56 -0700 | [diff] [blame] | 861 | truncate_pagecache(inode, inode->i_size); |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 862 | } |
| 863 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 864 | int exofs_write_begin(struct file *file, struct address_space *mapping, |
| 865 | loff_t pos, unsigned len, unsigned flags, |
| 866 | struct page **pagep, void **fsdata) |
| 867 | { |
| 868 | int ret = 0; |
| 869 | struct page *page; |
| 870 | |
| 871 | page = *pagep; |
| 872 | if (page == NULL) { |
| 873 | ret = simple_write_begin(file, mapping, pos, len, flags, pagep, |
| 874 | fsdata); |
| 875 | if (ret) { |
Joe Perches | 571f7f4 | 2010-10-21 22:17:17 -0700 | [diff] [blame] | 876 | EXOFS_DBGMSG("simple_write_begin failed\n"); |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 877 | goto out; |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 878 | } |
| 879 | |
| 880 | page = *pagep; |
| 881 | } |
| 882 | |
| 883 | /* read modify write */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 884 | if (!PageUptodate(page) && (len != PAGE_SIZE)) { |
Boaz Harrosh | a8f1418 | 2010-11-22 18:02:45 +0200 | [diff] [blame] | 885 | loff_t i_size = i_size_read(mapping->host); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 886 | pgoff_t end_index = i_size >> PAGE_SHIFT; |
Boaz Harrosh | a8f1418 | 2010-11-22 18:02:45 +0200 | [diff] [blame] | 887 | size_t rlen; |
| 888 | |
| 889 | if (page->index < end_index) |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 890 | rlen = PAGE_SIZE; |
Boaz Harrosh | a8f1418 | 2010-11-22 18:02:45 +0200 | [diff] [blame] | 891 | else if (page->index == end_index) |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 892 | rlen = i_size & ~PAGE_MASK; |
Boaz Harrosh | a8f1418 | 2010-11-22 18:02:45 +0200 | [diff] [blame] | 893 | else |
| 894 | rlen = 0; |
| 895 | |
| 896 | if (!rlen) { |
| 897 | clear_highpage(page); |
| 898 | SetPageUptodate(page); |
| 899 | goto out; |
| 900 | } |
| 901 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 902 | ret = _readpage(page, true); |
| 903 | if (ret) { |
| 904 | /*SetPageError was done by _readpage. Is it ok?*/ |
| 905 | unlock_page(page); |
Boaz Harrosh | a8f1418 | 2010-11-22 18:02:45 +0200 | [diff] [blame] | 906 | EXOFS_DBGMSG("__readpage failed\n"); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 907 | } |
| 908 | } |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 909 | out: |
| 910 | if (unlikely(ret)) |
| 911 | _write_failed(mapping->host, pos + len); |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 912 | |
| 913 | return ret; |
| 914 | } |
| 915 | |
| 916 | static int exofs_write_begin_export(struct file *file, |
| 917 | struct address_space *mapping, |
| 918 | loff_t pos, unsigned len, unsigned flags, |
| 919 | struct page **pagep, void **fsdata) |
| 920 | { |
| 921 | *pagep = NULL; |
| 922 | |
| 923 | return exofs_write_begin(file, mapping, pos, len, flags, pagep, |
| 924 | fsdata); |
| 925 | } |
| 926 | |
Boaz Harrosh | efd124b | 2009-12-27 17:01:42 +0200 | [diff] [blame] | 927 | static int exofs_write_end(struct file *file, struct address_space *mapping, |
| 928 | loff_t pos, unsigned len, unsigned copied, |
| 929 | struct page *page, void *fsdata) |
| 930 | { |
| 931 | struct inode *inode = mapping->host; |
| 932 | /* According to comment in simple_write_end i_mutex is held */ |
| 933 | loff_t i_size = inode->i_size; |
| 934 | int ret; |
| 935 | |
| 936 | ret = simple_write_end(file, mapping,pos, len, copied, page, fsdata); |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 937 | if (unlikely(ret)) |
| 938 | _write_failed(inode, pos + len); |
| 939 | |
| 940 | /* TODO: once simple_write_end marks inode dirty remove */ |
Boaz Harrosh | efd124b | 2009-12-27 17:01:42 +0200 | [diff] [blame] | 941 | if (i_size != inode->i_size) |
| 942 | mark_inode_dirty(inode); |
| 943 | return ret; |
| 944 | } |
| 945 | |
Boaz Harrosh | 200b0700 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 946 | static int exofs_releasepage(struct page *page, gfp_t gfp) |
| 947 | { |
| 948 | EXOFS_DBGMSG("page 0x%lx\n", page->index); |
| 949 | WARN_ON(1); |
Boaz Harrosh | 85dc787 | 2010-05-31 18:55:43 +0300 | [diff] [blame] | 950 | return 0; |
Boaz Harrosh | 200b0700 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 951 | } |
| 952 | |
Lukas Czerner | d47992f | 2013-05-21 23:17:23 -0400 | [diff] [blame] | 953 | static void exofs_invalidatepage(struct page *page, unsigned int offset, |
| 954 | unsigned int length) |
Boaz Harrosh | 200b0700 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 955 | { |
Lukas Czerner | d47992f | 2013-05-21 23:17:23 -0400 | [diff] [blame] | 956 | EXOFS_DBGMSG("page 0x%lx offset 0x%x length 0x%x\n", |
| 957 | page->index, offset, length); |
Boaz Harrosh | 200b0700 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 958 | WARN_ON(1); |
Boaz Harrosh | 200b0700 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 959 | } |
| 960 | |
Boaz Harrosh | d83c7eb | 2014-01-13 23:45:43 +0200 | [diff] [blame] | 961 | |
| 962 | /* TODO: Should be easy enough to do proprly */ |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 963 | static ssize_t exofs_direct_IO(struct kiocb *iocb, struct iov_iter *iter) |
Boaz Harrosh | d83c7eb | 2014-01-13 23:45:43 +0200 | [diff] [blame] | 964 | { |
| 965 | return 0; |
| 966 | } |
| 967 | |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 968 | const struct address_space_operations exofs_aops = { |
| 969 | .readpage = exofs_readpage, |
| 970 | .readpages = exofs_readpages, |
Boaz Harrosh | dd29661 | 2011-10-12 15:42:07 +0200 | [diff] [blame] | 971 | .writepage = NULL, |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 972 | .writepages = exofs_writepages, |
| 973 | .write_begin = exofs_write_begin_export, |
Boaz Harrosh | efd124b | 2009-12-27 17:01:42 +0200 | [diff] [blame] | 974 | .write_end = exofs_write_end, |
Boaz Harrosh | 200b0700 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 975 | .releasepage = exofs_releasepage, |
| 976 | .set_page_dirty = __set_page_dirty_nobuffers, |
| 977 | .invalidatepage = exofs_invalidatepage, |
| 978 | |
| 979 | /* Not implemented Yet */ |
| 980 | .bmap = NULL, /* TODO: use osd's OSD_ACT_READ_MAP */ |
Boaz Harrosh | d83c7eb | 2014-01-13 23:45:43 +0200 | [diff] [blame] | 981 | .direct_IO = exofs_direct_IO, |
Boaz Harrosh | 200b0700 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 982 | |
| 983 | /* With these NULL has special meaning or default is not exported */ |
Boaz Harrosh | 200b0700 | 2010-03-22 11:23:40 +0200 | [diff] [blame] | 984 | .migratepage = NULL, |
| 985 | .launder_page = NULL, |
| 986 | .is_partially_uptodate = NULL, |
| 987 | .error_remove_page = NULL, |
Boaz Harrosh | beaec07 | 2008-10-27 19:31:34 +0200 | [diff] [blame] | 988 | }; |
| 989 | |
Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 990 | /****************************************************************************** |
| 991 | * INODE OPERATIONS |
| 992 | *****************************************************************************/ |
| 993 | |
| 994 | /* |
| 995 | * Test whether an inode is a fast symlink. |
| 996 | */ |
| 997 | static inline int exofs_inode_is_fast_symlink(struct inode *inode) |
| 998 | { |
| 999 | struct exofs_i_info *oi = exofs_i(inode); |
| 1000 | |
| 1001 | return S_ISLNK(inode->i_mode) && (oi->i_data[0] != 0); |
| 1002 | } |
| 1003 | |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1004 | static int _do_truncate(struct inode *inode, loff_t newsize) |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1005 | { |
| 1006 | struct exofs_i_info *oi = exofs_i(inode); |
Boaz Harrosh | 9e9db45 | 2011-08-05 15:06:04 -0700 | [diff] [blame] | 1007 | struct exofs_sb_info *sbi = inode->i_sb->s_fs_info; |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1008 | int ret; |
| 1009 | |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 1010 | inode->i_mtime = inode->i_ctime = current_time(inode); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1011 | |
Boaz Harrosh | 5bf696d | 2011-09-28 11:39:59 +0300 | [diff] [blame] | 1012 | ret = ore_truncate(&sbi->layout, &oi->oc, (u64)newsize); |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1013 | if (likely(!ret)) |
| 1014 | truncate_setsize(inode, newsize); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1015 | |
Boaz Harrosh | 19350e7 | 2014-01-14 16:26:13 +0200 | [diff] [blame] | 1016 | EXOFS_DBGMSG2("(0x%lx) size=0x%llx ret=>%d\n", |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1017 | inode->i_ino, newsize, ret); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1018 | return ret; |
| 1019 | } |
| 1020 | |
Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 1021 | /* |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1022 | * Set inode attributes - update size attribute on OSD if needed, |
| 1023 | * otherwise just call generic functions. |
Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 1024 | */ |
| 1025 | int exofs_setattr(struct dentry *dentry, struct iattr *iattr) |
| 1026 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1027 | struct inode *inode = d_inode(dentry); |
Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 1028 | int error; |
| 1029 | |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1030 | /* if we are about to modify an object, and it hasn't been |
| 1031 | * created yet, wait |
| 1032 | */ |
| 1033 | error = wait_obj_created(exofs_i(inode)); |
| 1034 | if (unlikely(error)) |
| 1035 | return error; |
| 1036 | |
Jan Kara | 31051c8 | 2016-05-26 16:55:18 +0200 | [diff] [blame] | 1037 | error = setattr_prepare(dentry, iattr); |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1038 | if (unlikely(error)) |
Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 1039 | return error; |
| 1040 | |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 1041 | if ((iattr->ia_valid & ATTR_SIZE) && |
| 1042 | iattr->ia_size != i_size_read(inode)) { |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1043 | error = _do_truncate(inode, iattr->ia_size); |
| 1044 | if (unlikely(error)) |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 1045 | return error; |
| 1046 | } |
| 1047 | |
| 1048 | setattr_copy(inode, iattr); |
| 1049 | mark_inode_dirty(inode); |
| 1050 | return 0; |
Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 1051 | } |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1052 | |
Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 1053 | static const struct osd_attr g_attr_inode_file_layout = ATTR_DEF( |
| 1054 | EXOFS_APAGE_FS_DATA, |
| 1055 | EXOFS_ATTR_INODE_FILE_LAYOUT, |
| 1056 | 0); |
| 1057 | static const struct osd_attr g_attr_inode_dir_layout = ATTR_DEF( |
| 1058 | EXOFS_APAGE_FS_DATA, |
| 1059 | EXOFS_ATTR_INODE_DIR_LAYOUT, |
| 1060 | 0); |
| 1061 | |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1062 | /* |
Boaz Harrosh | 5d952b8 | 2010-02-01 13:35:51 +0200 | [diff] [blame] | 1063 | * Read the Linux inode info from the OSD, and return it as is. In exofs the |
| 1064 | * 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] | 1065 | */ |
| 1066 | 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] | 1067 | struct exofs_fcb *inode) |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1068 | { |
| 1069 | struct exofs_sb_info *sbi = sb->s_fs_info; |
Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 1070 | struct osd_attr attrs[] = { |
| 1071 | [0] = g_attr_inode_data, |
| 1072 | [1] = g_attr_inode_file_layout, |
| 1073 | [2] = g_attr_inode_dir_layout, |
Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 1074 | }; |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1075 | struct ore_io_state *ios; |
Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 1076 | struct exofs_on_disk_inode_layout *layout; |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1077 | int ret; |
| 1078 | |
Boaz Harrosh | 5bf696d | 2011-09-28 11:39:59 +0300 | [diff] [blame] | 1079 | ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1080 | if (unlikely(ret)) { |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1081 | EXOFS_ERR("%s: ore_get_io_state failed.\n", __func__); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1082 | return ret; |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1083 | } |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1084 | |
Boaz Harrosh | 5bf696d | 2011-09-28 11:39:59 +0300 | [diff] [blame] | 1085 | attrs[1].len = exofs_on_disk_inode_layout_size(sbi->oc.numdevs); |
| 1086 | attrs[2].len = exofs_on_disk_inode_layout_size(sbi->oc.numdevs); |
Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 1087 | |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1088 | ios->in_attr = attrs; |
| 1089 | ios->in_attr_len = ARRAY_SIZE(attrs); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1090 | |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1091 | ret = ore_read(ios); |
Boaz Harrosh | 96391e2 | 2010-02-09 11:43:21 +0200 | [diff] [blame] | 1092 | if (unlikely(ret)) { |
| 1093 | EXOFS_ERR("object(0x%llx) corrupted, return empty file=>%d\n", |
Boaz Harrosh | 9e9db45 | 2011-08-05 15:06:04 -0700 | [diff] [blame] | 1094 | _LLU(oi->one_comp.obj.id), ret); |
Boaz Harrosh | 96391e2 | 2010-02-09 11:43:21 +0200 | [diff] [blame] | 1095 | memset(inode, 0, sizeof(*inode)); |
| 1096 | inode->i_mode = 0040000 | (0777 & ~022); |
| 1097 | /* If object is lost on target we might as well enable it's |
| 1098 | * delete. |
| 1099 | */ |
Boaz Harrosh | c8592fc | 2014-01-14 16:05:52 +0200 | [diff] [blame] | 1100 | ret = 0; |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1101 | goto out; |
Boaz Harrosh | 96391e2 | 2010-02-09 11:43:21 +0200 | [diff] [blame] | 1102 | } |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1103 | |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1104 | ret = extract_attr_from_ios(ios, &attrs[0]); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1105 | if (ret) { |
Boaz Harrosh | 19350e7 | 2014-01-14 16:26:13 +0200 | [diff] [blame] | 1106 | EXOFS_ERR("%s: extract_attr 0 of inode failed\n", __func__); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1107 | goto out; |
| 1108 | } |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1109 | WARN_ON(attrs[0].len != EXOFS_INO_ATTR_SIZE); |
| 1110 | memcpy(inode, attrs[0].val_ptr, EXOFS_INO_ATTR_SIZE); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1111 | |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1112 | ret = extract_attr_from_ios(ios, &attrs[1]); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1113 | if (ret) { |
Boaz Harrosh | 19350e7 | 2014-01-14 16:26:13 +0200 | [diff] [blame] | 1114 | EXOFS_ERR("%s: extract_attr 1 of inode failed\n", __func__); |
Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 1115 | goto out; |
| 1116 | } |
| 1117 | if (attrs[1].len) { |
| 1118 | layout = attrs[1].val_ptr; |
| 1119 | if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) { |
| 1120 | EXOFS_ERR("%s: unsupported files layout %d\n", |
| 1121 | __func__, layout->gen_func); |
| 1122 | ret = -ENOTSUPP; |
| 1123 | goto out; |
| 1124 | } |
| 1125 | } |
| 1126 | |
| 1127 | ret = extract_attr_from_ios(ios, &attrs[2]); |
| 1128 | if (ret) { |
Boaz Harrosh | 19350e7 | 2014-01-14 16:26:13 +0200 | [diff] [blame] | 1129 | EXOFS_ERR("%s: extract_attr 2 of inode failed\n", __func__); |
Boaz Harrosh | d9c740d | 2010-01-28 11:58:08 +0200 | [diff] [blame] | 1130 | goto out; |
| 1131 | } |
| 1132 | if (attrs[2].len) { |
| 1133 | layout = attrs[2].val_ptr; |
| 1134 | if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) { |
| 1135 | EXOFS_ERR("%s: unsupported meta-data layout %d\n", |
| 1136 | __func__, layout->gen_func); |
| 1137 | ret = -ENOTSUPP; |
| 1138 | goto out; |
| 1139 | } |
| 1140 | } |
| 1141 | |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1142 | out: |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1143 | ore_put_io_state(ios); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1144 | return ret; |
| 1145 | } |
| 1146 | |
Boaz Harrosh | 9cfdc7a | 2009-08-04 20:40:29 +0300 | [diff] [blame] | 1147 | static void __oi_init(struct exofs_i_info *oi) |
| 1148 | { |
| 1149 | init_waitqueue_head(&oi->i_wq); |
| 1150 | oi->i_flags = 0; |
| 1151 | } |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1152 | /* |
| 1153 | * Fill in an inode read from the OSD and set it up for use |
| 1154 | */ |
| 1155 | struct inode *exofs_iget(struct super_block *sb, unsigned long ino) |
| 1156 | { |
| 1157 | struct exofs_i_info *oi; |
| 1158 | struct exofs_fcb fcb; |
| 1159 | struct inode *inode; |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1160 | int ret; |
| 1161 | |
| 1162 | inode = iget_locked(sb, ino); |
| 1163 | if (!inode) |
| 1164 | return ERR_PTR(-ENOMEM); |
| 1165 | if (!(inode->i_state & I_NEW)) |
| 1166 | return inode; |
| 1167 | oi = exofs_i(inode); |
Boaz Harrosh | 9cfdc7a | 2009-08-04 20:40:29 +0300 | [diff] [blame] | 1168 | __oi_init(oi); |
Boaz Harrosh | 5bf696d | 2011-09-28 11:39:59 +0300 | [diff] [blame] | 1169 | exofs_init_comps(&oi->oc, &oi->one_comp, sb->s_fs_info, |
Boaz Harrosh | 9e9db45 | 2011-08-05 15:06:04 -0700 | [diff] [blame] | 1170 | exofs_oi_objno(oi)); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1171 | |
| 1172 | /* read the inode from the osd */ |
Boaz Harrosh | 5d952b8 | 2010-02-01 13:35:51 +0200 | [diff] [blame] | 1173 | ret = exofs_get_inode(sb, oi, &fcb); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1174 | if (ret) |
| 1175 | goto bad_inode; |
| 1176 | |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1177 | set_obj_created(oi); |
| 1178 | |
| 1179 | /* copy stuff from on-disk struct to in-memory struct */ |
| 1180 | inode->i_mode = le16_to_cpu(fcb.i_mode); |
Eric W. Biederman | d001b05 | 2012-02-10 11:11:19 -0800 | [diff] [blame] | 1181 | i_uid_write(inode, le32_to_cpu(fcb.i_uid)); |
| 1182 | i_gid_write(inode, le32_to_cpu(fcb.i_gid)); |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 1183 | set_nlink(inode, le16_to_cpu(fcb.i_links_count)); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1184 | inode->i_ctime.tv_sec = (signed)le32_to_cpu(fcb.i_ctime); |
| 1185 | inode->i_atime.tv_sec = (signed)le32_to_cpu(fcb.i_atime); |
| 1186 | inode->i_mtime.tv_sec = (signed)le32_to_cpu(fcb.i_mtime); |
| 1187 | inode->i_ctime.tv_nsec = |
| 1188 | inode->i_atime.tv_nsec = inode->i_mtime.tv_nsec = 0; |
| 1189 | oi->i_commit_size = le64_to_cpu(fcb.i_size); |
| 1190 | i_size_write(inode, oi->i_commit_size); |
| 1191 | inode->i_blkbits = EXOFS_BLKSHIFT; |
| 1192 | inode->i_generation = le32_to_cpu(fcb.i_generation); |
| 1193 | |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1194 | oi->i_dir_start_lookup = 0; |
| 1195 | |
| 1196 | if ((inode->i_nlink == 0) && (inode->i_mode == 0)) { |
| 1197 | ret = -ESTALE; |
| 1198 | goto bad_inode; |
| 1199 | } |
| 1200 | |
| 1201 | if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { |
| 1202 | if (fcb.i_data[0]) |
| 1203 | inode->i_rdev = |
| 1204 | old_decode_dev(le32_to_cpu(fcb.i_data[0])); |
| 1205 | else |
| 1206 | inode->i_rdev = |
| 1207 | new_decode_dev(le32_to_cpu(fcb.i_data[1])); |
| 1208 | } else { |
| 1209 | memcpy(oi->i_data, fcb.i_data, sizeof(fcb.i_data)); |
| 1210 | } |
| 1211 | |
| 1212 | if (S_ISREG(inode->i_mode)) { |
| 1213 | inode->i_op = &exofs_file_inode_operations; |
| 1214 | inode->i_fop = &exofs_file_operations; |
| 1215 | inode->i_mapping->a_ops = &exofs_aops; |
| 1216 | } else if (S_ISDIR(inode->i_mode)) { |
| 1217 | inode->i_op = &exofs_dir_inode_operations; |
| 1218 | inode->i_fop = &exofs_dir_operations; |
| 1219 | inode->i_mapping->a_ops = &exofs_aops; |
| 1220 | } else if (S_ISLNK(inode->i_mode)) { |
Al Viro | a5ef103 | 2015-05-02 10:46:42 -0400 | [diff] [blame] | 1221 | if (exofs_inode_is_fast_symlink(inode)) { |
| 1222 | inode->i_op = &simple_symlink_inode_operations; |
| 1223 | inode->i_link = (char *)oi->i_data; |
| 1224 | } else { |
| 1225 | inode->i_op = &page_symlink_inode_operations; |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 1226 | inode_nohighmem(inode); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1227 | inode->i_mapping->a_ops = &exofs_aops; |
| 1228 | } |
| 1229 | } else { |
| 1230 | inode->i_op = &exofs_special_inode_operations; |
| 1231 | if (fcb.i_data[0]) |
| 1232 | init_special_inode(inode, inode->i_mode, |
| 1233 | old_decode_dev(le32_to_cpu(fcb.i_data[0]))); |
| 1234 | else |
| 1235 | init_special_inode(inode, inode->i_mode, |
| 1236 | new_decode_dev(le32_to_cpu(fcb.i_data[1]))); |
| 1237 | } |
| 1238 | |
| 1239 | unlock_new_inode(inode); |
| 1240 | return inode; |
| 1241 | |
| 1242 | bad_inode: |
| 1243 | iget_failed(inode); |
| 1244 | return ERR_PTR(ret); |
| 1245 | } |
| 1246 | |
| 1247 | int __exofs_wait_obj_created(struct exofs_i_info *oi) |
| 1248 | { |
| 1249 | if (!obj_created(oi)) { |
Boaz Harrosh | fe2fd9e | 2010-10-16 19:14:01 +1100 | [diff] [blame] | 1250 | EXOFS_DBGMSG("!obj_created\n"); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1251 | BUG_ON(!obj_2bcreated(oi)); |
| 1252 | wait_event(oi->i_wq, obj_created(oi)); |
Boaz Harrosh | fe2fd9e | 2010-10-16 19:14:01 +1100 | [diff] [blame] | 1253 | EXOFS_DBGMSG("wait_event done\n"); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1254 | } |
| 1255 | return unlikely(is_bad_inode(&oi->vfs_inode)) ? -EIO : 0; |
| 1256 | } |
Boaz Harrosh | 1cea312 | 2011-02-03 17:53:25 +0200 | [diff] [blame] | 1257 | |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1258 | /* |
| 1259 | * Callback function from exofs_new_inode(). The important thing is that we |
| 1260 | * set the obj_created flag so that other methods know that the object exists on |
| 1261 | * the OSD. |
| 1262 | */ |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1263 | static void create_done(struct ore_io_state *ios, void *p) |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1264 | { |
| 1265 | struct inode *inode = p; |
| 1266 | struct exofs_i_info *oi = exofs_i(inode); |
| 1267 | struct exofs_sb_info *sbi = inode->i_sb->s_fs_info; |
| 1268 | int ret; |
| 1269 | |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1270 | ret = ore_check_io(ios, NULL); |
| 1271 | ore_put_io_state(ios); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1272 | |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1273 | atomic_dec(&sbi->s_curr_pending); |
| 1274 | |
| 1275 | if (unlikely(ret)) { |
Joe Perches | 571f7f4 | 2010-10-21 22:17:17 -0700 | [diff] [blame] | 1276 | EXOFS_ERR("object=0x%llx creation failed in pid=0x%llx", |
Boaz Harrosh | 9e9db45 | 2011-08-05 15:06:04 -0700 | [diff] [blame] | 1277 | _LLU(exofs_oi_objno(oi)), |
| 1278 | _LLU(oi->one_comp.obj.partition)); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1279 | /*TODO: When FS is corrupted creation can fail, object already |
| 1280 | * exist. Get rid of this asynchronous creation, if exist |
| 1281 | * increment the obj counter and try the next object. Until we |
| 1282 | * succeed. All these dangling objects will be made into lost |
| 1283 | * files by chkfs.exofs |
| 1284 | */ |
| 1285 | } |
| 1286 | |
| 1287 | set_obj_created(oi); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1288 | |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1289 | wake_up(&oi->i_wq); |
| 1290 | } |
| 1291 | |
| 1292 | /* |
| 1293 | * Set up a new inode and create an object for it on the OSD |
| 1294 | */ |
Al Viro | bef41c2 | 2011-07-26 03:07:49 -0400 | [diff] [blame] | 1295 | struct inode *exofs_new_inode(struct inode *dir, umode_t mode) |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1296 | { |
Boaz Harrosh | 9e9db45 | 2011-08-05 15:06:04 -0700 | [diff] [blame] | 1297 | struct super_block *sb = dir->i_sb; |
| 1298 | struct exofs_sb_info *sbi = sb->s_fs_info; |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1299 | struct inode *inode; |
| 1300 | struct exofs_i_info *oi; |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1301 | struct ore_io_state *ios; |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1302 | int ret; |
| 1303 | |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1304 | inode = new_inode(sb); |
| 1305 | if (!inode) |
| 1306 | return ERR_PTR(-ENOMEM); |
| 1307 | |
| 1308 | oi = exofs_i(inode); |
Boaz Harrosh | 9cfdc7a | 2009-08-04 20:40:29 +0300 | [diff] [blame] | 1309 | __oi_init(oi); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1310 | |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1311 | set_obj_2bcreated(oi); |
| 1312 | |
Dmitry Monakhov | e00117f | 2010-03-04 17:31:48 +0300 | [diff] [blame] | 1313 | inode_init_owner(inode, dir, mode); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1314 | inode->i_ino = sbi->s_nextid++; |
| 1315 | inode->i_blkbits = EXOFS_BLKSHIFT; |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 1316 | inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1317 | oi->i_commit_size = inode->i_size = 0; |
| 1318 | spin_lock(&sbi->s_next_gen_lock); |
| 1319 | inode->i_generation = sbi->s_next_generation++; |
| 1320 | spin_unlock(&sbi->s_next_gen_lock); |
| 1321 | insert_inode_hash(inode); |
| 1322 | |
Boaz Harrosh | 5bf696d | 2011-09-28 11:39:59 +0300 | [diff] [blame] | 1323 | exofs_init_comps(&oi->oc, &oi->one_comp, sb->s_fs_info, |
Boaz Harrosh | 9e9db45 | 2011-08-05 15:06:04 -0700 | [diff] [blame] | 1324 | exofs_oi_objno(oi)); |
Boaz Harrosh | 1cea312 | 2011-02-03 17:53:25 +0200 | [diff] [blame] | 1325 | exofs_sbi_write_stats(sbi); /* Make sure new sbi->s_nextid is on disk */ |
| 1326 | |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1327 | mark_inode_dirty(inode); |
| 1328 | |
Boaz Harrosh | 5bf696d | 2011-09-28 11:39:59 +0300 | [diff] [blame] | 1329 | ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1330 | if (unlikely(ret)) { |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1331 | EXOFS_ERR("exofs_new_inode: ore_get_io_state failed\n"); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1332 | return ERR_PTR(ret); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1333 | } |
| 1334 | |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1335 | ios->done = create_done; |
| 1336 | ios->private = inode; |
Boaz Harrosh | 9e9db45 | 2011-08-05 15:06:04 -0700 | [diff] [blame] | 1337 | |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1338 | ret = ore_create(ios); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1339 | if (ret) { |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1340 | ore_put_io_state(ios); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1341 | return ERR_PTR(ret); |
Boaz Harrosh | e6af00f | 2008-10-28 15:38:12 +0200 | [diff] [blame] | 1342 | } |
| 1343 | atomic_inc(&sbi->s_curr_pending); |
| 1344 | |
| 1345 | return inode; |
| 1346 | } |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1347 | |
| 1348 | /* |
| 1349 | * struct to pass two arguments to update_inode's callback |
| 1350 | */ |
| 1351 | struct updatei_args { |
| 1352 | struct exofs_sb_info *sbi; |
| 1353 | struct exofs_fcb fcb; |
| 1354 | }; |
| 1355 | |
| 1356 | /* |
| 1357 | * Callback function from exofs_update_inode(). |
| 1358 | */ |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1359 | static void updatei_done(struct ore_io_state *ios, void *p) |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1360 | { |
| 1361 | struct updatei_args *args = p; |
| 1362 | |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1363 | ore_put_io_state(ios); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1364 | |
| 1365 | atomic_dec(&args->sbi->s_curr_pending); |
| 1366 | |
| 1367 | kfree(args); |
| 1368 | } |
| 1369 | |
| 1370 | /* |
| 1371 | * Write the inode to the OSD. Just fill up the struct, and set the attribute |
| 1372 | * synchronously or asynchronously depending on the do_sync flag. |
| 1373 | */ |
| 1374 | static int exofs_update_inode(struct inode *inode, int do_sync) |
| 1375 | { |
| 1376 | struct exofs_i_info *oi = exofs_i(inode); |
| 1377 | struct super_block *sb = inode->i_sb; |
| 1378 | struct exofs_sb_info *sbi = sb->s_fs_info; |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1379 | struct ore_io_state *ios; |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1380 | struct osd_attr attr; |
| 1381 | struct exofs_fcb *fcb; |
| 1382 | struct updatei_args *args; |
| 1383 | int ret; |
| 1384 | |
| 1385 | args = kzalloc(sizeof(*args), GFP_KERNEL); |
Boaz Harrosh | 34ce4e7c | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 1386 | if (!args) { |
Joe Perches | 571f7f4 | 2010-10-21 22:17:17 -0700 | [diff] [blame] | 1387 | EXOFS_DBGMSG("Failed kzalloc of args\n"); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1388 | return -ENOMEM; |
Boaz Harrosh | 34ce4e7c | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 1389 | } |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1390 | |
| 1391 | fcb = &args->fcb; |
| 1392 | |
| 1393 | fcb->i_mode = cpu_to_le16(inode->i_mode); |
Eric W. Biederman | d001b05 | 2012-02-10 11:11:19 -0800 | [diff] [blame] | 1394 | fcb->i_uid = cpu_to_le32(i_uid_read(inode)); |
| 1395 | fcb->i_gid = cpu_to_le32(i_gid_read(inode)); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1396 | fcb->i_links_count = cpu_to_le16(inode->i_nlink); |
| 1397 | fcb->i_ctime = cpu_to_le32(inode->i_ctime.tv_sec); |
| 1398 | fcb->i_atime = cpu_to_le32(inode->i_atime.tv_sec); |
| 1399 | fcb->i_mtime = cpu_to_le32(inode->i_mtime.tv_sec); |
| 1400 | oi->i_commit_size = i_size_read(inode); |
| 1401 | fcb->i_size = cpu_to_le64(oi->i_commit_size); |
| 1402 | fcb->i_generation = cpu_to_le32(inode->i_generation); |
| 1403 | |
| 1404 | if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { |
| 1405 | if (old_valid_dev(inode->i_rdev)) { |
| 1406 | fcb->i_data[0] = |
| 1407 | cpu_to_le32(old_encode_dev(inode->i_rdev)); |
| 1408 | fcb->i_data[1] = 0; |
| 1409 | } else { |
| 1410 | fcb->i_data[0] = 0; |
| 1411 | fcb->i_data[1] = |
| 1412 | cpu_to_le32(new_encode_dev(inode->i_rdev)); |
| 1413 | fcb->i_data[2] = 0; |
| 1414 | } |
| 1415 | } else |
| 1416 | memcpy(fcb->i_data, oi->i_data, sizeof(fcb->i_data)); |
| 1417 | |
Boaz Harrosh | 5bf696d | 2011-09-28 11:39:59 +0300 | [diff] [blame] | 1418 | ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1419 | if (unlikely(ret)) { |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1420 | EXOFS_ERR("%s: ore_get_io_state failed.\n", __func__); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1421 | goto free_args; |
| 1422 | } |
| 1423 | |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1424 | attr = g_attr_inode_data; |
| 1425 | attr.val_ptr = fcb; |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1426 | ios->out_attr_len = 1; |
| 1427 | ios->out_attr = &attr; |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1428 | |
Boaz Harrosh | fe2fd9e | 2010-10-16 19:14:01 +1100 | [diff] [blame] | 1429 | wait_obj_created(oi); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1430 | |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1431 | if (!do_sync) { |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1432 | args->sbi = sbi; |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1433 | ios->done = updatei_done; |
| 1434 | ios->private = args; |
| 1435 | } |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1436 | |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1437 | ret = ore_write(ios); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1438 | if (!do_sync && !ret) { |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1439 | atomic_inc(&sbi->s_curr_pending); |
| 1440 | goto out; /* deallocation in updatei_done */ |
| 1441 | } |
| 1442 | |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1443 | ore_put_io_state(ios); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1444 | free_args: |
| 1445 | kfree(args); |
| 1446 | out: |
Boaz Harrosh | 34ce4e7c | 2009-12-15 19:34:17 +0200 | [diff] [blame] | 1447 | EXOFS_DBGMSG("(0x%lx) do_sync=%d ret=>%d\n", |
| 1448 | inode->i_ino, do_sync, ret); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1449 | return ret; |
| 1450 | } |
| 1451 | |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 1452 | int exofs_write_inode(struct inode *inode, struct writeback_control *wbc) |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1453 | { |
Nick Piggin | 97178b7 | 2010-11-25 12:47:15 +0200 | [diff] [blame] | 1454 | /* FIXME: fix fsync and use wbc->sync_mode == WB_SYNC_ALL */ |
| 1455 | return exofs_update_inode(inode, 1); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1456 | } |
| 1457 | |
| 1458 | /* |
| 1459 | * Callback function from exofs_delete_inode() - don't have much cleaning up to |
| 1460 | * do. |
| 1461 | */ |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1462 | static void delete_done(struct ore_io_state *ios, void *p) |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1463 | { |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1464 | struct exofs_sb_info *sbi = p; |
| 1465 | |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1466 | ore_put_io_state(ios); |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1467 | |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1468 | atomic_dec(&sbi->s_curr_pending); |
| 1469 | } |
| 1470 | |
| 1471 | /* |
| 1472 | * Called when the refcount of an inode reaches zero. We remove the object |
| 1473 | * from the OSD here. We make sure the object was created before we try and |
| 1474 | * delete it. |
| 1475 | */ |
Al Viro | 4ec70c9 | 2010-06-07 11:42:26 -0400 | [diff] [blame] | 1476 | void exofs_evict_inode(struct inode *inode) |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1477 | { |
| 1478 | struct exofs_i_info *oi = exofs_i(inode); |
| 1479 | struct super_block *sb = inode->i_sb; |
| 1480 | struct exofs_sb_info *sbi = sb->s_fs_info; |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1481 | struct ore_io_state *ios; |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1482 | int ret; |
| 1483 | |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 1484 | truncate_inode_pages_final(&inode->i_data); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1485 | |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1486 | /* TODO: should do better here */ |
Al Viro | 4ec70c9 | 2010-06-07 11:42:26 -0400 | [diff] [blame] | 1487 | if (inode->i_nlink || is_bad_inode(inode)) |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1488 | goto no_delete; |
| 1489 | |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1490 | inode->i_size = 0; |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 1491 | clear_inode(inode); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1492 | |
Boaz Harrosh | fe2fd9e | 2010-10-16 19:14:01 +1100 | [diff] [blame] | 1493 | /* if we are deleting an obj that hasn't been created yet, wait. |
| 1494 | * This also makes sure that create_done cannot be called with an |
| 1495 | * already evicted inode. |
| 1496 | */ |
| 1497 | wait_obj_created(oi); |
| 1498 | /* ignore the error, attempt a remove anyway */ |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1499 | |
| 1500 | /* Now Remove the OSD objects */ |
Boaz Harrosh | 5bf696d | 2011-09-28 11:39:59 +0300 | [diff] [blame] | 1501 | ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios); |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1502 | if (unlikely(ret)) { |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1503 | EXOFS_ERR("%s: ore_get_io_state failed\n", __func__); |
Boaz Harrosh | 2f246fd | 2010-06-09 18:23:18 +0300 | [diff] [blame] | 1504 | return; |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1505 | } |
| 1506 | |
Boaz Harrosh | 06886a5 | 2009-11-08 14:54:08 +0200 | [diff] [blame] | 1507 | ios->done = delete_done; |
| 1508 | ios->private = sbi; |
Boaz Harrosh | 9e9db45 | 2011-08-05 15:06:04 -0700 | [diff] [blame] | 1509 | |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1510 | ret = ore_remove(ios); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1511 | if (ret) { |
Boaz Harrosh | 8ff660a | 2011-08-06 19:26:31 -0700 | [diff] [blame] | 1512 | EXOFS_ERR("%s: ore_remove failed\n", __func__); |
| 1513 | ore_put_io_state(ios); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1514 | return; |
| 1515 | } |
| 1516 | atomic_inc(&sbi->s_curr_pending); |
| 1517 | |
| 1518 | return; |
| 1519 | |
| 1520 | no_delete: |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 1521 | clear_inode(inode); |
Boaz Harrosh | ba9e5e9 | 2008-10-28 16:11:41 +0200 | [diff] [blame] | 1522 | } |