libceph: define ceph_decode_pgid() only once
[deliverable/linux.git] / fs / ceph / addr.c
CommitLineData
3d14c5d2 1#include <linux/ceph/ceph_debug.h>
1d3576fd
SW
2
3#include <linux/backing-dev.h>
4#include <linux/fs.h>
5#include <linux/mm.h>
6#include <linux/pagemap.h>
7#include <linux/writeback.h> /* generic_writepages */
5a0e3ad6 8#include <linux/slab.h>
1d3576fd
SW
9#include <linux/pagevec.h>
10#include <linux/task_io_accounting_ops.h>
11
12#include "super.h"
3d14c5d2
YS
13#include "mds_client.h"
14#include <linux/ceph/osd_client.h>
1d3576fd
SW
15
16/*
17 * Ceph address space ops.
18 *
19 * There are a few funny things going on here.
20 *
21 * The page->private field is used to reference a struct
22 * ceph_snap_context for _every_ dirty page. This indicates which
23 * snapshot the page was logically dirtied in, and thus which snap
24 * context needs to be associated with the osd write during writeback.
25 *
26 * Similarly, struct ceph_inode_info maintains a set of counters to
25985edc 27 * count dirty pages on the inode. In the absence of snapshots,
1d3576fd
SW
28 * i_wrbuffer_ref == i_wrbuffer_ref_head == the dirty page count.
29 *
30 * When a snapshot is taken (that is, when the client receives
31 * notification that a snapshot was taken), each inode with caps and
32 * with dirty pages (dirty pages implies there is a cap) gets a new
33 * ceph_cap_snap in the i_cap_snaps list (which is sorted in ascending
34 * order, new snaps go to the tail). The i_wrbuffer_ref_head count is
35 * moved to capsnap->dirty. (Unless a sync write is currently in
36 * progress. In that case, the capsnap is said to be "pending", new
37 * writes cannot start, and the capsnap isn't "finalized" until the
38 * write completes (or fails) and a final size/mtime for the inode for
39 * that snap can be settled upon.) i_wrbuffer_ref_head is reset to 0.
40 *
41 * On writeback, we must submit writes to the osd IN SNAP ORDER. So,
42 * we look for the first capsnap in i_cap_snaps and write out pages in
43 * that snap context _only_. Then we move on to the next capsnap,
44 * eventually reaching the "live" or "head" context (i.e., pages that
45 * are not yet snapped) and are writing the most recently dirtied
46 * pages.
47 *
48 * Invalidate and so forth must take care to ensure the dirty page
49 * accounting is preserved.
50 */
51
2baba250
YS
52#define CONGESTION_ON_THRESH(congestion_kb) (congestion_kb >> (PAGE_SHIFT-10))
53#define CONGESTION_OFF_THRESH(congestion_kb) \
54 (CONGESTION_ON_THRESH(congestion_kb) - \
55 (CONGESTION_ON_THRESH(congestion_kb) >> 2))
56
61600ef8
YZ
57static inline struct ceph_snap_context *page_snap_context(struct page *page)
58{
59 if (PagePrivate(page))
60 return (void *)page->private;
61 return NULL;
62}
1d3576fd
SW
63
64/*
65 * Dirty a page. Optimistically adjust accounting, on the assumption
66 * that we won't race with invalidate. If we do, readjust.
67 */
68static int ceph_set_page_dirty(struct page *page)
69{
70 struct address_space *mapping = page->mapping;
71 struct inode *inode;
72 struct ceph_inode_info *ci;
73 int undo = 0;
74 struct ceph_snap_context *snapc;
75
76 if (unlikely(!mapping))
77 return !TestSetPageDirty(page);
78
79 if (TestSetPageDirty(page)) {
80 dout("%p set_page_dirty %p idx %lu -- already dirty\n",
81 mapping->host, page, page->index);
82 return 0;
83 }
84
85 inode = mapping->host;
86 ci = ceph_inode(inode);
87
88 /*
89 * Note that we're grabbing a snapc ref here without holding
90 * any locks!
91 */
92 snapc = ceph_get_snap_context(ci->i_snap_realm->cached_context);
93
94 /* dirty the head */
be655596 95 spin_lock(&ci->i_ceph_lock);
7d8cb26d 96 if (ci->i_head_snapc == NULL)
1d3576fd
SW
97 ci->i_head_snapc = ceph_get_snap_context(snapc);
98 ++ci->i_wrbuffer_ref_head;
99 if (ci->i_wrbuffer_ref == 0)
0444d76a 100 ihold(inode);
1d3576fd
SW
101 ++ci->i_wrbuffer_ref;
102 dout("%p set_page_dirty %p idx %lu head %d/%d -> %d/%d "
103 "snapc %p seq %lld (%d snaps)\n",
104 mapping->host, page, page->index,
105 ci->i_wrbuffer_ref-1, ci->i_wrbuffer_ref_head-1,
106 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
107 snapc, snapc->seq, snapc->num_snaps);
be655596 108 spin_unlock(&ci->i_ceph_lock);
1d3576fd
SW
109
110 /* now adjust page */
111 spin_lock_irq(&mapping->tree_lock);
112 if (page->mapping) { /* Race with truncate? */
113 WARN_ON_ONCE(!PageUptodate(page));
679ceace 114 account_page_dirtied(page, page->mapping);
1d3576fd
SW
115 radix_tree_tag_set(&mapping->page_tree,
116 page_index(page), PAGECACHE_TAG_DIRTY);
117
118 /*
119 * Reference snap context in page->private. Also set
120 * PagePrivate so that we get invalidatepage callback.
121 */
122 page->private = (unsigned long)snapc;
123 SetPagePrivate(page);
124 } else {
125 dout("ANON set_page_dirty %p (raced truncate?)\n", page);
126 undo = 1;
127 }
128
129 spin_unlock_irq(&mapping->tree_lock);
130
131 if (undo)
132 /* whoops, we failed to dirty the page */
133 ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
134
135 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
136
137 BUG_ON(!PageDirty(page));
138 return 1;
139}
140
141/*
142 * If we are truncating the full page (i.e. offset == 0), adjust the
143 * dirty page counters appropriately. Only called if there is private
144 * data on the page.
145 */
146static void ceph_invalidatepage(struct page *page, unsigned long offset)
147{
4ce1e9ad 148 struct inode *inode;
1d3576fd 149 struct ceph_inode_info *ci;
61600ef8 150 struct ceph_snap_context *snapc = page_snap_context(page);
1d3576fd
SW
151
152 BUG_ON(!PageLocked(page));
1d3576fd
SW
153 BUG_ON(!PagePrivate(page));
154 BUG_ON(!page->mapping);
155
4ce1e9ad
AB
156 inode = page->mapping->host;
157
1d3576fd
SW
158 /*
159 * We can get non-dirty pages here due to races between
160 * set_page_dirty and truncate_complete_page; just spit out a
161 * warning, in case we end up with accounting problems later.
162 */
163 if (!PageDirty(page))
164 pr_err("%p invalidatepage %p page not dirty\n", inode, page);
165
166 if (offset == 0)
167 ClearPageChecked(page);
168
169 ci = ceph_inode(inode);
170 if (offset == 0) {
171 dout("%p invalidatepage %p idx %lu full dirty page %lu\n",
172 inode, page, page->index, offset);
173 ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
174 ceph_put_snap_context(snapc);
175 page->private = 0;
176 ClearPagePrivate(page);
177 } else {
178 dout("%p invalidatepage %p idx %lu partial dirty page\n",
179 inode, page, page->index);
180 }
181}
182
183/* just a sanity check */
184static int ceph_releasepage(struct page *page, gfp_t g)
185{
186 struct inode *inode = page->mapping ? page->mapping->host : NULL;
187 dout("%p releasepage %p idx %lu\n", inode, page, page->index);
188 WARN_ON(PageDirty(page));
1d3576fd
SW
189 WARN_ON(PagePrivate(page));
190 return 0;
191}
192
193/*
194 * read a single page, without unlocking it.
195 */
196static int readpage_nounlock(struct file *filp, struct page *page)
197{
496ad9aa 198 struct inode *inode = file_inode(filp);
1d3576fd 199 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2
YS
200 struct ceph_osd_client *osdc =
201 &ceph_inode_to_client(inode)->client->osdc;
1d3576fd
SW
202 int err = 0;
203 u64 len = PAGE_CACHE_SIZE;
204
205 dout("readpage inode %p file %p page %p index %lu\n",
206 inode, filp, page, page->index);
207 err = ceph_osdc_readpages(osdc, ceph_vino(inode), &ci->i_layout,
6285bc23 208 (u64) page_offset(page), &len,
1d3576fd 209 ci->i_truncate_seq, ci->i_truncate_size,
b7495fc2 210 &page, 1, 0);
1d3576fd
SW
211 if (err == -ENOENT)
212 err = 0;
213 if (err < 0) {
214 SetPageError(page);
215 goto out;
216 } else if (err < PAGE_CACHE_SIZE) {
217 /* zero fill remainder of page */
218 zero_user_segment(page, err, PAGE_CACHE_SIZE);
219 }
220 SetPageUptodate(page);
221
222out:
223 return err < 0 ? err : 0;
224}
225
226static int ceph_readpage(struct file *filp, struct page *page)
227{
228 int r = readpage_nounlock(filp, page);
229 unlock_page(page);
230 return r;
231}
232
233/*
7c272194 234 * Finish an async read(ahead) op.
1d3576fd 235 */
7c272194 236static void finish_read(struct ceph_osd_request *req, struct ceph_msg *msg)
1d3576fd 237{
7c272194 238 struct inode *inode = req->r_inode;
1b83bef2
SW
239 int rc = req->r_result;
240 int bytes = le32_to_cpu(msg->hdr.data_len);
e0c59487 241 int num_pages;
7c272194 242 int i;
1d3576fd 243
7c272194
SW
244 dout("finish_read %p req %p rc %d bytes %d\n", inode, req, rc, bytes);
245
246 /* unlock all pages, zeroing any data we didn't read */
0fff87ec 247 BUG_ON(req->r_data_in.type != CEPH_OSD_DATA_TYPE_PAGES);
e0c59487
AE
248 num_pages = calc_pages_for((u64)req->r_data_in.alignment,
249 (u64)req->r_data_in.length);
250 for (i = 0; i < num_pages; i++) {
0fff87ec 251 struct page *page = req->r_data_in.pages[i];
7c272194
SW
252
253 if (bytes < (int)PAGE_CACHE_SIZE) {
254 /* zero (remainder of) page */
255 int s = bytes < 0 ? 0 : bytes;
256 zero_user_segment(page, s, PAGE_CACHE_SIZE);
1d3576fd 257 }
7c272194
SW
258 dout("finish_read %p uptodate %p idx %lu\n", inode, page,
259 page->index);
260 flush_dcache_page(page);
261 SetPageUptodate(page);
262 unlock_page(page);
263 page_cache_release(page);
0fff87ec 264 bytes -= PAGE_CACHE_SIZE;
1d3576fd 265 }
0fff87ec 266 kfree(req->r_data_in.pages);
1d3576fd
SW
267}
268
8884d53d
DZ
269static void ceph_unlock_page_vector(struct page **pages, int num_pages)
270{
271 int i;
272
273 for (i = 0; i < num_pages; i++)
274 unlock_page(pages[i]);
275}
276
1d3576fd 277/*
7c272194
SW
278 * start an async read(ahead) operation. return nr_pages we submitted
279 * a read for on success, or negative error code.
1d3576fd 280 */
0d66a487 281static int start_read(struct inode *inode, struct list_head *page_list, int max)
1d3576fd 282{
3d14c5d2
YS
283 struct ceph_osd_client *osdc =
284 &ceph_inode_to_client(inode)->client->osdc;
7c272194
SW
285 struct ceph_inode_info *ci = ceph_inode(inode);
286 struct page *page = list_entry(page_list->prev, struct page, lru);
287 struct ceph_osd_request *req;
288 u64 off;
1d3576fd 289 u64 len;
7c272194
SW
290 int i;
291 struct page **pages;
292 pgoff_t next_index;
293 int nr_pages = 0;
294 int ret;
1d3576fd 295
6285bc23 296 off = (u64) page_offset(page);
1d3576fd 297
7c272194
SW
298 /* count pages */
299 next_index = page->index;
300 list_for_each_entry_reverse(page, page_list, lru) {
301 if (page->index != next_index)
302 break;
303 nr_pages++;
304 next_index++;
0d66a487
SW
305 if (max && nr_pages == max)
306 break;
7c272194 307 }
1d3576fd 308 len = nr_pages << PAGE_CACHE_SHIFT;
7c272194
SW
309 dout("start_read %p nr_pages %d is %lld~%lld\n", inode, nr_pages,
310 off, len);
311
312 req = ceph_osdc_new_request(osdc, &ci->i_layout, ceph_vino(inode),
313 off, &len,
314 CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
315 NULL, 0,
316 ci->i_truncate_seq, ci->i_truncate_size,
153e5167 317 NULL, false);
6816282d
SW
318 if (IS_ERR(req))
319 return PTR_ERR(req);
1d3576fd 320
7c272194 321 /* build page vector */
cf7b7e14 322 nr_pages = calc_pages_for(0, len);
7c272194
SW
323 pages = kmalloc(sizeof(*pages) * nr_pages, GFP_NOFS);
324 ret = -ENOMEM;
325 if (!pages)
326 goto out;
327 for (i = 0; i < nr_pages; ++i) {
328 page = list_entry(page_list->prev, struct page, lru);
329 BUG_ON(PageLocked(page));
1d3576fd 330 list_del(&page->lru);
7c272194
SW
331
332 dout("start_read %p adding %p idx %lu\n", inode, page,
333 page->index);
334 if (add_to_page_cache_lru(page, &inode->i_data, page->index,
213c99ee 335 GFP_NOFS)) {
1d3576fd 336 page_cache_release(page);
7c272194 337 dout("start_read %p add_to_page_cache failed %p\n",
1d3576fd 338 inode, page);
7c272194
SW
339 nr_pages = i;
340 goto out_pages;
1d3576fd 341 }
7c272194 342 pages[i] = page;
1d3576fd 343 }
0fff87ec
AE
344 req->r_data_in.type = CEPH_OSD_DATA_TYPE_PAGES;
345 req->r_data_in.pages = pages;
e0c59487 346 req->r_data_in.length = len;
0fff87ec 347 req->r_data_in.alignment = 0;
7c272194
SW
348 req->r_callback = finish_read;
349 req->r_inode = inode;
350
351 dout("start_read %p starting %p %lld~%lld\n", inode, req, off, len);
352 ret = ceph_osdc_start_request(osdc, req, false);
353 if (ret < 0)
354 goto out_pages;
355 ceph_osdc_put_request(req);
356 return nr_pages;
357
358out_pages:
8884d53d 359 ceph_unlock_page_vector(pages, nr_pages);
7c272194 360 ceph_release_page_vector(pages, nr_pages);
7c272194
SW
361out:
362 ceph_osdc_put_request(req);
363 return ret;
364}
1d3576fd 365
7c272194
SW
366
367/*
368 * Read multiple pages. Leave pages we don't read + unlock in page_list;
369 * the caller (VM) cleans them up.
370 */
371static int ceph_readpages(struct file *file, struct address_space *mapping,
372 struct list_head *page_list, unsigned nr_pages)
373{
496ad9aa 374 struct inode *inode = file_inode(file);
0d66a487 375 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
7c272194 376 int rc = 0;
0d66a487
SW
377 int max = 0;
378
379 if (fsc->mount_options->rsize >= PAGE_CACHE_SIZE)
380 max = (fsc->mount_options->rsize + PAGE_CACHE_SIZE - 1)
381 >> PAGE_SHIFT;
7c272194 382
2794a82a
AE
383 dout("readpages %p file %p nr_pages %d max %d\n", inode,
384 file, nr_pages,
0d66a487 385 max);
7c272194 386 while (!list_empty(page_list)) {
0d66a487 387 rc = start_read(inode, page_list, max);
7c272194
SW
388 if (rc < 0)
389 goto out;
390 BUG_ON(rc == 0);
391 }
1d3576fd 392out:
7c272194 393 dout("readpages %p file %p ret %d\n", inode, file, rc);
1d3576fd
SW
394 return rc;
395}
396
397/*
398 * Get ref for the oldest snapc for an inode with dirty data... that is, the
399 * only snap context we are allowed to write back.
1d3576fd 400 */
6298a337
SW
401static struct ceph_snap_context *get_oldest_context(struct inode *inode,
402 u64 *snap_size)
1d3576fd
SW
403{
404 struct ceph_inode_info *ci = ceph_inode(inode);
405 struct ceph_snap_context *snapc = NULL;
406 struct ceph_cap_snap *capsnap = NULL;
407
be655596 408 spin_lock(&ci->i_ceph_lock);
1d3576fd
SW
409 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
410 dout(" cap_snap %p snapc %p has %d dirty pages\n", capsnap,
411 capsnap->context, capsnap->dirty_pages);
412 if (capsnap->dirty_pages) {
413 snapc = ceph_get_snap_context(capsnap->context);
414 if (snap_size)
415 *snap_size = capsnap->size;
416 break;
417 }
418 }
7d8cb26d 419 if (!snapc && ci->i_wrbuffer_ref_head) {
80e755fe 420 snapc = ceph_get_snap_context(ci->i_head_snapc);
1d3576fd
SW
421 dout(" head snapc %p has %d dirty pages\n",
422 snapc, ci->i_wrbuffer_ref_head);
423 }
be655596 424 spin_unlock(&ci->i_ceph_lock);
1d3576fd
SW
425 return snapc;
426}
427
428/*
429 * Write a single page, but leave the page locked.
430 *
431 * If we get a write error, set the page error bit, but still adjust the
432 * dirty page accounting (i.e., page is no longer dirty).
433 */
434static int writepage_nounlock(struct page *page, struct writeback_control *wbc)
435{
436 struct inode *inode;
437 struct ceph_inode_info *ci;
3d14c5d2 438 struct ceph_fs_client *fsc;
1d3576fd 439 struct ceph_osd_client *osdc;
6285bc23 440 loff_t page_off = page_offset(page);
1d3576fd
SW
441 int len = PAGE_CACHE_SIZE;
442 loff_t i_size;
443 int err = 0;
6298a337 444 struct ceph_snap_context *snapc, *oldest;
1d3576fd 445 u64 snap_size = 0;
2baba250 446 long writeback_stat;
1d3576fd
SW
447
448 dout("writepage %p idx %lu\n", page, page->index);
449
450 if (!page->mapping || !page->mapping->host) {
451 dout("writepage %p - no mapping\n", page);
452 return -EFAULT;
453 }
454 inode = page->mapping->host;
455 ci = ceph_inode(inode);
3d14c5d2
YS
456 fsc = ceph_inode_to_client(inode);
457 osdc = &fsc->client->osdc;
1d3576fd
SW
458
459 /* verify this is a writeable snap context */
61600ef8 460 snapc = page_snap_context(page);
1d3576fd
SW
461 if (snapc == NULL) {
462 dout("writepage %p page %p not dirty?\n", inode, page);
463 goto out;
464 }
6298a337
SW
465 oldest = get_oldest_context(inode, &snap_size);
466 if (snapc->seq > oldest->seq) {
1d3576fd 467 dout("writepage %p page %p snapc %p not writeable - noop\n",
61600ef8 468 inode, page, snapc);
1d3576fd
SW
469 /* we should only noop if called by kswapd */
470 WARN_ON((current->flags & PF_MEMALLOC) == 0);
6298a337 471 ceph_put_snap_context(oldest);
1d3576fd
SW
472 goto out;
473 }
6298a337 474 ceph_put_snap_context(oldest);
1d3576fd
SW
475
476 /* is this a partial page at end of file? */
477 if (snap_size)
478 i_size = snap_size;
479 else
480 i_size = i_size_read(inode);
481 if (i_size < page_off + len)
482 len = i_size - page_off;
483
ae00d4f3
SW
484 dout("writepage %p page %p index %lu on %llu~%u snapc %p\n",
485 inode, page, page->index, page_off, len, snapc);
1d3576fd 486
3d14c5d2 487 writeback_stat = atomic_long_inc_return(&fsc->writeback_count);
2baba250 488 if (writeback_stat >
3d14c5d2
YS
489 CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb))
490 set_bdi_congested(&fsc->backing_dev_info, BLK_RW_ASYNC);
2baba250 491
1d3576fd
SW
492 set_page_writeback(page);
493 err = ceph_osdc_writepages(osdc, ceph_vino(inode),
494 &ci->i_layout, snapc,
495 page_off, len,
496 ci->i_truncate_seq, ci->i_truncate_size,
24808826 497 &inode->i_mtime, &page, 1);
1d3576fd
SW
498 if (err < 0) {
499 dout("writepage setting page/mapping error %d %p\n", err, page);
500 SetPageError(page);
501 mapping_set_error(&inode->i_data, err);
502 if (wbc)
503 wbc->pages_skipped++;
504 } else {
505 dout("writepage cleaned page %p\n", page);
506 err = 0; /* vfs expects us to return 0 */
507 }
508 page->private = 0;
509 ClearPagePrivate(page);
510 end_page_writeback(page);
511 ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
6298a337 512 ceph_put_snap_context(snapc); /* page's reference */
1d3576fd
SW
513out:
514 return err;
515}
516
517static int ceph_writepage(struct page *page, struct writeback_control *wbc)
518{
dbd646a8
YS
519 int err;
520 struct inode *inode = page->mapping->host;
521 BUG_ON(!inode);
70b666c3 522 ihold(inode);
dbd646a8 523 err = writepage_nounlock(page, wbc);
1d3576fd 524 unlock_page(page);
dbd646a8 525 iput(inode);
1d3576fd
SW
526 return err;
527}
528
529
530/*
531 * lame release_pages helper. release_pages() isn't exported to
532 * modules.
533 */
534static void ceph_release_pages(struct page **pages, int num)
535{
536 struct pagevec pvec;
537 int i;
538
539 pagevec_init(&pvec, 0);
540 for (i = 0; i < num; i++) {
541 if (pagevec_add(&pvec, pages[i]) == 0)
542 pagevec_release(&pvec);
543 }
544 pagevec_release(&pvec);
545}
546
547
548/*
549 * async writeback completion handler.
550 *
551 * If we get an error, set the mapping error bit, but not the individual
552 * page error bits.
553 */
554static void writepages_finish(struct ceph_osd_request *req,
555 struct ceph_msg *msg)
556{
557 struct inode *inode = req->r_inode;
1d3576fd
SW
558 struct ceph_inode_info *ci = ceph_inode(inode);
559 unsigned wrote;
1d3576fd 560 struct page *page;
e0c59487 561 int num_pages;
1d3576fd
SW
562 int i;
563 struct ceph_snap_context *snapc = req->r_snapc;
564 struct address_space *mapping = inode->i_mapping;
1b83bef2
SW
565 int rc = req->r_result;
566 u64 bytes = le64_to_cpu(req->r_request_ops[0].extent.length);
3d14c5d2 567 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
2baba250 568 long writeback_stat;
7ff899da 569 unsigned issued = ceph_caps_issued(ci);
1d3576fd 570
0fff87ec 571 BUG_ON(req->r_data_out.type != CEPH_OSD_DATA_TYPE_PAGES);
e0c59487
AE
572 num_pages = calc_pages_for((u64)req->r_data_out.alignment,
573 (u64)req->r_data_out.length);
1d3576fd 574 if (rc >= 0) {
79788c69
SW
575 /*
576 * Assume we wrote the pages we originally sent. The
577 * osd might reply with fewer pages if our writeback
578 * raced with a truncation and was adjusted at the osd,
579 * so don't believe the reply.
580 */
e0c59487 581 wrote = num_pages;
1d3576fd
SW
582 } else {
583 wrote = 0;
584 mapping_set_error(mapping, rc);
585 }
586 dout("writepages_finish %p rc %d bytes %llu wrote %d (pages)\n",
587 inode, rc, bytes, wrote);
588
589 /* clean all pages */
e0c59487 590 for (i = 0; i < num_pages; i++) {
0fff87ec 591 page = req->r_data_out.pages[i];
1d3576fd
SW
592 BUG_ON(!page);
593 WARN_ON(!PageUptodate(page));
594
2baba250 595 writeback_stat =
3d14c5d2 596 atomic_long_dec_return(&fsc->writeback_count);
2baba250 597 if (writeback_stat <
3d14c5d2
YS
598 CONGESTION_OFF_THRESH(fsc->mount_options->congestion_kb))
599 clear_bdi_congested(&fsc->backing_dev_info,
2baba250
YS
600 BLK_RW_ASYNC);
601
61600ef8 602 ceph_put_snap_context(page_snap_context(page));
1d3576fd
SW
603 page->private = 0;
604 ClearPagePrivate(page);
1d3576fd
SW
605 dout("unlocking %d %p\n", i, page);
606 end_page_writeback(page);
e63dc5c7
YS
607
608 /*
609 * We lost the cache cap, need to truncate the page before
610 * it is unlocked, otherwise we'd truncate it later in the
611 * page truncation thread, possibly losing some data that
612 * raced its way in
613 */
2962507c 614 if ((issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0)
e63dc5c7
YS
615 generic_error_remove_page(inode->i_mapping, page);
616
1d3576fd
SW
617 unlock_page(page);
618 }
619 dout("%p wrote+cleaned %d pages\n", inode, wrote);
e0c59487 620 ceph_put_wrbuffer_cap_refs(ci, num_pages, snapc);
1d3576fd 621
e0c59487 622 ceph_release_pages(req->r_data_out.pages, num_pages);
0fff87ec
AE
623 if (req->r_data_out.pages_from_pool)
624 mempool_free(req->r_data_out.pages,
640ef79d 625 ceph_sb_to_client(inode->i_sb)->wb_pagevec_pool);
1d3576fd 626 else
0fff87ec 627 kfree(req->r_data_out.pages);
1d3576fd
SW
628 ceph_osdc_put_request(req);
629}
630
631/*
632 * allocate a page vec, either directly, or if necessary, via a the
e0c59487 633 * mempool. we avoid the mempool if we can because req->r_data_out.length
1d3576fd
SW
634 * may be less than the maximum write size.
635 */
3d14c5d2 636static void alloc_page_vec(struct ceph_fs_client *fsc,
1d3576fd
SW
637 struct ceph_osd_request *req)
638{
0fff87ec 639 size_t size;
e0c59487 640 int num_pages;
0fff87ec 641
e0c59487
AE
642 num_pages = calc_pages_for((u64)req->r_data_out.alignment,
643 (u64)req->r_data_out.length);
644 size = sizeof (struct page *) * num_pages;
0fff87ec
AE
645 req->r_data_out.pages = kmalloc(size, GFP_NOFS);
646 if (!req->r_data_out.pages) {
647 req->r_data_out.pages = mempool_alloc(fsc->wb_pagevec_pool,
648 GFP_NOFS);
649 req->r_data_out.pages_from_pool = 1;
650 WARN_ON(!req->r_data_out.pages);
1d3576fd
SW
651 }
652}
653
654/*
655 * initiate async writeback
656 */
657static int ceph_writepages_start(struct address_space *mapping,
658 struct writeback_control *wbc)
659{
660 struct inode *inode = mapping->host;
1d3576fd 661 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2 662 struct ceph_fs_client *fsc;
1d3576fd
SW
663 pgoff_t index, start, end;
664 int range_whole = 0;
665 int should_loop = 1;
666 pgoff_t max_pages = 0, max_pages_ever = 0;
80e755fe 667 struct ceph_snap_context *snapc = NULL, *last_snapc = NULL, *pgsnapc;
1d3576fd
SW
668 struct pagevec pvec;
669 int done = 0;
670 int rc = 0;
671 unsigned wsize = 1 << inode->i_blkbits;
672 struct ceph_osd_request *req = NULL;
673 int do_sync;
674 u64 snap_size = 0;
675
676 /*
677 * Include a 'sync' in the OSD request if this is a data
678 * integrity write (e.g., O_SYNC write or fsync()), or if our
679 * cap is being revoked.
680 */
681 do_sync = wbc->sync_mode == WB_SYNC_ALL;
682 if (ceph_caps_revoking(ci, CEPH_CAP_FILE_BUFFER))
683 do_sync = 1;
684 dout("writepages_start %p dosync=%d (mode=%s)\n",
685 inode, do_sync,
686 wbc->sync_mode == WB_SYNC_NONE ? "NONE" :
687 (wbc->sync_mode == WB_SYNC_ALL ? "ALL" : "HOLD"));
688
3d14c5d2
YS
689 fsc = ceph_inode_to_client(inode);
690 if (fsc->mount_state == CEPH_MOUNT_SHUTDOWN) {
1d3576fd
SW
691 pr_warning("writepage_start %p on forced umount\n", inode);
692 return -EIO; /* we're in a forced umount, don't write! */
693 }
3d14c5d2
YS
694 if (fsc->mount_options->wsize && fsc->mount_options->wsize < wsize)
695 wsize = fsc->mount_options->wsize;
1d3576fd
SW
696 if (wsize < PAGE_CACHE_SIZE)
697 wsize = PAGE_CACHE_SIZE;
698 max_pages_ever = wsize >> PAGE_CACHE_SHIFT;
699
700 pagevec_init(&pvec, 0);
701
1d3576fd
SW
702 /* where to start/end? */
703 if (wbc->range_cyclic) {
704 start = mapping->writeback_index; /* Start from prev offset */
705 end = -1;
706 dout(" cyclic, start at %lu\n", start);
707 } else {
708 start = wbc->range_start >> PAGE_CACHE_SHIFT;
709 end = wbc->range_end >> PAGE_CACHE_SHIFT;
710 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
711 range_whole = 1;
712 should_loop = 0;
713 dout(" not cyclic, %lu to %lu\n", start, end);
714 }
715 index = start;
716
717retry:
718 /* find oldest snap context with dirty data */
719 ceph_put_snap_context(snapc);
720 snapc = get_oldest_context(inode, &snap_size);
721 if (!snapc) {
722 /* hmm, why does writepages get called when there
723 is no dirty data? */
724 dout(" no snap context with dirty data?\n");
725 goto out;
726 }
727 dout(" oldest snapc is %p seq %lld (%d snaps)\n",
728 snapc, snapc->seq, snapc->num_snaps);
729 if (last_snapc && snapc != last_snapc) {
730 /* if we switched to a newer snapc, restart our scan at the
731 * start of the original file range. */
732 dout(" snapc differs from last pass, restarting at %lu\n",
733 index);
734 index = start;
735 }
736 last_snapc = snapc;
737
738 while (!done && index <= end) {
739 unsigned i;
740 int first;
741 pgoff_t next;
742 int pvec_pages, locked_pages;
743 struct page *page;
744 int want;
745 u64 offset, len;
2baba250 746 long writeback_stat;
1d3576fd
SW
747
748 next = 0;
749 locked_pages = 0;
750 max_pages = max_pages_ever;
751
752get_more_pages:
753 first = -1;
754 want = min(end - index,
755 min((pgoff_t)PAGEVEC_SIZE,
756 max_pages - (pgoff_t)locked_pages) - 1)
757 + 1;
758 pvec_pages = pagevec_lookup_tag(&pvec, mapping, &index,
759 PAGECACHE_TAG_DIRTY,
760 want);
761 dout("pagevec_lookup_tag got %d\n", pvec_pages);
762 if (!pvec_pages && !locked_pages)
763 break;
764 for (i = 0; i < pvec_pages && locked_pages < max_pages; i++) {
765 page = pvec.pages[i];
766 dout("? %p idx %lu\n", page, page->index);
767 if (locked_pages == 0)
768 lock_page(page); /* first page */
769 else if (!trylock_page(page))
770 break;
771
772 /* only dirty pages, or our accounting breaks */
773 if (unlikely(!PageDirty(page)) ||
774 unlikely(page->mapping != mapping)) {
775 dout("!dirty or !mapping %p\n", page);
776 unlock_page(page);
777 break;
778 }
779 if (!wbc->range_cyclic && page->index > end) {
780 dout("end of range %p\n", page);
781 done = 1;
782 unlock_page(page);
783 break;
784 }
785 if (next && (page->index != next)) {
786 dout("not consecutive %p\n", page);
787 unlock_page(page);
788 break;
789 }
790 if (wbc->sync_mode != WB_SYNC_NONE) {
791 dout("waiting on writeback %p\n", page);
792 wait_on_page_writeback(page);
793 }
794 if ((snap_size && page_offset(page) > snap_size) ||
795 (!snap_size &&
796 page_offset(page) > i_size_read(inode))) {
797 dout("%p page eof %llu\n", page, snap_size ?
798 snap_size : i_size_read(inode));
799 done = 1;
800 unlock_page(page);
801 break;
802 }
803 if (PageWriteback(page)) {
804 dout("%p under writeback\n", page);
805 unlock_page(page);
806 break;
807 }
808
809 /* only if matching snap context */
61600ef8 810 pgsnapc = page_snap_context(page);
80e755fe
SW
811 if (pgsnapc->seq > snapc->seq) {
812 dout("page snapc %p %lld > oldest %p %lld\n",
813 pgsnapc, pgsnapc->seq, snapc, snapc->seq);
1d3576fd
SW
814 unlock_page(page);
815 if (!locked_pages)
816 continue; /* keep looking for snap */
817 break;
818 }
819
820 if (!clear_page_dirty_for_io(page)) {
821 dout("%p !clear_page_dirty_for_io\n", page);
822 unlock_page(page);
823 break;
824 }
825
826 /* ok */
827 if (locked_pages == 0) {
828 /* prepare async write request */
6285bc23 829 offset = (u64) page_offset(page);
1d3576fd 830 len = wsize;
3d14c5d2 831 req = ceph_osdc_new_request(&fsc->client->osdc,
1d3576fd
SW
832 &ci->i_layout,
833 ceph_vino(inode),
834 offset, &len,
835 CEPH_OSD_OP_WRITE,
836 CEPH_OSD_FLAG_WRITE |
837 CEPH_OSD_FLAG_ONDISK,
838 snapc, do_sync,
839 ci->i_truncate_seq,
840 ci->i_truncate_size,
153e5167 841 &inode->i_mtime, true);
8c71897b 842
6816282d
SW
843 if (IS_ERR(req)) {
844 rc = PTR_ERR(req);
8c71897b
HC
845 unlock_page(page);
846 break;
847 }
848
0fff87ec 849 req->r_data_out.type = CEPH_OSD_DATA_TYPE_PAGES;
e0c59487 850 req->r_data_out.length = len;
0fff87ec 851 req->r_data_out.alignment = 0;
e0c59487 852 max_pages = calc_pages_for(0, (u64)len);
3d14c5d2 853 alloc_page_vec(fsc, req);
1d3576fd
SW
854 req->r_callback = writepages_finish;
855 req->r_inode = inode;
1d3576fd
SW
856 }
857
858 /* note position of first page in pvec */
859 if (first < 0)
860 first = i;
861 dout("%p will write page %p idx %lu\n",
862 inode, page, page->index);
2baba250 863
213c99ee 864 writeback_stat =
3d14c5d2 865 atomic_long_inc_return(&fsc->writeback_count);
213c99ee 866 if (writeback_stat > CONGESTION_ON_THRESH(
3d14c5d2
YS
867 fsc->mount_options->congestion_kb)) {
868 set_bdi_congested(&fsc->backing_dev_info,
213c99ee 869 BLK_RW_ASYNC);
2baba250
YS
870 }
871
1d3576fd 872 set_page_writeback(page);
0fff87ec 873 req->r_data_out.pages[locked_pages] = page;
1d3576fd
SW
874 locked_pages++;
875 next = page->index + 1;
876 }
877
878 /* did we get anything? */
879 if (!locked_pages)
880 goto release_pvec_pages;
881 if (i) {
882 int j;
883 BUG_ON(!locked_pages || first < 0);
884
885 if (pvec_pages && i == pvec_pages &&
886 locked_pages < max_pages) {
887 dout("reached end pvec, trying for more\n");
888 pagevec_reinit(&pvec);
889 goto get_more_pages;
890 }
891
892 /* shift unused pages over in the pvec... we
893 * will need to release them below. */
894 for (j = i; j < pvec_pages; j++) {
895 dout(" pvec leftover page %p\n",
896 pvec.pages[j]);
897 pvec.pages[j-i+first] = pvec.pages[j];
898 }
899 pvec.nr -= i-first;
900 }
901
902 /* submit the write */
0fff87ec 903 offset = req->r_data_out.pages[0]->index << PAGE_CACHE_SHIFT;
1d3576fd
SW
904 len = min((snap_size ? snap_size : i_size_read(inode)) - offset,
905 (u64)locked_pages << PAGE_CACHE_SHIFT);
906 dout("writepages got %d pages at %llu~%llu\n",
907 locked_pages, offset, len);
908
909 /* revise final length, page count */
e0c59487 910 req->r_data_out.length = len;
1b83bef2
SW
911 req->r_request_ops[0].extent.length = cpu_to_le64(len);
912 req->r_request_ops[0].payload_len = cpu_to_le32(len);
1d3576fd
SW
913 req->r_request->hdr.data_len = cpu_to_le32(len);
914
9d6fcb08
SW
915 rc = ceph_osdc_start_request(&fsc->client->osdc, req, true);
916 BUG_ON(rc);
1d3576fd
SW
917 req = NULL;
918
919 /* continue? */
920 index = next;
921 wbc->nr_to_write -= locked_pages;
922 if (wbc->nr_to_write <= 0)
923 done = 1;
924
925release_pvec_pages:
926 dout("pagevec_release on %d pages (%p)\n", (int)pvec.nr,
927 pvec.nr ? pvec.pages[0] : NULL);
928 pagevec_release(&pvec);
929
930 if (locked_pages && !done)
931 goto retry;
932 }
933
934 if (should_loop && !done) {
935 /* more to do; loop back to beginning of file */
936 dout("writepages looping back to beginning of file\n");
937 should_loop = 0;
938 index = 0;
939 goto retry;
940 }
941
942 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
943 mapping->writeback_index = index;
944
945out:
946 if (req)
947 ceph_osdc_put_request(req);
1d3576fd
SW
948 ceph_put_snap_context(snapc);
949 dout("writepages done, rc = %d\n", rc);
1d3576fd
SW
950 return rc;
951}
952
953
954
955/*
956 * See if a given @snapc is either writeable, or already written.
957 */
958static int context_is_writeable_or_written(struct inode *inode,
959 struct ceph_snap_context *snapc)
960{
961 struct ceph_snap_context *oldest = get_oldest_context(inode, NULL);
6298a337
SW
962 int ret = !oldest || snapc->seq <= oldest->seq;
963
964 ceph_put_snap_context(oldest);
965 return ret;
1d3576fd
SW
966}
967
968/*
969 * We are only allowed to write into/dirty the page if the page is
970 * clean, or already dirty within the same snap context.
8f883c24
SW
971 *
972 * called with page locked.
973 * return success with page locked,
974 * or any failure (incl -EAGAIN) with page unlocked.
1d3576fd 975 */
4af6b225
YS
976static int ceph_update_writeable_page(struct file *file,
977 loff_t pos, unsigned len,
978 struct page *page)
1d3576fd 979{
496ad9aa 980 struct inode *inode = file_inode(file);
1d3576fd 981 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2 982 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
1d3576fd
SW
983 loff_t page_off = pos & PAGE_CACHE_MASK;
984 int pos_in_page = pos & ~PAGE_CACHE_MASK;
985 int end_in_page = pos_in_page + len;
986 loff_t i_size;
1d3576fd 987 int r;
80e755fe 988 struct ceph_snap_context *snapc, *oldest;
1d3576fd 989
1d3576fd
SW
990retry_locked:
991 /* writepages currently holds page lock, but if we change that later, */
992 wait_on_page_writeback(page);
993
994 /* check snap context */
995 BUG_ON(!ci->i_snap_realm);
996 down_read(&mdsc->snap_rwsem);
997 BUG_ON(!ci->i_snap_realm->cached_context);
61600ef8 998 snapc = page_snap_context(page);
80e755fe 999 if (snapc && snapc != ci->i_head_snapc) {
1d3576fd
SW
1000 /*
1001 * this page is already dirty in another (older) snap
1002 * context! is it writeable now?
1003 */
80e755fe 1004 oldest = get_oldest_context(inode, NULL);
1d3576fd
SW
1005 up_read(&mdsc->snap_rwsem);
1006
80e755fe 1007 if (snapc->seq > oldest->seq) {
6298a337 1008 ceph_put_snap_context(oldest);
1d3576fd 1009 dout(" page %p snapc %p not current or oldest\n",
6298a337 1010 page, snapc);
1d3576fd
SW
1011 /*
1012 * queue for writeback, and wait for snapc to
1013 * be writeable or written
1014 */
6298a337 1015 snapc = ceph_get_snap_context(snapc);
1d3576fd 1016 unlock_page(page);
3c6f6b79 1017 ceph_queue_writeback(inode);
8f883c24 1018 r = wait_event_interruptible(ci->i_cap_wq,
1d3576fd
SW
1019 context_is_writeable_or_written(inode, snapc));
1020 ceph_put_snap_context(snapc);
8f883c24
SW
1021 if (r == -ERESTARTSYS)
1022 return r;
4af6b225 1023 return -EAGAIN;
1d3576fd 1024 }
6298a337 1025 ceph_put_snap_context(oldest);
1d3576fd
SW
1026
1027 /* yay, writeable, do it now (without dropping page lock) */
1028 dout(" page %p snapc %p not current, but oldest\n",
1029 page, snapc);
1030 if (!clear_page_dirty_for_io(page))
1031 goto retry_locked;
1032 r = writepage_nounlock(page, NULL);
1033 if (r < 0)
1034 goto fail_nosnap;
1035 goto retry_locked;
1036 }
1037
1038 if (PageUptodate(page)) {
1039 dout(" page %p already uptodate\n", page);
1040 return 0;
1041 }
1042
1043 /* full page? */
1044 if (pos_in_page == 0 && len == PAGE_CACHE_SIZE)
1045 return 0;
1046
1047 /* past end of file? */
1048 i_size = inode->i_size; /* caller holds i_mutex */
1049
1050 if (i_size + len > inode->i_sb->s_maxbytes) {
1051 /* file is too big */
1052 r = -EINVAL;
1053 goto fail;
1054 }
1055
1056 if (page_off >= i_size ||
1057 (pos_in_page == 0 && (pos+len) >= i_size &&
1058 end_in_page - pos_in_page != PAGE_CACHE_SIZE)) {
1059 dout(" zeroing %p 0 - %d and %d - %d\n",
1060 page, pos_in_page, end_in_page, (int)PAGE_CACHE_SIZE);
1061 zero_user_segments(page,
1062 0, pos_in_page,
1063 end_in_page, PAGE_CACHE_SIZE);
1064 return 0;
1065 }
1066
1067 /* we need to read it. */
1068 up_read(&mdsc->snap_rwsem);
1069 r = readpage_nounlock(file, page);
1070 if (r < 0)
1071 goto fail_nosnap;
1072 goto retry_locked;
1073
1074fail:
1075 up_read(&mdsc->snap_rwsem);
1076fail_nosnap:
1077 unlock_page(page);
1078 return r;
1079}
1080
4af6b225
YS
1081/*
1082 * We are only allowed to write into/dirty the page if the page is
1083 * clean, or already dirty within the same snap context.
1084 */
1085static int ceph_write_begin(struct file *file, struct address_space *mapping,
1086 loff_t pos, unsigned len, unsigned flags,
1087 struct page **pagep, void **fsdata)
1088{
496ad9aa 1089 struct inode *inode = file_inode(file);
4af6b225
YS
1090 struct page *page;
1091 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
7971bd92 1092 int r;
4af6b225
YS
1093
1094 do {
8f883c24 1095 /* get a page */
4af6b225 1096 page = grab_cache_page_write_begin(mapping, index, 0);
7971bd92
SW
1097 if (!page)
1098 return -ENOMEM;
1099 *pagep = page;
4af6b225
YS
1100
1101 dout("write_begin file %p inode %p page %p %d~%d\n", file,
213c99ee 1102 inode, page, (int)pos, (int)len);
4af6b225
YS
1103
1104 r = ceph_update_writeable_page(file, pos, len, page);
1105 } while (r == -EAGAIN);
1106
1107 return r;
1108}
1109
1d3576fd
SW
1110/*
1111 * we don't do anything in here that simple_write_end doesn't do
1112 * except adjust dirty page accounting and drop read lock on
1113 * mdsc->snap_rwsem.
1114 */
1115static int ceph_write_end(struct file *file, struct address_space *mapping,
1116 loff_t pos, unsigned len, unsigned copied,
1117 struct page *page, void *fsdata)
1118{
496ad9aa 1119 struct inode *inode = file_inode(file);
3d14c5d2
YS
1120 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1121 struct ceph_mds_client *mdsc = fsc->mdsc;
1d3576fd
SW
1122 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
1123 int check_cap = 0;
1124
1125 dout("write_end file %p inode %p page %p %d~%d (%d)\n", file,
1126 inode, page, (int)pos, (int)copied, (int)len);
1127
1128 /* zero the stale part of the page if we did a short copy */
1129 if (copied < len)
1130 zero_user_segment(page, from+copied, len);
1131
1132 /* did file size increase? */
1133 /* (no need for i_size_read(); we caller holds i_mutex */
1134 if (pos+copied > inode->i_size)
1135 check_cap = ceph_inode_set_size(inode, pos+copied);
1136
1137 if (!PageUptodate(page))
1138 SetPageUptodate(page);
1139
1140 set_page_dirty(page);
1141
1142 unlock_page(page);
1143 up_read(&mdsc->snap_rwsem);
1144 page_cache_release(page);
1145
1146 if (check_cap)
1147 ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, NULL);
1148
1149 return copied;
1150}
1151
1152/*
1153 * we set .direct_IO to indicate direct io is supported, but since we
1154 * intercept O_DIRECT reads and writes early, this function should
1155 * never get called.
1156 */
1157static ssize_t ceph_direct_io(int rw, struct kiocb *iocb,
1158 const struct iovec *iov,
1159 loff_t pos, unsigned long nr_segs)
1160{
1161 WARN_ON(1);
1162 return -EINVAL;
1163}
1164
1165const struct address_space_operations ceph_aops = {
1166 .readpage = ceph_readpage,
1167 .readpages = ceph_readpages,
1168 .writepage = ceph_writepage,
1169 .writepages = ceph_writepages_start,
1170 .write_begin = ceph_write_begin,
1171 .write_end = ceph_write_end,
1172 .set_page_dirty = ceph_set_page_dirty,
1173 .invalidatepage = ceph_invalidatepage,
1174 .releasepage = ceph_releasepage,
1175 .direct_IO = ceph_direct_io,
1176};
1177
1178
1179/*
1180 * vm ops
1181 */
1182
1183/*
1184 * Reuse write_begin here for simplicity.
1185 */
1186static int ceph_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
1187{
496ad9aa 1188 struct inode *inode = file_inode(vma->vm_file);
1d3576fd 1189 struct page *page = vmf->page;
3d14c5d2 1190 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
6285bc23 1191 loff_t off = page_offset(page);
1d3576fd 1192 loff_t size, len;
1d3576fd
SW
1193 int ret;
1194
3ca9c3bd
JK
1195 /* Update time before taking page lock */
1196 file_update_time(vma->vm_file);
1197
1d3576fd
SW
1198 size = i_size_read(inode);
1199 if (off + PAGE_CACHE_SIZE <= size)
1200 len = PAGE_CACHE_SIZE;
1201 else
1202 len = size & ~PAGE_CACHE_MASK;
1203
1204 dout("page_mkwrite %p %llu~%llu page %p idx %lu\n", inode,
1205 off, len, page, page->index);
4af6b225
YS
1206
1207 lock_page(page);
1208
1209 ret = VM_FAULT_NOPAGE;
1210 if ((off > size) ||
1211 (page->mapping != inode->i_mapping))
1212 goto out;
1213
1214 ret = ceph_update_writeable_page(vma->vm_file, off, len, page);
1215 if (ret == 0) {
1216 /* success. we'll keep the page locked. */
1d3576fd
SW
1217 set_page_dirty(page);
1218 up_read(&mdsc->snap_rwsem);
1d3576fd
SW
1219 ret = VM_FAULT_LOCKED;
1220 } else {
4af6b225
YS
1221 if (ret == -ENOMEM)
1222 ret = VM_FAULT_OOM;
1223 else
1224 ret = VM_FAULT_SIGBUS;
1d3576fd 1225 }
4af6b225 1226out:
1d3576fd 1227 dout("page_mkwrite %p %llu~%llu = %d\n", inode, off, len, ret);
4af6b225
YS
1228 if (ret != VM_FAULT_LOCKED)
1229 unlock_page(page);
1d3576fd
SW
1230 return ret;
1231}
1232
1233static struct vm_operations_struct ceph_vmops = {
1234 .fault = filemap_fault,
1235 .page_mkwrite = ceph_page_mkwrite,
0b173bc4 1236 .remap_pages = generic_file_remap_pages,
1d3576fd
SW
1237};
1238
1239int ceph_mmap(struct file *file, struct vm_area_struct *vma)
1240{
1241 struct address_space *mapping = file->f_mapping;
1242
1243 if (!mapping->a_ops->readpage)
1244 return -ENOEXEC;
1245 file_accessed(file);
1246 vma->vm_ops = &ceph_vmops;
1d3576fd
SW
1247 return 0;
1248}
This page took 0.427298 seconds and 5 git commands to generate.