Whamcloud - gitweb
LU-6464 ldiskfs: 64bit pointers in ext4_map_inode_page()
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_io.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/osd/osd_io.c
37  *
38  * body operations
39  *
40  * Author: Nikita Danilov <nikita@clusterfs.com>
41  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
42  *
43  */
44
45 /* LUSTRE_VERSION_CODE */
46 #include <lustre_ver.h>
47 /* prerequisite for linux/xattr.h */
48 #include <linux/types.h>
49 /* prerequisite for linux/xattr.h */
50 #include <linux/fs.h>
51
52 /*
53  * struct OBD_{ALLOC,FREE}*()
54  * OBD_FAIL_CHECK
55  */
56 #include <obd_support.h>
57
58 #include "osd_internal.h"
59
60 /* ext_depth() */
61 #include <ldiskfs/ldiskfs_extents.h>
62
63 static int __osd_init_iobuf(struct osd_device *d, struct osd_iobuf *iobuf,
64                             int rw, int line, int pages)
65 {
66         int blocks, i;
67
68         LASSERTF(iobuf->dr_elapsed_valid == 0,
69                  "iobuf %p, reqs %d, rw %d, line %d\n", iobuf,
70                  atomic_read(&iobuf->dr_numreqs), iobuf->dr_rw,
71                  iobuf->dr_init_at);
72         LASSERT(pages <= PTLRPC_MAX_BRW_PAGES);
73
74         init_waitqueue_head(&iobuf->dr_wait);
75         atomic_set(&iobuf->dr_numreqs, 0);
76         iobuf->dr_npages = 0;
77         iobuf->dr_error = 0;
78         iobuf->dr_dev = d;
79         iobuf->dr_frags = 0;
80         iobuf->dr_elapsed = 0;
81         /* must be counted before, so assert */
82         iobuf->dr_rw = rw;
83         iobuf->dr_init_at = line;
84
85         blocks = pages * (PAGE_CACHE_SIZE >> osd_sb(d)->s_blocksize_bits);
86         if (iobuf->dr_bl_buf.lb_len >= blocks * sizeof(iobuf->dr_blocks[0])) {
87                 LASSERT(iobuf->dr_pg_buf.lb_len >=
88                         pages * sizeof(iobuf->dr_pages[0]));
89                 return 0;
90         }
91
92         /* start with 1MB for 4K blocks */
93         i = 256;
94         while (i <= PTLRPC_MAX_BRW_PAGES && i < pages)
95                 i <<= 1;
96
97         CDEBUG(D_OTHER, "realloc %u for %u (%u) pages\n",
98                (unsigned)(pages * sizeof(iobuf->dr_pages[0])), i, pages);
99         pages = i;
100         blocks = pages * (PAGE_CACHE_SIZE >> osd_sb(d)->s_blocksize_bits);
101         iobuf->dr_max_pages = 0;
102         CDEBUG(D_OTHER, "realloc %u for %u blocks\n",
103                (unsigned)(blocks * sizeof(iobuf->dr_blocks[0])), blocks);
104
105         lu_buf_realloc(&iobuf->dr_bl_buf, blocks * sizeof(iobuf->dr_blocks[0]));
106         iobuf->dr_blocks = iobuf->dr_bl_buf.lb_buf;
107         if (unlikely(iobuf->dr_blocks == NULL))
108                 return -ENOMEM;
109
110         lu_buf_realloc(&iobuf->dr_pg_buf, pages * sizeof(iobuf->dr_pages[0]));
111         iobuf->dr_pages = iobuf->dr_pg_buf.lb_buf;
112         if (unlikely(iobuf->dr_pages == NULL))
113                 return -ENOMEM;
114
115         iobuf->dr_max_pages = pages;
116
117         return 0;
118 }
119 #define osd_init_iobuf(dev, iobuf, rw, pages) \
120         __osd_init_iobuf(dev, iobuf, rw, __LINE__, pages)
121
122 static void osd_iobuf_add_page(struct osd_iobuf *iobuf, struct page *page)
123 {
124         LASSERT(iobuf->dr_npages < iobuf->dr_max_pages);
125         iobuf->dr_pages[iobuf->dr_npages++] = page;
126 }
127
128 void osd_fini_iobuf(struct osd_device *d, struct osd_iobuf *iobuf)
129 {
130         int rw = iobuf->dr_rw;
131
132         if (iobuf->dr_elapsed_valid) {
133                 iobuf->dr_elapsed_valid = 0;
134                 LASSERT(iobuf->dr_dev == d);
135                 LASSERT(iobuf->dr_frags > 0);
136                 lprocfs_oh_tally(&d->od_brw_stats.
137                                  hist[BRW_R_DIO_FRAGS+rw],
138                                  iobuf->dr_frags);
139                 lprocfs_oh_tally_log2(&d->od_brw_stats.hist[BRW_R_IO_TIME+rw],
140                                       iobuf->dr_elapsed);
141         }
142 }
143
144 #ifndef REQ_WRITE /* pre-2.6.35 */
145 #define __REQ_WRITE BIO_RW
146 #endif
147
148 static void dio_complete_routine(struct bio *bio, int error)
149 {
150         struct osd_iobuf *iobuf = bio->bi_private;
151 #ifdef HAVE_BVEC_ITER
152         struct bvec_iter iter;
153         struct bio_vec bvl;
154 #else
155         int iter;
156         struct bio_vec *bvl;
157 #endif
158
159         /* CAVEAT EMPTOR: possibly in IRQ context
160          * DO NOT record procfs stats here!!! */
161
162         if (unlikely(iobuf == NULL)) {
163                 CERROR("***** bio->bi_private is NULL!  This should never "
164                        "happen.  Normally, I would crash here, but instead I "
165                        "will dump the bio contents to the console.  Please "
166                        "report this to <https://jira.hpdd.intel.com/> , along "
167                        "with any interesting messages leading up to this point "
168                        "(like SCSI errors, perhaps).  Because bi_private is "
169                        "NULL, I can't wake up the thread that initiated this "
170                        "IO - you will probably have to reboot this node.\n");
171                 CERROR("bi_next: %p, bi_flags: %lx, bi_rw: %lu, bi_vcnt: %d, "
172                        "bi_idx: %d, bi->size: %d, bi_end_io: %p, bi_cnt: %d, "
173                        "bi_private: %p\n", bio->bi_next, bio->bi_flags,
174                         bio->bi_rw, bio->bi_vcnt, bio_idx(bio),
175                         bio_sectors(bio) << 9, bio->bi_end_io,
176                         atomic_read(&bio->bi_cnt), bio->bi_private);
177                 return;
178         }
179
180         /* the check is outside of the cycle for performance reason -bzzz */
181         if (!test_bit(__REQ_WRITE, &bio->bi_rw)) {
182                 bio_for_each_segment(bvl, bio, iter) {
183                         if (likely(error == 0))
184                                 SetPageUptodate(bvec_iter_page(&bvl, iter));
185                         LASSERT(PageLocked(bvec_iter_page(&bvl, iter)));
186                 }
187                 atomic_dec(&iobuf->dr_dev->od_r_in_flight);
188         } else {
189                 atomic_dec(&iobuf->dr_dev->od_w_in_flight);
190         }
191
192         /* any real error is good enough -bzzz */
193         if (error != 0 && iobuf->dr_error == 0)
194                 iobuf->dr_error = error;
195
196         /*
197          * set dr_elapsed before dr_numreqs turns to 0, otherwise
198          * it's possible that service thread will see dr_numreqs
199          * is zero, but dr_elapsed is not set yet, leading to lost
200          * data in this processing and an assertion in a subsequent
201          * call to OSD.
202          */
203         if (atomic_read(&iobuf->dr_numreqs) == 1) {
204                 iobuf->dr_elapsed = jiffies - iobuf->dr_start_time;
205                 iobuf->dr_elapsed_valid = 1;
206         }
207         if (atomic_dec_and_test(&iobuf->dr_numreqs))
208                 wake_up(&iobuf->dr_wait);
209
210         /* Completed bios used to be chained off iobuf->dr_bios and freed in
211          * filter_clear_dreq().  It was then possible to exhaust the biovec-256
212          * mempool when serious on-disk fragmentation was encountered,
213          * deadlocking the OST.  The bios are now released as soon as complete
214          * so the pool cannot be exhausted while IOs are competing. bug 10076 */
215         bio_put(bio);
216 }
217
218 static void record_start_io(struct osd_iobuf *iobuf, int size)
219 {
220         struct osd_device    *osd = iobuf->dr_dev;
221         struct obd_histogram *h = osd->od_brw_stats.hist;
222
223         iobuf->dr_frags++;
224         atomic_inc(&iobuf->dr_numreqs);
225
226         if (iobuf->dr_rw == 0) {
227                 atomic_inc(&osd->od_r_in_flight);
228                 lprocfs_oh_tally(&h[BRW_R_RPC_HIST],
229                                  atomic_read(&osd->od_r_in_flight));
230                 lprocfs_oh_tally_log2(&h[BRW_R_DISK_IOSIZE], size);
231         } else if (iobuf->dr_rw == 1) {
232                 atomic_inc(&osd->od_w_in_flight);
233                 lprocfs_oh_tally(&h[BRW_W_RPC_HIST],
234                                  atomic_read(&osd->od_w_in_flight));
235                 lprocfs_oh_tally_log2(&h[BRW_W_DISK_IOSIZE], size);
236         } else {
237                 LBUG();
238         }
239 }
240
241 static void osd_submit_bio(int rw, struct bio *bio)
242 {
243         LASSERTF(rw == 0 || rw == 1, "%x\n", rw);
244         if (rw == 0)
245                 submit_bio(READ, bio);
246         else
247                 submit_bio(WRITE, bio);
248 }
249
250 static int can_be_merged(struct bio *bio, sector_t sector)
251 {
252         if (bio == NULL)
253                 return 0;
254
255         return bio_end_sector(bio) == sector ? 1 : 0;
256 }
257
258 static int osd_do_bio(struct osd_device *osd, struct inode *inode,
259                       struct osd_iobuf *iobuf)
260 {
261         int            blocks_per_page = PAGE_CACHE_SIZE >> inode->i_blkbits;
262         struct page  **pages = iobuf->dr_pages;
263         int            npages = iobuf->dr_npages;
264         sector_t      *blocks = iobuf->dr_blocks;
265         int            total_blocks = npages * blocks_per_page;
266         int            sector_bits = inode->i_sb->s_blocksize_bits - 9;
267         unsigned int   blocksize = inode->i_sb->s_blocksize;
268         struct bio    *bio = NULL;
269         struct page   *page;
270         unsigned int   page_offset;
271         sector_t       sector;
272         int            nblocks;
273         int            block_idx;
274         int            page_idx;
275         int            i;
276         int            rc = 0;
277         ENTRY;
278
279         LASSERT(iobuf->dr_npages == npages);
280
281         osd_brw_stats_update(osd, iobuf);
282         iobuf->dr_start_time = cfs_time_current();
283
284         for (page_idx = 0, block_idx = 0;
285              page_idx < npages;
286              page_idx++, block_idx += blocks_per_page) {
287
288                 page = pages[page_idx];
289                 LASSERT(block_idx + blocks_per_page <= total_blocks);
290
291                 for (i = 0, page_offset = 0;
292                      i < blocks_per_page;
293                      i += nblocks, page_offset += blocksize * nblocks) {
294
295                         nblocks = 1;
296
297                         if (blocks[block_idx + i] == 0) {  /* hole */
298                                 LASSERTF(iobuf->dr_rw == 0,
299                                          "page_idx %u, block_idx %u, i %u\n",
300                                          page_idx, block_idx, i);
301                                 memset(kmap(page) + page_offset, 0, blocksize);
302                                 kunmap(page);
303                                 continue;
304                         }
305
306                         sector = (sector_t)blocks[block_idx + i] << sector_bits;
307
308                         /* Additional contiguous file blocks? */
309                         while (i + nblocks < blocks_per_page &&
310                                (sector + (nblocks << sector_bits)) ==
311                                ((sector_t)blocks[block_idx + i + nblocks] <<
312                                 sector_bits))
313                                 nblocks++;
314
315                         if (bio != NULL &&
316                             can_be_merged(bio, sector) &&
317                             bio_add_page(bio, page,
318                                          blocksize * nblocks, page_offset) != 0)
319                                 continue;       /* added this frag OK */
320
321                         if (bio != NULL) {
322                                 struct request_queue *q =
323                                         bdev_get_queue(bio->bi_bdev);
324                                 unsigned int bi_size = bio_sectors(bio) << 9;
325
326                                 /* Dang! I have to fragment this I/O */
327                                 CDEBUG(D_INODE, "bio++ sz %d vcnt %d(%d) "
328                                        "sectors %d(%d) psg %d(%d) hsg %d(%d)\n",
329                                        bi_size, bio->bi_vcnt, bio->bi_max_vecs,
330                                        bio_sectors(bio),
331                                        queue_max_sectors(q),
332                                        bio_phys_segments(q, bio),
333                                        queue_max_phys_segments(q),
334                                        0, queue_max_hw_segments(q));
335                                 record_start_io(iobuf, bi_size);
336                                 osd_submit_bio(iobuf->dr_rw, bio);
337                         }
338
339                         /* allocate new bio */
340                         bio = bio_alloc(GFP_NOIO, min(BIO_MAX_PAGES,
341                                                       (npages - page_idx) *
342                                                       blocks_per_page));
343                         if (bio == NULL) {
344                                 CERROR("Can't allocate bio %u*%u = %u pages\n",
345                                        (npages - page_idx), blocks_per_page,
346                                        (npages - page_idx) * blocks_per_page);
347                                 rc = -ENOMEM;
348                                 goto out;
349                         }
350
351                         bio->bi_bdev = inode->i_sb->s_bdev;
352                         bio_set_sector(bio, sector);
353                         bio->bi_rw = (iobuf->dr_rw == 0) ? READ : WRITE;
354                         bio->bi_end_io = dio_complete_routine;
355                         bio->bi_private = iobuf;
356
357                         rc = bio_add_page(bio, page,
358                                           blocksize * nblocks, page_offset);
359                         LASSERT(rc != 0);
360                 }
361         }
362
363         if (bio != NULL) {
364                 record_start_io(iobuf, bio_sectors(bio) << 9);
365                 osd_submit_bio(iobuf->dr_rw, bio);
366                 rc = 0;
367         }
368
369 out:
370         /* in order to achieve better IO throughput, we don't wait for writes
371          * completion here. instead we proceed with transaction commit in
372          * parallel and wait for IO completion once transaction is stopped
373          * see osd_trans_stop() for more details -bzzz */
374         if (iobuf->dr_rw == 0) {
375                 wait_event(iobuf->dr_wait,
376                            atomic_read(&iobuf->dr_numreqs) == 0);
377                 osd_fini_iobuf(osd, iobuf);
378         }
379
380         if (rc == 0)
381                 rc = iobuf->dr_error;
382         RETURN(rc);
383 }
384
385 static int osd_map_remote_to_local(loff_t offset, ssize_t len, int *nrpages,
386                                    struct niobuf_local *lnb)
387 {
388         ENTRY;
389
390         *nrpages = 0;
391
392         while (len > 0) {
393                 int poff = offset & (PAGE_CACHE_SIZE - 1);
394                 int plen = PAGE_CACHE_SIZE - poff;
395
396                 if (plen > len)
397                         plen = len;
398                 lnb->lnb_file_offset = offset;
399                 lnb->lnb_page_offset = poff;
400                 lnb->lnb_len = plen;
401                 /* lnb->lnb_flags = rnb->rnb_flags; */
402                 lnb->lnb_flags = 0;
403                 lnb->lnb_page = NULL;
404                 lnb->lnb_rc = 0;
405
406                 LASSERTF(plen <= len, "plen %u, len %lld\n", plen,
407                          (long long) len);
408                 offset += plen;
409                 len -= plen;
410                 lnb++;
411                 (*nrpages)++;
412         }
413
414         RETURN(0);
415 }
416
417 static struct page *osd_get_page(struct dt_object *dt, loff_t offset, int rw)
418 {
419         struct inode      *inode = osd_dt_obj(dt)->oo_inode;
420         struct osd_device *d = osd_obj2dev(osd_dt_obj(dt));
421         struct page       *page;
422
423         LASSERT(inode);
424
425         page = find_or_create_page(inode->i_mapping, offset >> PAGE_CACHE_SHIFT,
426                                    GFP_NOFS | __GFP_HIGHMEM);
427         if (unlikely(page == NULL))
428                 lprocfs_counter_add(d->od_stats, LPROC_OSD_NO_PAGE, 1);
429
430         return page;
431 }
432
433 /*
434  * there are following "locks":
435  * journal_start
436  * i_mutex
437  * page lock
438  *
439  * osd write path:
440  *  - lock page(s)
441  *  - journal_start
442  *  - truncate_sem
443  *
444  * ext4 vmtruncate:
445  *  - lock pages, unlock
446  *  - journal_start
447  *  - lock partial page
448  *  - i_data_sem
449  *
450  */
451
452 /**
453  * Unlock and release pages loaded by osd_bufs_get()
454  *
455  * Unlock \a npages pages from \a lnb and drop the refcount on them.
456  *
457  * \param env           thread execution environment
458  * \param dt            dt object undergoing IO (OSD object + methods)
459  * \param lnb           array of pages undergoing IO
460  * \param npages        number of pages in \a lnb
461  *
462  * \retval 0            always
463  */
464 static int osd_bufs_put(const struct lu_env *env, struct dt_object *dt,
465                         struct niobuf_local *lnb, int npages)
466 {
467         int i;
468
469         for (i = 0; i < npages; i++) {
470                 if (lnb[i].lnb_page == NULL)
471                         continue;
472                 LASSERT(PageLocked(lnb[i].lnb_page));
473                 unlock_page(lnb[i].lnb_page);
474                 page_cache_release(lnb[i].lnb_page);
475                 lu_object_put(env, &dt->do_lu);
476                 lnb[i].lnb_page = NULL;
477         }
478
479         RETURN(0);
480 }
481
482 /**
483  * Load and lock pages undergoing IO
484  *
485  * Pages as described in the \a lnb array are fetched (from disk or cache)
486  * and locked for IO by the caller.
487  *
488  * DLM locking protects us from write and truncate competing for same region,
489  * but partial-page truncate can leave dirty pages in the cache for ldiskfs.
490  * It's possible the writeout on a such a page is in progress when we access
491  * it. It's also possible that during this writeout we put new (partial) data
492  * into the page, but won't be able to proceed in filter_commitrw_write().
493  * Therefore, just wait for writeout completion as it should be rare enough.
494  *
495  * \param env           thread execution environment
496  * \param dt            dt object undergoing IO (OSD object + methods)
497  * \param pos           byte offset of IO start
498  * \param len           number of bytes of IO
499  * \param lnb           array of extents undergoing IO
500  * \param rw            read or write operation?
501  * \param capa          capabilities
502  *
503  * \retval pages        (zero or more) loaded successfully
504  * \retval -ENOMEM      on memory/page allocation error
505  */
506 static int osd_bufs_get(const struct lu_env *env, struct dt_object *dt,
507                         loff_t pos, ssize_t len, struct niobuf_local *lnb,
508                         int rw)
509 {
510         struct osd_object   *obj    = osd_dt_obj(dt);
511         int npages, i, rc = 0;
512
513         LASSERT(obj->oo_inode);
514
515         osd_map_remote_to_local(pos, len, &npages, lnb);
516
517         for (i = 0; i < npages; i++, lnb++) {
518                 lnb->lnb_page = osd_get_page(dt, lnb->lnb_file_offset, rw);
519                 if (lnb->lnb_page == NULL)
520                         GOTO(cleanup, rc = -ENOMEM);
521
522                 wait_on_page_writeback(lnb->lnb_page);
523                 BUG_ON(PageWriteback(lnb->lnb_page));
524
525                 lu_object_get(&dt->do_lu);
526         }
527
528         RETURN(i);
529
530 cleanup:
531         if (i > 0)
532                 osd_bufs_put(env, dt, lnb - i, i);
533         return rc;
534 }
535
536 #ifndef HAVE_LDISKFS_MAP_BLOCKS
537
538 #ifdef HAVE_EXT_PBLOCK /* Name changed to ext4_ext_pblock for kernel 2.6.35 */
539 #define ldiskfs_ext_pblock(ex) ext_pblock((ex))
540 #endif
541
542 struct bpointers {
543         sector_t *blocks;
544         unsigned long start;
545         int num;
546         int init_num;
547         int create;
548 };
549
550 static long ldiskfs_ext_find_goal(struct inode *inode,
551                                   struct ldiskfs_ext_path *path,
552                                   unsigned long block, int *aflags)
553 {
554         struct ldiskfs_inode_info *ei = LDISKFS_I(inode);
555         unsigned long bg_start;
556         unsigned long colour;
557         int depth;
558
559         if (path) {
560                 struct ldiskfs_extent *ex;
561                 depth = path->p_depth;
562
563                 /* try to predict block placement */
564                 if ((ex = path[depth].p_ext))
565                         return ldiskfs_ext_pblock(ex) +
566                                 (block - le32_to_cpu(ex->ee_block));
567
568                 /* it looks index is empty
569                  * try to find starting from index itself */
570                 if (path[depth].p_bh)
571                         return path[depth].p_bh->b_blocknr;
572         }
573
574         /* OK. use inode's group */
575         bg_start = (ei->i_block_group * LDISKFS_BLOCKS_PER_GROUP(inode->i_sb)) +
576                 le32_to_cpu(LDISKFS_SB(inode->i_sb)->s_es->s_first_data_block);
577         colour = (current->pid % 16) *
578                 (LDISKFS_BLOCKS_PER_GROUP(inode->i_sb) / 16);
579         return bg_start + colour + block;
580 }
581
582 static unsigned long new_blocks(handle_t *handle, struct inode *inode,
583                                 struct ldiskfs_ext_path *path,
584                                 unsigned long block, unsigned long *count,
585                                 int *err)
586 {
587         struct ldiskfs_allocation_request ar;
588         unsigned long pblock;
589         int aflags;
590
591         /* find neighbour allocated blocks */
592         ar.lleft = block;
593         *err = ldiskfs_ext_search_left(inode, path, &ar.lleft, &ar.pleft);
594         if (*err)
595                 return 0;
596         ar.lright = block;
597         *err = ldiskfs_ext_search_right(inode, path, &ar.lright, &ar.pright);
598         if (*err)
599                 return 0;
600
601         /* allocate new block */
602         ar.goal = ldiskfs_ext_find_goal(inode, path, block, &aflags);
603         ar.inode = inode;
604         ar.logical = block;
605         ar.len = *count;
606         ar.flags = LDISKFS_MB_HINT_DATA;
607         pblock = ldiskfs_mb_new_blocks(handle, &ar, err);
608         *count = ar.len;
609         return pblock;
610 }
611
612 static int ldiskfs_ext_new_extent_cb(struct inode *inode,
613                                      struct ldiskfs_ext_path *path,
614                                      struct ldiskfs_ext_cache *cex,
615 #ifdef HAVE_EXT_PREPARE_CB_EXTENT
616                                      struct ldiskfs_extent *ex,
617 #endif
618                                      void *cbdata)
619 {
620         struct bpointers *bp = cbdata;
621         struct ldiskfs_extent nex;
622         unsigned long pblock;
623         unsigned long tgen;
624         int err, i;
625         unsigned long count;
626         handle_t *handle;
627
628 #ifdef LDISKFS_EXT_CACHE_EXTENT /* until kernel 2.6.37 */
629         if (cex->ec_type == LDISKFS_EXT_CACHE_EXTENT) {
630 #else
631         if ((cex->ec_len != 0) && (cex->ec_start != 0)) {
632 #endif
633                 err = EXT_CONTINUE;
634                 goto map;
635         }
636
637         if (bp->create == 0) {
638                 i = 0;
639                 if (cex->ec_block < bp->start)
640                         i = bp->start - cex->ec_block;
641                 if (i >= cex->ec_len)
642                         CERROR("nothing to do?! i = %d, e_num = %u\n",
643                                         i, cex->ec_len);
644                 for (; i < cex->ec_len && bp->num; i++) {
645                         *(bp->blocks) = 0;
646                         bp->blocks++;
647                         bp->num--;
648                         bp->start++;
649                 }
650
651                 return EXT_CONTINUE;
652         }
653
654         tgen = LDISKFS_I(inode)->i_ext_generation;
655         count = ldiskfs_ext_calc_credits_for_insert(inode, path);
656
657         handle = osd_journal_start(inode, LDISKFS_HT_MISC,
658                                    count + LDISKFS_ALLOC_NEEDED + 1);
659         if (IS_ERR(handle)) {
660                 return PTR_ERR(handle);
661         }
662
663         if (tgen != LDISKFS_I(inode)->i_ext_generation) {
664                 /* the tree has changed. so path can be invalid at moment */
665                 ldiskfs_journal_stop(handle);
666                 return EXT_REPEAT;
667         }
668
669         /* In 2.6.32 kernel, ldiskfs_ext_walk_space()'s callback func is not
670          * protected by i_data_sem as whole. so we patch it to store
671          * generation to path and now verify the tree hasn't changed */
672         down_write((&LDISKFS_I(inode)->i_data_sem));
673
674         /* validate extent, make sure the extent tree does not changed */
675         if (LDISKFS_I(inode)->i_ext_generation != path[0].p_generation) {
676                 /* cex is invalid, try again */
677                 up_write(&LDISKFS_I(inode)->i_data_sem);
678                 ldiskfs_journal_stop(handle);
679                 return EXT_REPEAT;
680         }
681
682         count = cex->ec_len;
683         pblock = new_blocks(handle, inode, path, cex->ec_block, &count, &err);
684         if (!pblock)
685                 goto out;
686         BUG_ON(count > cex->ec_len);
687
688         /* insert new extent */
689         nex.ee_block = cpu_to_le32(cex->ec_block);
690         ldiskfs_ext_store_pblock(&nex, pblock);
691         nex.ee_len = cpu_to_le16(count);
692         err = ldiskfs_ext_insert_extent(handle, inode, path, &nex, 0);
693         if (err) {
694                 /* free data blocks we just allocated */
695                 /* not a good idea to call discard here directly,
696                  * but otherwise we'd need to call it every free() */
697                 ldiskfs_discard_preallocations(inode);
698 #ifdef HAVE_EXT_FREE_BLOCK_WITH_BUFFER_HEAD /* Introduced in 2.6.32-rc7 */
699                 ldiskfs_free_blocks(handle, inode, NULL,
700                                     ldiskfs_ext_pblock(&nex),
701                                     le16_to_cpu(nex.ee_len), 0);
702 #else
703                 ldiskfs_free_blocks(handle, inode, ldiskfs_ext_pblock(&nex),
704                                     le16_to_cpu(nex.ee_len), 0);
705 #endif
706                 goto out;
707         }
708
709         /*
710          * Putting len of the actual extent we just inserted,
711          * we are asking ldiskfs_ext_walk_space() to continue
712          * scaning after that block
713          */
714         cex->ec_len = le16_to_cpu(nex.ee_len);
715         cex->ec_start = ldiskfs_ext_pblock(&nex);
716         BUG_ON(le16_to_cpu(nex.ee_len) == 0);
717         BUG_ON(le32_to_cpu(nex.ee_block) != cex->ec_block);
718
719 out:
720         up_write((&LDISKFS_I(inode)->i_data_sem));
721         ldiskfs_journal_stop(handle);
722 map:
723         if (err >= 0) {
724                 /* map blocks */
725                 if (bp->num == 0) {
726                         CERROR("hmm. why do we find this extent?\n");
727                         CERROR("initial space: %lu:%u\n",
728                                 bp->start, bp->init_num);
729 #ifdef LDISKFS_EXT_CACHE_EXTENT /* until kernel 2.6.37 */
730                         CERROR("current extent: %u/%u/%llu %d\n",
731                                 cex->ec_block, cex->ec_len,
732                                 (unsigned long long)cex->ec_start,
733                                 cex->ec_type);
734 #else
735                         CERROR("current extent: %u/%u/%llu\n",
736                                 cex->ec_block, cex->ec_len,
737                                 (unsigned long long)cex->ec_start);
738 #endif
739                 }
740                 i = 0;
741                 if (cex->ec_block < bp->start)
742                         i = bp->start - cex->ec_block;
743                 if (i >= cex->ec_len)
744                         CERROR("nothing to do?! i = %d, e_num = %u\n",
745                                         i, cex->ec_len);
746                 for (; i < cex->ec_len && bp->num; i++) {
747                         *(bp->blocks) = cex->ec_start + i;
748 #ifdef LDISKFS_EXT_CACHE_EXTENT /* until kernel 2.6.37 */
749                         if (cex->ec_type != LDISKFS_EXT_CACHE_EXTENT) {
750 #else
751                         if ((cex->ec_len == 0) || (cex->ec_start == 0)) {
752 #endif
753                                 /* unmap any possible underlying metadata from
754                                  * the block device mapping.  bug 6998. */
755                                 unmap_underlying_metadata(inode->i_sb->s_bdev,
756                                                           *(bp->blocks));
757                         }
758                         bp->blocks++;
759                         bp->num--;
760                         bp->start++;
761                 }
762         }
763         return err;
764 }
765
766 static int osd_ldiskfs_map_nblocks(struct inode *inode, unsigned long block,
767                                    unsigned long num, sector_t *blocks,
768                                    int create)
769 {
770         struct bpointers bp;
771         int err;
772
773         CDEBUG(D_OTHER, "blocks %lu-%lu requested for inode %u\n",
774                block, block + num - 1, (unsigned) inode->i_ino);
775
776         bp.blocks = blocks;
777         bp.start = block;
778         bp.init_num = bp.num = num;
779         bp.create = create;
780
781         err = ldiskfs_ext_walk_space(inode, block, num,
782                                          ldiskfs_ext_new_extent_cb, &bp);
783         ldiskfs_ext_invalidate_cache(inode);
784
785         return err;
786 }
787
788 static int osd_ldiskfs_map_bm_inode_pages(struct inode *inode,
789                                           struct page **page, int pages,
790                                           sector_t *blocks, int create)
791 {
792         int blocks_per_page = PAGE_CACHE_SIZE >> inode->i_blkbits;
793         pgoff_t bitmap_max_page_index;
794         sector_t *b;
795         int rc = 0, i;
796
797         bitmap_max_page_index = LDISKFS_SB(inode->i_sb)->s_bitmap_maxbytes >>
798                                 PAGE_SHIFT;
799         for (i = 0, b = blocks; i < pages; i++, page++) {
800                 if ((*page)->index + 1 >= bitmap_max_page_index) {
801                         rc = -EFBIG;
802                         break;
803                 }
804                 rc = ldiskfs_map_inode_page(inode, *page, b, create);
805                 if (rc) {
806                         CERROR("ino %lu, blk %llu create %d: rc %d\n",
807                                inode->i_ino,
808                                (unsigned long long)*b, create, rc);
809                         break;
810                 }
811                 b += blocks_per_page;
812         }
813         return rc;
814 }
815
816 static int osd_ldiskfs_map_ext_inode_pages(struct inode *inode,
817                                            struct page **page,
818                                            int pages, sector_t *blocks,
819                                            int create)
820 {
821         int blocks_per_page = PAGE_CACHE_SIZE >> inode->i_blkbits;
822         int rc = 0, i = 0;
823         struct page *fp = NULL;
824         int clen = 0;
825         pgoff_t extent_max_page_index;
826
827         extent_max_page_index = inode->i_sb->s_maxbytes >> PAGE_SHIFT;
828
829         CDEBUG(D_OTHER, "inode %lu: map %d pages from %lu\n",
830                 inode->i_ino, pages, (*page)->index);
831
832         /* pages are sorted already. so, we just have to find
833          * contig. space and process them properly */
834         while (i < pages) {
835                 if (fp == NULL) {
836                         /* start new extent */
837                         fp = *page++;
838                         clen = 1;
839                         i++;
840                         continue;
841                 } else if (fp->index + clen == (*page)->index) {
842                         /* continue the extent */
843                         page++;
844                         clen++;
845                         i++;
846                         continue;
847                 }
848
849                 if (fp->index + i >= extent_max_page_index)
850                         GOTO(cleanup, rc = -EFBIG);
851
852                 /* process found extent */
853                 rc = osd_ldiskfs_map_nblocks(inode, fp->index * blocks_per_page,
854                                              clen * blocks_per_page, blocks,
855                                              create);
856                 if (rc)
857                         GOTO(cleanup, rc);
858
859                 /* look for next extent */
860                 fp = NULL;
861                 blocks += blocks_per_page * clen;
862         }
863
864         if (fp)
865                 rc = osd_ldiskfs_map_nblocks(inode, fp->index * blocks_per_page,
866                                              clen * blocks_per_page, blocks,
867                                              create);
868 cleanup:
869         return rc;
870 }
871
872 static int osd_ldiskfs_map_inode_pages(struct inode *inode, struct page **page,
873                                        int pages, sector_t *blocks,
874                                        int create)
875 {
876         int rc;
877
878         if (LDISKFS_I(inode)->i_flags & LDISKFS_EXTENTS_FL) {
879                 rc = osd_ldiskfs_map_ext_inode_pages(inode, page, pages,
880                                                      blocks, create);
881                 return rc;
882         }
883         rc = osd_ldiskfs_map_bm_inode_pages(inode, page, pages, blocks, create);
884
885         return rc;
886 }
887 #else
888 static int osd_ldiskfs_map_inode_pages(struct inode *inode, struct page **page,
889                                        int pages, sector_t *blocks,
890                                        int create)
891 {
892         int blocks_per_page = PAGE_CACHE_SIZE >> inode->i_blkbits;
893         int rc = 0, i = 0;
894         struct page *fp = NULL;
895         int clen = 0;
896         pgoff_t max_page_index;
897
898         max_page_index = inode->i_sb->s_maxbytes >> PAGE_SHIFT;
899
900         CDEBUG(D_OTHER, "inode %lu: map %d pages from %lu\n",
901                 inode->i_ino, pages, (*page)->index);
902
903         /* pages are sorted already. so, we just have to find
904          * contig. space and process them properly */
905         while (i < pages) {
906                 long blen, total = 0;
907                 handle_t *handle = NULL;
908                 struct ldiskfs_map_blocks map = { 0 };
909
910                 if (fp == NULL) { /* start new extent */
911                         fp = *page++;
912                         clen = 1;
913                         if (++i != pages)
914                                 continue;
915                 } else if (fp->index + clen == (*page)->index) {
916                         /* continue the extent */
917                         page++;
918                         clen++;
919                         if (++i != pages)
920                                 continue;
921                 }
922                 if (fp->index + i >= max_page_index)
923                         GOTO(cleanup, rc = -EFBIG);
924                 /* process found extent */
925                 map.m_lblk = fp->index * blocks_per_page;
926                 map.m_len = blen = clen * blocks_per_page;
927                 if (create) {
928                         create = LDISKFS_GET_BLOCKS_CREATE;
929                         handle = ldiskfs_journal_current_handle();
930                         LASSERT(handle != NULL);
931                 }
932 cont_map:
933                 rc = ldiskfs_map_blocks(handle, inode, &map, create);
934                 if (rc >= 0) {
935                         int c = 0;
936                         for (; total < blen && c < map.m_len; c++, total++) {
937                                 if (rc == 0) {
938                                         *(blocks + total) = 0;
939                                         total++;
940                                         break;
941                                 } else {
942                                         *(blocks + total) = map.m_pblk + c;
943                                         /* unmap any possible underlying
944                                          * metadata from the block device
945                                          * mapping.  bug 6998. */
946                                         if ((map.m_flags & LDISKFS_MAP_NEW) &&
947                                             create)
948                                                 unmap_underlying_metadata(
949                                                         inode->i_sb->s_bdev,
950                                                         map.m_pblk + c);
951                                 }
952                         }
953                         rc = 0;
954                 }
955                 if (rc == 0 && total < blen) {
956                         map.m_lblk = fp->index * blocks_per_page + total;
957                         map.m_len = blen - total;
958                         goto cont_map;
959                 }
960                 if (rc != 0)
961                         GOTO(cleanup, rc);
962
963                 /* look for next extent */
964                 fp = NULL;
965                 blocks += blocks_per_page * clen;
966         }
967 cleanup:
968         return rc;
969 }
970 #endif /* HAVE_LDISKFS_MAP_BLOCKS */
971
972 static int osd_write_prep(const struct lu_env *env, struct dt_object *dt,
973                           struct niobuf_local *lnb, int npages)
974 {
975         struct osd_thread_info *oti   = osd_oti_get(env);
976         struct osd_iobuf       *iobuf = &oti->oti_iobuf;
977         struct inode           *inode = osd_dt_obj(dt)->oo_inode;
978         struct osd_device      *osd   = osd_obj2dev(osd_dt_obj(dt));
979         struct timeval          start;
980         struct timeval          end;
981         unsigned long           timediff;
982         ssize_t                 isize;
983         __s64                   maxidx;
984         int                     rc = 0;
985         int                     i;
986         int                     cache = 0;
987
988         LASSERT(inode);
989
990         rc = osd_init_iobuf(osd, iobuf, 0, npages);
991         if (unlikely(rc != 0))
992                 RETURN(rc);
993
994         isize = i_size_read(inode);
995         maxidx = ((isize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) - 1;
996
997         if (osd->od_writethrough_cache)
998                 cache = 1;
999         if (isize > osd->od_readcache_max_filesize)
1000                 cache = 0;
1001
1002         do_gettimeofday(&start);
1003         for (i = 0; i < npages; i++) {
1004
1005                 if (cache == 0)
1006                         generic_error_remove_page(inode->i_mapping,
1007                                                   lnb[i].lnb_page);
1008
1009                 /*
1010                  * till commit the content of the page is undefined
1011                  * we'll set it uptodate once bulk is done. otherwise
1012                  * subsequent reads can access non-stable data
1013                  */
1014                 ClearPageUptodate(lnb[i].lnb_page);
1015
1016                 if (lnb[i].lnb_len == PAGE_CACHE_SIZE)
1017                         continue;
1018
1019                 if (maxidx >= lnb[i].lnb_page->index) {
1020                         osd_iobuf_add_page(iobuf, lnb[i].lnb_page);
1021                 } else {
1022                         long off;
1023                         char *p = kmap(lnb[i].lnb_page);
1024
1025                         off = lnb[i].lnb_page_offset;
1026                         if (off)
1027                                 memset(p, 0, off);
1028                         off = (lnb[i].lnb_page_offset + lnb[i].lnb_len) &
1029                               ~PAGE_MASK;
1030                         if (off)
1031                                 memset(p + off, 0, PAGE_CACHE_SIZE - off);
1032                         kunmap(lnb[i].lnb_page);
1033                 }
1034         }
1035         do_gettimeofday(&end);
1036         timediff = cfs_timeval_sub(&end, &start, NULL);
1037         lprocfs_counter_add(osd->od_stats, LPROC_OSD_GET_PAGE, timediff);
1038
1039         if (iobuf->dr_npages) {
1040                 rc = osd_ldiskfs_map_inode_pages(inode, iobuf->dr_pages,
1041                                                  iobuf->dr_npages,
1042                                                  iobuf->dr_blocks, 0);
1043                 if (likely(rc == 0)) {
1044                         rc = osd_do_bio(osd, inode, iobuf);
1045                         /* do IO stats for preparation reads */
1046                         osd_fini_iobuf(osd, iobuf);
1047                 }
1048         }
1049         RETURN(rc);
1050 }
1051
1052 /* Check if a block is allocated or not */
1053 static int osd_is_mapped(struct inode *inode, u64 offset)
1054 {
1055         sector_t (*fs_bmap)(struct address_space *, sector_t);
1056
1057         fs_bmap = inode->i_mapping->a_ops->bmap;
1058
1059         /* We can't know if we are overwriting or not */
1060         if (unlikely(fs_bmap == NULL))
1061                 return 0;
1062
1063         if (i_size_read(inode) == 0)
1064                 return 0;
1065
1066         /* Beyond EOF, must not be mapped */
1067         if (((i_size_read(inode) - 1) >> inode->i_blkbits) <
1068             (offset >> inode->i_blkbits))
1069                 return 0;
1070
1071         if (fs_bmap(inode->i_mapping, offset >> inode->i_blkbits) == 0)
1072                 return 0;
1073
1074         return 1;
1075 }
1076
1077 static int osd_declare_write_commit(const struct lu_env *env,
1078                                     struct dt_object *dt,
1079                                     struct niobuf_local *lnb, int npages,
1080                                     struct thandle *handle)
1081 {
1082         const struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
1083         struct inode            *inode = osd_dt_obj(dt)->oo_inode;
1084         struct osd_thandle      *oh;
1085         int                      extents = 1;
1086         int                      depth;
1087         int                      i;
1088         int                      newblocks;
1089         int                      rc = 0;
1090         int                      flags = 0;
1091         bool                     ignore_quota = false;
1092         long long                quota_space = 0;
1093         ENTRY;
1094
1095         LASSERT(handle != NULL);
1096         oh = container_of0(handle, struct osd_thandle, ot_super);
1097         LASSERT(oh->ot_handle == NULL);
1098
1099         newblocks = npages;
1100
1101         /* calculate number of extents (probably better to pass nb) */
1102         for (i = 0; i < npages; i++) {
1103                 if (i && lnb[i].lnb_file_offset !=
1104                     lnb[i - 1].lnb_file_offset + lnb[i - 1].lnb_len)
1105                         extents++;
1106
1107                 if (!osd_is_mapped(inode, lnb[i].lnb_file_offset))
1108                         quota_space += PAGE_CACHE_SIZE;
1109
1110                 /* ignore quota for the whole request if any page is from
1111                  * client cache or written by root.
1112                  *
1113                  * XXX once we drop the 1.8 client support, the checking
1114                  * for whether page is from cache can be simplified as:
1115                  * !(lnb[i].flags & OBD_BRW_SYNC)
1116                  *
1117                  * XXX we could handle this on per-lnb basis as done by
1118                  * grant. */
1119                 if ((lnb[i].lnb_flags & OBD_BRW_NOQUOTA) ||
1120                     (lnb[i].lnb_flags & (OBD_BRW_FROM_GRANT | OBD_BRW_SYNC)) ==
1121                     OBD_BRW_FROM_GRANT)
1122                         ignore_quota = true;
1123         }
1124
1125         /*
1126          * each extent can go into new leaf causing a split
1127          * 5 is max tree depth: inode + 4 index blocks
1128          * with blockmaps, depth is 3 at most
1129          */
1130         if (LDISKFS_I(inode)->i_flags & LDISKFS_EXTENTS_FL) {
1131                 /*
1132                  * many concurrent threads may grow tree by the time
1133                  * our transaction starts. so, consider 2 is a min depth
1134                  */
1135                 depth = ext_depth(inode);
1136                 depth = max(depth, 1) + 1;
1137                 newblocks += depth;
1138                 oh->ot_credits++; /* inode */
1139                 oh->ot_credits += depth * 2 * extents;
1140         } else {
1141                 depth = 3;
1142                 newblocks += depth;
1143                 oh->ot_credits++; /* inode */
1144                 oh->ot_credits += depth * extents;
1145         }
1146
1147         /* quota space for metadata blocks */
1148         quota_space += depth * extents * LDISKFS_BLOCK_SIZE(osd_sb(osd));
1149
1150         /* quota space should be reported in 1K blocks */
1151         quota_space = toqb(quota_space);
1152
1153         /* each new block can go in different group (bitmap + gd) */
1154
1155         /* we can't dirty more bitmap blocks than exist */
1156         if (newblocks > LDISKFS_SB(osd_sb(osd))->s_groups_count)
1157                 oh->ot_credits += LDISKFS_SB(osd_sb(osd))->s_groups_count;
1158         else
1159                 oh->ot_credits += newblocks;
1160
1161         /* we can't dirty more gd blocks than exist */
1162         if (newblocks > LDISKFS_SB(osd_sb(osd))->s_gdb_count)
1163                 oh->ot_credits += LDISKFS_SB(osd_sb(osd))->s_gdb_count;
1164         else
1165                 oh->ot_credits += newblocks;
1166
1167         /* make sure the over quota flags were not set */
1168         lnb[0].lnb_flags &= ~(OBD_BRW_OVER_USRQUOTA | OBD_BRW_OVER_GRPQUOTA);
1169
1170         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
1171                                    quota_space, oh, osd_dt_obj(dt), true,
1172                                    &flags, ignore_quota);
1173
1174         /* we need only to store the overquota flags in the first lnb for
1175          * now, once we support multiple objects BRW, this code needs be
1176          * revised. */
1177         if (flags & QUOTA_FL_OVER_USRQUOTA)
1178                 lnb[0].lnb_flags |= OBD_BRW_OVER_USRQUOTA;
1179         if (flags & QUOTA_FL_OVER_GRPQUOTA)
1180                 lnb[0].lnb_flags |= OBD_BRW_OVER_GRPQUOTA;
1181
1182         RETURN(rc);
1183 }
1184
1185 /* Check if a block is allocated or not */
1186 static int osd_write_commit(const struct lu_env *env, struct dt_object *dt,
1187                             struct niobuf_local *lnb, int npages,
1188                             struct thandle *thandle)
1189 {
1190         struct osd_thread_info *oti = osd_oti_get(env);
1191         struct osd_iobuf *iobuf = &oti->oti_iobuf;
1192         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1193         struct osd_device  *osd = osd_obj2dev(osd_dt_obj(dt));
1194         loff_t isize;
1195         int rc = 0, i;
1196
1197         LASSERT(inode);
1198
1199         rc = osd_init_iobuf(osd, iobuf, 1, npages);
1200         if (unlikely(rc != 0))
1201                 RETURN(rc);
1202
1203         isize = i_size_read(inode);
1204         ll_vfs_dq_init(inode);
1205
1206         for (i = 0; i < npages; i++) {
1207                 if (lnb[i].lnb_rc == -ENOSPC &&
1208                     osd_is_mapped(inode, lnb[i].lnb_file_offset)) {
1209                         /* Allow the write to proceed if overwriting an
1210                          * existing block */
1211                         lnb[i].lnb_rc = 0;
1212                 }
1213
1214                 if (lnb[i].lnb_rc) { /* ENOSPC, network RPC error, etc. */
1215                         CDEBUG(D_INODE, "Skipping [%d] == %d\n", i,
1216                                lnb[i].lnb_rc);
1217                         LASSERT(lnb[i].lnb_page);
1218                         generic_error_remove_page(inode->i_mapping,
1219                                                   lnb[i].lnb_page);
1220                         continue;
1221                 }
1222
1223                 LASSERT(PageLocked(lnb[i].lnb_page));
1224                 LASSERT(!PageWriteback(lnb[i].lnb_page));
1225
1226                 if (lnb[i].lnb_file_offset + lnb[i].lnb_len > isize)
1227                         isize = lnb[i].lnb_file_offset + lnb[i].lnb_len;
1228
1229                 /*
1230                  * Since write and truncate are serialized by oo_sem, even
1231                  * partial-page truncate should not leave dirty pages in the
1232                  * page cache.
1233                  */
1234                 LASSERT(!PageDirty(lnb[i].lnb_page));
1235
1236                 SetPageUptodate(lnb[i].lnb_page);
1237
1238                 osd_iobuf_add_page(iobuf, lnb[i].lnb_page);
1239         }
1240
1241         if (OBD_FAIL_CHECK(OBD_FAIL_OST_MAPBLK_ENOSPC)) {
1242                 rc = -ENOSPC;
1243         } else if (iobuf->dr_npages > 0) {
1244                 rc = osd_ldiskfs_map_inode_pages(inode, iobuf->dr_pages,
1245                                                  iobuf->dr_npages,
1246                                                  iobuf->dr_blocks, 1);
1247         } else {
1248                 /* no pages to write, no transno is needed */
1249                 thandle->th_local = 1;
1250         }
1251
1252         if (likely(rc == 0)) {
1253                 if (isize > i_size_read(inode)) {
1254                         i_size_write(inode, isize);
1255                         LDISKFS_I(inode)->i_disksize = isize;
1256                         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
1257                 }
1258
1259                 rc = osd_do_bio(osd, inode, iobuf);
1260                 /* we don't do stats here as in read path because
1261                  * write is async: we'll do this in osd_put_bufs() */
1262         } else {
1263                 osd_fini_iobuf(osd, iobuf);
1264         }
1265
1266         if (unlikely(rc != 0)) {
1267                 /* if write fails, we should drop pages from the cache */
1268                 for (i = 0; i < npages; i++) {
1269                         if (lnb[i].lnb_page == NULL)
1270                                 continue;
1271                         LASSERT(PageLocked(lnb[i].lnb_page));
1272                         generic_error_remove_page(inode->i_mapping,
1273                                                   lnb[i].lnb_page);
1274                 }
1275         }
1276
1277         RETURN(rc);
1278 }
1279
1280 static int osd_read_prep(const struct lu_env *env, struct dt_object *dt,
1281                          struct niobuf_local *lnb, int npages)
1282 {
1283         struct osd_thread_info *oti = osd_oti_get(env);
1284         struct osd_iobuf *iobuf = &oti->oti_iobuf;
1285         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1286         struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
1287         struct timeval start, end;
1288         unsigned long timediff;
1289         int rc = 0, i, cache = 0, cache_hits = 0, cache_misses = 0;
1290         loff_t isize;
1291
1292         LASSERT(inode);
1293
1294         rc = osd_init_iobuf(osd, iobuf, 0, npages);
1295         if (unlikely(rc != 0))
1296                 RETURN(rc);
1297
1298         isize = i_size_read(inode);
1299
1300         if (osd->od_read_cache)
1301                 cache = 1;
1302         if (isize > osd->od_readcache_max_filesize)
1303                 cache = 0;
1304
1305         do_gettimeofday(&start);
1306         for (i = 0; i < npages; i++) {
1307
1308                 if (isize <= lnb[i].lnb_file_offset)
1309                         /* If there's no more data, abort early.
1310                          * lnb->lnb_rc == 0, so it's easy to detect later. */
1311                         break;
1312
1313                 if (isize < lnb[i].lnb_file_offset + lnb[i].lnb_len - 1)
1314                         lnb[i].lnb_rc = isize - lnb[i].lnb_file_offset;
1315                 else
1316                         lnb[i].lnb_rc = lnb[i].lnb_len;
1317
1318                 if (PageUptodate(lnb[i].lnb_page)) {
1319                         cache_hits++;
1320                 } else {
1321                         cache_misses++;
1322                         osd_iobuf_add_page(iobuf, lnb[i].lnb_page);
1323                 }
1324
1325                 if (cache == 0)
1326                         generic_error_remove_page(inode->i_mapping,
1327                                                   lnb[i].lnb_page);
1328         }
1329         do_gettimeofday(&end);
1330         timediff = cfs_timeval_sub(&end, &start, NULL);
1331         lprocfs_counter_add(osd->od_stats, LPROC_OSD_GET_PAGE, timediff);
1332
1333         if (cache_hits != 0)
1334                 lprocfs_counter_add(osd->od_stats, LPROC_OSD_CACHE_HIT,
1335                                     cache_hits);
1336         if (cache_misses != 0)
1337                 lprocfs_counter_add(osd->od_stats, LPROC_OSD_CACHE_MISS,
1338                                     cache_misses);
1339         if (cache_hits + cache_misses != 0)
1340                 lprocfs_counter_add(osd->od_stats, LPROC_OSD_CACHE_ACCESS,
1341                                     cache_hits + cache_misses);
1342
1343         if (iobuf->dr_npages) {
1344                 rc = osd_ldiskfs_map_inode_pages(inode, iobuf->dr_pages,
1345                                                  iobuf->dr_npages,
1346                                                  iobuf->dr_blocks, 0);
1347                 rc = osd_do_bio(osd, inode, iobuf);
1348
1349                 /* IO stats will be done in osd_bufs_put() */
1350         }
1351
1352         RETURN(rc);
1353 }
1354
1355 /*
1356  * XXX: Another layering violation for now.
1357  *
1358  * We don't want to use ->f_op->read methods, because generic file write
1359  *
1360  *         - serializes on ->i_sem, and
1361  *
1362  *         - does a lot of extra work like balance_dirty_pages(),
1363  *
1364  * which doesn't work for globally shared files like /last_rcvd.
1365  */
1366 static int osd_ldiskfs_readlink(struct inode *inode, char *buffer, int buflen)
1367 {
1368         struct ldiskfs_inode_info *ei = LDISKFS_I(inode);
1369
1370         memcpy(buffer, (char *)ei->i_data, buflen);
1371
1372         return  buflen;
1373 }
1374
1375 int osd_ldiskfs_read(struct inode *inode, void *buf, int size, loff_t *offs)
1376 {
1377         struct buffer_head *bh;
1378         unsigned long block;
1379         int osize;
1380         int blocksize;
1381         int csize;
1382         int boffs;
1383         int err;
1384
1385         /* prevent reading after eof */
1386         spin_lock(&inode->i_lock);
1387         if (i_size_read(inode) < *offs + size) {
1388                 loff_t diff = i_size_read(inode) - *offs;
1389                 spin_unlock(&inode->i_lock);
1390                 if (diff < 0) {
1391                         CDEBUG(D_EXT2, "size %llu is too short to read @%llu\n",
1392                                i_size_read(inode), *offs);
1393                         return -EBADR;
1394                 } else if (diff == 0) {
1395                         return 0;
1396                 } else {
1397                         size = diff;
1398                 }
1399         } else {
1400                 spin_unlock(&inode->i_lock);
1401         }
1402
1403         blocksize = 1 << inode->i_blkbits;
1404         osize = size;
1405         while (size > 0) {
1406                 block = *offs >> inode->i_blkbits;
1407                 boffs = *offs & (blocksize - 1);
1408                 csize = min(blocksize - boffs, size);
1409                 bh = ldiskfs_bread(NULL, inode, block, 0, &err);
1410                 if (err != 0) {
1411                         CERROR("%s: can't read %u@%llu on ino %lu: rc = %d\n",
1412                                LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
1413                                csize, *offs, inode->i_ino, err);
1414                         if (bh != NULL)
1415                                 brelse(bh);
1416                         return err;
1417                 }
1418
1419                 if (bh != NULL) {
1420                         memcpy(buf, bh->b_data + boffs, csize);
1421                         brelse(bh);
1422                 } else {
1423                         memset(buf, 0, csize);
1424                 }
1425
1426                 *offs += csize;
1427                 buf += csize;
1428                 size -= csize;
1429         }
1430         return osize;
1431 }
1432
1433 static ssize_t osd_read(const struct lu_env *env, struct dt_object *dt,
1434                         struct lu_buf *buf, loff_t *pos)
1435 {
1436         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1437         int           rc;
1438
1439         /* Read small symlink from inode body as we need to maintain correct
1440          * on-disk symlinks for ldiskfs.
1441          */
1442         if (S_ISLNK(dt->do_lu.lo_header->loh_attr) &&
1443             (buf->lb_len < sizeof(LDISKFS_I(inode)->i_data)))
1444                 rc = osd_ldiskfs_readlink(inode, buf->lb_buf, buf->lb_len);
1445         else
1446                 rc = osd_ldiskfs_read(inode, buf->lb_buf, buf->lb_len, pos);
1447
1448         return rc;
1449 }
1450
1451 static inline int osd_extents_enabled(struct super_block *sb,
1452                                       struct inode *inode)
1453 {
1454         if (inode != NULL) {
1455                 if (LDISKFS_I(inode)->i_flags & LDISKFS_EXTENTS_FL)
1456                         return 1;
1457         } else if (LDISKFS_HAS_INCOMPAT_FEATURE(sb,
1458                                 LDISKFS_FEATURE_INCOMPAT_EXTENTS)) {
1459                 return 1;
1460         }
1461         return 0;
1462 }
1463
1464 static inline int osd_calc_bkmap_credits(struct super_block *sb,
1465                                          struct inode *inode,
1466                                          const loff_t size,
1467                                          const loff_t pos,
1468                                          const int blocks)
1469 {
1470         int credits, bits, bs, i;
1471
1472         bits = sb->s_blocksize_bits;
1473         bs = 1 << bits;
1474
1475         /* legacy blockmap: 3 levels * 3 (bitmap,gd,itself)
1476          * we do not expect blockmaps on the large files,
1477          * so let's shrink it to 2 levels (4GB files) */
1478
1479         /* this is default reservation: 2 levels */
1480         credits = (blocks + 2) * 3;
1481
1482         /* actual offset is unknown, hard to optimize */
1483         if (pos == -1)
1484                 return credits;
1485
1486         /* now check for few specific cases to optimize */
1487         if (pos + size <= LDISKFS_NDIR_BLOCKS * bs) {
1488                 /* no indirects */
1489                 credits = blocks;
1490                 /* allocate if not allocated */
1491                 if (inode == NULL) {
1492                         credits += blocks * 2;
1493                         return credits;
1494                 }
1495                 for (i = (pos >> bits); i < (pos >> bits) + blocks; i++) {
1496                         LASSERT(i < LDISKFS_NDIR_BLOCKS);
1497                         if (LDISKFS_I(inode)->i_data[i] == 0)
1498                                 credits += 2;
1499                 }
1500         } else if (pos + size <= (LDISKFS_NDIR_BLOCKS + 1024) * bs) {
1501                 /* single indirect */
1502                 credits = blocks * 3;
1503                 /* probably indirect block has been allocated already */
1504                 if (!inode || LDISKFS_I(inode)->i_data[LDISKFS_IND_BLOCK])
1505                         credits += 3;
1506         }
1507
1508         return credits;
1509 }
1510
1511 static ssize_t osd_declare_write(const struct lu_env *env, struct dt_object *dt,
1512                                  const struct lu_buf *buf, loff_t _pos,
1513                                  struct thandle *handle)
1514 {
1515         struct osd_object  *obj  = osd_dt_obj(dt);
1516         struct inode       *inode = obj->oo_inode;
1517         struct super_block *sb = osd_sb(osd_obj2dev(obj));
1518         struct osd_thandle *oh;
1519         int                 rc = 0, est = 0, credits, blocks, allocated = 0;
1520         int                 bits, bs;
1521         int                 depth, size;
1522         loff_t              pos;
1523         ENTRY;
1524
1525         LASSERT(buf != NULL);
1526         LASSERT(handle != NULL);
1527
1528         oh = container_of0(handle, struct osd_thandle, ot_super);
1529         LASSERT(oh->ot_handle == NULL);
1530
1531         size = buf->lb_len;
1532         bits = sb->s_blocksize_bits;
1533         bs = 1 << bits;
1534
1535         if (_pos == -1) {
1536                 /* if this is an append, then we
1537                  * should expect cross-block record */
1538                 pos = 0;
1539         } else {
1540                 pos = _pos;
1541         }
1542
1543         /* blocks to modify */
1544         blocks = ((pos + size + bs - 1) >> bits) - (pos >> bits);
1545         LASSERT(blocks > 0);
1546
1547         if (inode != NULL && _pos != -1) {
1548                 /* object size in blocks */
1549                 est = (i_size_read(inode) + bs - 1) >> bits;
1550                 allocated = inode->i_blocks >> (bits - 9);
1551                 if (pos + size <= i_size_read(inode) && est <= allocated) {
1552                         /* looks like an overwrite, no need to modify tree */
1553                         credits = blocks;
1554                         /* no need to modify i_size */
1555                         goto out;
1556                 }
1557         }
1558
1559         if (osd_extents_enabled(sb, inode)) {
1560                 /*
1561                  * many concurrent threads may grow tree by the time
1562                  * our transaction starts. so, consider 2 is a min depth
1563                  * for every level we may need to allocate a new block
1564                  * and take some entries from the old one. so, 3 blocks
1565                  * to allocate (bitmap, gd, itself) + old block - 4 per
1566                  * level.
1567                  */
1568                 depth = inode != NULL ? ext_depth(inode) : 0;
1569                 depth = max(depth, 1) + 1;
1570                 credits = depth;
1571                 /* if not append, then split may need to modify
1572                  * existing blocks moving entries into the new ones */
1573                 if (_pos == -1)
1574                         credits += depth;
1575                 /* blocks to store data: bitmap,gd,itself */
1576                 credits += blocks * 3;
1577         } else {
1578                 credits = osd_calc_bkmap_credits(sb, inode, size, _pos, blocks);
1579         }
1580         /* if inode is created as part of the transaction,
1581          * then it's counted already by the creation method */
1582         if (inode != NULL)
1583                 credits++;
1584
1585 out:
1586
1587         osd_trans_declare_op(env, oh, OSD_OT_WRITE, credits);
1588
1589         /* dt_declare_write() is usually called for system objects, such
1590          * as llog or last_rcvd files. We needn't enforce quota on those
1591          * objects, so always set the lqi_space as 0. */
1592         if (inode != NULL)
1593                 rc = osd_declare_inode_qid(env, i_uid_read(inode),
1594                                            i_gid_read(inode), 0, oh, obj, true,
1595                                            NULL, false);
1596         RETURN(rc);
1597 }
1598
1599 static int osd_ldiskfs_writelink(struct inode *inode, char *buffer, int buflen)
1600 {
1601         /* LU-2634: clear the extent format for fast symlink */
1602         ldiskfs_clear_inode_flag(inode, LDISKFS_INODE_EXTENTS);
1603
1604         memcpy((char *)&LDISKFS_I(inode)->i_data, (char *)buffer, buflen);
1605         LDISKFS_I(inode)->i_disksize = buflen;
1606         i_size_write(inode, buflen);
1607         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
1608
1609         return 0;
1610 }
1611
1612 int osd_ldiskfs_write_record(struct inode *inode, void *buf, int bufsize,
1613                              int write_NUL, loff_t *offs, handle_t *handle)
1614 {
1615         struct buffer_head *bh        = NULL;
1616         loff_t              offset    = *offs;
1617         loff_t              new_size  = i_size_read(inode);
1618         unsigned long       block;
1619         int                 blocksize = 1 << inode->i_blkbits;
1620         int                 err = 0;
1621         int                 size;
1622         int                 boffs;
1623         int                 dirty_inode = 0;
1624
1625         if (write_NUL) {
1626                 /*
1627                  * long symlink write does not count the NUL terminator in
1628                  * bufsize, we write it, and the inode's file size does not
1629                  * count the NUL terminator as well.
1630                  */
1631                 ((char *)buf)[bufsize] = '\0';
1632                 ++bufsize;
1633         }
1634         while (bufsize > 0) {
1635                 if (bh != NULL)
1636                         brelse(bh);
1637
1638                 block = offset >> inode->i_blkbits;
1639                 boffs = offset & (blocksize - 1);
1640                 size = min(blocksize - boffs, bufsize);
1641                 bh = ldiskfs_bread(handle, inode, block, 1, &err);
1642                 if (!bh) {
1643                         CERROR("%s: error reading offset %llu (block %lu): "
1644                                "rc = %d\n",
1645                                inode->i_sb->s_id, offset, block, err);
1646                         break;
1647                 }
1648
1649                 err = ldiskfs_journal_get_write_access(handle, bh);
1650                 if (err) {
1651                         CERROR("journal_get_write_access() returned error %d\n",
1652                                err);
1653                         break;
1654                 }
1655                 LASSERTF(boffs + size <= bh->b_size,
1656                          "boffs %d size %d bh->b_size %lu\n",
1657                          boffs, size, (unsigned long)bh->b_size);
1658                 memcpy(bh->b_data + boffs, buf, size);
1659                 err = ldiskfs_handle_dirty_metadata(handle, NULL, bh);
1660                 if (err)
1661                         break;
1662
1663                 if (offset + size > new_size)
1664                         new_size = offset + size;
1665                 offset += size;
1666                 bufsize -= size;
1667                 buf += size;
1668         }
1669         if (bh)
1670                 brelse(bh);
1671
1672         if (write_NUL)
1673                 --new_size;
1674         /* correct in-core and on-disk sizes */
1675         if (new_size > i_size_read(inode)) {
1676                 spin_lock(&inode->i_lock);
1677                 if (new_size > i_size_read(inode))
1678                         i_size_write(inode, new_size);
1679                 if (i_size_read(inode) > LDISKFS_I(inode)->i_disksize) {
1680                         LDISKFS_I(inode)->i_disksize = i_size_read(inode);
1681                         dirty_inode = 1;
1682                 }
1683                 spin_unlock(&inode->i_lock);
1684                 if (dirty_inode)
1685                         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
1686         }
1687
1688         if (err == 0)
1689                 *offs = offset;
1690         return err;
1691 }
1692
1693 static ssize_t osd_write(const struct lu_env *env, struct dt_object *dt,
1694                          const struct lu_buf *buf, loff_t *pos,
1695                          struct thandle *handle, int ignore_quota)
1696 {
1697         struct inode            *inode = osd_dt_obj(dt)->oo_inode;
1698         struct osd_thandle      *oh;
1699         ssize_t                 result;
1700         int                     is_link;
1701
1702         LASSERT(dt_object_exists(dt));
1703
1704         LASSERT(handle != NULL);
1705         LASSERT(inode != NULL);
1706         ll_vfs_dq_init(inode);
1707
1708         /* XXX: don't check: one declared chunk can be used many times */
1709         /* osd_trans_exec_op(env, handle, OSD_OT_WRITE); */
1710
1711         oh = container_of(handle, struct osd_thandle, ot_super);
1712         LASSERT(oh->ot_handle->h_transaction != NULL);
1713         /* Write small symlink to inode body as we need to maintain correct
1714          * on-disk symlinks for ldiskfs.
1715          * Note: the buf->lb_buf contains a NUL terminator while buf->lb_len
1716          * does not count it in.
1717          */
1718         is_link = S_ISLNK(dt->do_lu.lo_header->loh_attr);
1719         if (is_link && (buf->lb_len < sizeof(LDISKFS_I(inode)->i_data)))
1720                 result = osd_ldiskfs_writelink(inode, buf->lb_buf, buf->lb_len);
1721         else
1722                 result = osd_ldiskfs_write_record(inode, buf->lb_buf,
1723                                                   buf->lb_len, is_link, pos,
1724                                                   oh->ot_handle);
1725         if (result == 0)
1726                 result = buf->lb_len;
1727         return result;
1728 }
1729
1730 static int osd_declare_punch(const struct lu_env *env, struct dt_object *dt,
1731                              __u64 start, __u64 end, struct thandle *th)
1732 {
1733         struct osd_thandle *oh;
1734         struct inode       *inode;
1735         int                 rc;
1736         ENTRY;
1737
1738         LASSERT(th);
1739         oh = container_of(th, struct osd_thandle, ot_super);
1740
1741         /*
1742          * we don't need to reserve credits for whole truncate
1743          * it's not possible as truncate may need to free too many
1744          * blocks and that won't fit a single transaction. instead
1745          * we reserve credits to change i_size and put inode onto
1746          * orphan list. if needed truncate will extend or restart
1747          * transaction
1748          */
1749         osd_trans_declare_op(env, oh, OSD_OT_PUNCH,
1750                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE] + 3);
1751
1752         inode = osd_dt_obj(dt)->oo_inode;
1753         LASSERT(inode);
1754
1755         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
1756                                    0, oh, osd_dt_obj(dt), true, NULL, false);
1757         RETURN(rc);
1758 }
1759
1760 static int osd_punch(const struct lu_env *env, struct dt_object *dt,
1761                      __u64 start, __u64 end, struct thandle *th)
1762 {
1763         struct osd_thandle *oh;
1764         struct osd_object  *obj = osd_dt_obj(dt);
1765         struct inode       *inode = obj->oo_inode;
1766         handle_t           *h;
1767         tid_t               tid;
1768         int                rc = 0, rc2 = 0;
1769         ENTRY;
1770
1771         LASSERT(end == OBD_OBJECT_EOF);
1772         LASSERT(dt_object_exists(dt));
1773         LASSERT(osd_invariant(obj));
1774         LASSERT(inode != NULL);
1775         ll_vfs_dq_init(inode);
1776
1777         LASSERT(th);
1778         oh = container_of(th, struct osd_thandle, ot_super);
1779         LASSERT(oh->ot_handle->h_transaction != NULL);
1780
1781         osd_trans_exec_op(env, th, OSD_OT_PUNCH);
1782
1783         tid = oh->ot_handle->h_transaction->t_tid;
1784
1785         i_size_write(inode, start);
1786         ll_truncate_pagecache(inode, start);
1787 #ifdef HAVE_INODEOPS_TRUNCATE
1788         if (inode->i_op->truncate) {
1789                 inode->i_op->truncate(inode);
1790         } else
1791 #endif
1792                 ldiskfs_truncate(inode);
1793
1794         /*
1795          * For a partial-page truncate, flush the page to disk immediately to
1796          * avoid data corruption during direct disk write.  b=17397
1797          */
1798         if ((start & ~PAGE_MASK) != 0)
1799                 rc = filemap_fdatawrite_range(inode->i_mapping, start, start+1);
1800
1801         h = journal_current_handle();
1802         LASSERT(h != NULL);
1803         LASSERT(h == oh->ot_handle);
1804
1805         if (tid != h->h_transaction->t_tid) {
1806                 int credits = oh->ot_credits;
1807                 /*
1808                  * transaction has changed during truncate
1809                  * we need to restart the handle with our credits
1810                  */
1811                 if (h->h_buffer_credits < credits) {
1812                         if (ldiskfs_journal_extend(h, credits))
1813                                 rc2 = ldiskfs_journal_restart(h, credits);
1814                 }
1815         }
1816
1817         RETURN(rc == 0 ? rc2 : rc);
1818 }
1819
1820 static int fiemap_check_ranges(struct inode *inode,
1821                                u64 start, u64 len, u64 *new_len)
1822 {
1823         loff_t maxbytes;
1824
1825         *new_len = len;
1826
1827         if (len == 0)
1828                 return -EINVAL;
1829
1830         if (ldiskfs_test_inode_flag(inode, LDISKFS_INODE_EXTENTS))
1831                 maxbytes = inode->i_sb->s_maxbytes;
1832         else
1833                 maxbytes = LDISKFS_SB(inode->i_sb)->s_bitmap_maxbytes;
1834
1835         if (start > maxbytes)
1836                 return -EFBIG;
1837
1838         /*
1839          * Shrink request scope to what the fs can actually handle.
1840          */
1841         if (len > maxbytes || (maxbytes - len) < start)
1842                 *new_len = maxbytes - start;
1843
1844         return 0;
1845 }
1846
1847 /* So that the fiemap access checks can't overflow on 32 bit machines. */
1848 #define FIEMAP_MAX_EXTENTS     (UINT_MAX / sizeof(struct fiemap_extent))
1849
1850 static int osd_fiemap_get(const struct lu_env *env, struct dt_object *dt,
1851                           struct fiemap *fm)
1852 {
1853         struct fiemap_extent_info fieinfo = {0, };
1854         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1855         u64 len;
1856         int rc;
1857
1858
1859         LASSERT(inode);
1860         if (inode->i_op->fiemap == NULL)
1861                 return -EOPNOTSUPP;
1862
1863         if (fm->fm_extent_count > FIEMAP_MAX_EXTENTS)
1864                 return -EINVAL;
1865
1866         rc = fiemap_check_ranges(inode, fm->fm_start, fm->fm_length, &len);
1867         if (rc)
1868                 return rc;
1869
1870         fieinfo.fi_flags = fm->fm_flags;
1871         fieinfo.fi_extents_max = fm->fm_extent_count;
1872         fieinfo.fi_extents_start = fm->fm_extents;
1873
1874         if (fieinfo.fi_flags & FIEMAP_FLAG_SYNC)
1875                 filemap_write_and_wait(inode->i_mapping);
1876
1877         rc = inode->i_op->fiemap(inode, &fieinfo, fm->fm_start, len);
1878         fm->fm_flags = fieinfo.fi_flags;
1879         fm->fm_mapped_extents = fieinfo.fi_extents_mapped;
1880
1881         return rc;
1882 }
1883
1884 /*
1885  * in some cases we may need declare methods for objects being created
1886  * e.g., when we create symlink
1887  */
1888 const struct dt_body_operations osd_body_ops_new = {
1889         .dbo_declare_write = osd_declare_write,
1890 };
1891
1892 const struct dt_body_operations osd_body_ops = {
1893         .dbo_read                 = osd_read,
1894         .dbo_declare_write        = osd_declare_write,
1895         .dbo_write                = osd_write,
1896         .dbo_bufs_get             = osd_bufs_get,
1897         .dbo_bufs_put             = osd_bufs_put,
1898         .dbo_write_prep           = osd_write_prep,
1899         .dbo_declare_write_commit = osd_declare_write_commit,
1900         .dbo_write_commit         = osd_write_commit,
1901         .dbo_read_prep            = osd_read_prep,
1902         .dbo_declare_punch         = osd_declare_punch,
1903         .dbo_punch                 = osd_punch,
1904         .dbo_fiemap_get           = osd_fiemap_get,
1905 };
1906