Whamcloud - gitweb
LU-6245 libcfs: remove mem wrappers for libcfs
[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         unsigned long *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         unsigned long *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, unsigned long *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                                           unsigned long *blocks, int create)
791 {
792         int blocks_per_page = PAGE_CACHE_SIZE >> inode->i_blkbits;
793         pgoff_t bitmap_max_page_index;
794         unsigned long *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 %lu create %d: rc %d\n",
807                                inode->i_ino, *b, create, rc);
808                         break;
809                 }
810                 b += blocks_per_page;
811         }
812         return rc;
813 }
814
815 static int osd_ldiskfs_map_ext_inode_pages(struct inode *inode,
816                                            struct page **page,
817                                            int pages, unsigned long *blocks,
818                                            int create)
819 {
820         int blocks_per_page = PAGE_CACHE_SIZE >> inode->i_blkbits;
821         int rc = 0, i = 0;
822         struct page *fp = NULL;
823         int clen = 0;
824         pgoff_t extent_max_page_index;
825
826         extent_max_page_index = inode->i_sb->s_maxbytes >> PAGE_SHIFT;
827
828         CDEBUG(D_OTHER, "inode %lu: map %d pages from %lu\n",
829                 inode->i_ino, pages, (*page)->index);
830
831         /* pages are sorted already. so, we just have to find
832          * contig. space and process them properly */
833         while (i < pages) {
834                 if (fp == NULL) {
835                         /* start new extent */
836                         fp = *page++;
837                         clen = 1;
838                         i++;
839                         continue;
840                 } else if (fp->index + clen == (*page)->index) {
841                         /* continue the extent */
842                         page++;
843                         clen++;
844                         i++;
845                         continue;
846                 }
847
848                 if (fp->index + i >= extent_max_page_index)
849                         GOTO(cleanup, rc = -EFBIG);
850
851                 /* process found extent */
852                 rc = osd_ldiskfs_map_nblocks(inode, fp->index * blocks_per_page,
853                                              clen * blocks_per_page, blocks,
854                                              create);
855                 if (rc)
856                         GOTO(cleanup, rc);
857
858                 /* look for next extent */
859                 fp = NULL;
860                 blocks += blocks_per_page * clen;
861         }
862
863         if (fp)
864                 rc = osd_ldiskfs_map_nblocks(inode, fp->index * blocks_per_page,
865                                              clen * blocks_per_page, blocks,
866                                              create);
867 cleanup:
868         return rc;
869 }
870
871 static int osd_ldiskfs_map_inode_pages(struct inode *inode, struct page **page,
872                                        int pages, unsigned long *blocks,
873                                        int create)
874 {
875         int rc;
876
877         if (LDISKFS_I(inode)->i_flags & LDISKFS_EXTENTS_FL) {
878                 rc = osd_ldiskfs_map_ext_inode_pages(inode, page, pages,
879                                                      blocks, create);
880                 return rc;
881         }
882         rc = osd_ldiskfs_map_bm_inode_pages(inode, page, pages, blocks, create);
883
884         return rc;
885 }
886 #else
887 static int osd_ldiskfs_map_inode_pages(struct inode *inode, struct page **page,
888                                        int pages, unsigned long *blocks,
889                                        int create)
890 {
891         int blocks_per_page = PAGE_CACHE_SIZE >> inode->i_blkbits;
892         int rc = 0, i = 0;
893         struct page *fp = NULL;
894         int clen = 0;
895         pgoff_t max_page_index;
896
897         max_page_index = inode->i_sb->s_maxbytes >> PAGE_SHIFT;
898
899         CDEBUG(D_OTHER, "inode %lu: map %d pages from %lu\n",
900                 inode->i_ino, pages, (*page)->index);
901
902         /* pages are sorted already. so, we just have to find
903          * contig. space and process them properly */
904         while (i < pages) {
905                 long blen, total = 0;
906                 handle_t *handle = NULL;
907                 struct ldiskfs_map_blocks map = { 0 };
908
909                 if (fp == NULL) { /* start new extent */
910                         fp = *page++;
911                         clen = 1;
912                         if (++i != pages)
913                                 continue;
914                 } else if (fp->index + clen == (*page)->index) {
915                         /* continue the extent */
916                         page++;
917                         clen++;
918                         if (++i != pages)
919                                 continue;
920                 }
921                 if (fp->index + i >= max_page_index)
922                         GOTO(cleanup, rc = -EFBIG);
923                 /* process found extent */
924                 map.m_lblk = fp->index * blocks_per_page;
925                 map.m_len = blen = clen * blocks_per_page;
926                 if (create) {
927                         create = LDISKFS_GET_BLOCKS_CREATE;
928                         handle = ldiskfs_journal_current_handle();
929                         LASSERT(handle != NULL);
930                 }
931 cont_map:
932                 rc = ldiskfs_map_blocks(handle, inode, &map, create);
933                 if (rc >= 0) {
934                         int c = 0;
935                         for (; total < blen && c < map.m_len; c++, total++) {
936                                 if (rc == 0) {
937                                         *(blocks + total) = 0;
938                                         total++;
939                                         break;
940                                 } else {
941                                         *(blocks + total) = map.m_pblk + c;
942                                         /* unmap any possible underlying
943                                          * metadata from the block device
944                                          * mapping.  bug 6998. */
945                                         if ((map.m_flags & LDISKFS_MAP_NEW) &&
946                                             create)
947                                                 unmap_underlying_metadata(
948                                                         inode->i_sb->s_bdev,
949                                                         map.m_pblk + c);
950                                 }
951                         }
952                         rc = 0;
953                 }
954                 if (rc == 0 && total < blen) {
955                         map.m_lblk = fp->index * blocks_per_page + total;
956                         map.m_len = blen - total;
957                         goto cont_map;
958                 }
959                 if (rc != 0)
960                         GOTO(cleanup, rc);
961
962                 /* look for next extent */
963                 fp = NULL;
964                 blocks += blocks_per_page * clen;
965         }
966 cleanup:
967         return rc;
968 }
969 #endif /* HAVE_LDISKFS_MAP_BLOCKS */
970
971 static int osd_write_prep(const struct lu_env *env, struct dt_object *dt,
972                           struct niobuf_local *lnb, int npages)
973 {
974         struct osd_thread_info *oti   = osd_oti_get(env);
975         struct osd_iobuf       *iobuf = &oti->oti_iobuf;
976         struct inode           *inode = osd_dt_obj(dt)->oo_inode;
977         struct osd_device      *osd   = osd_obj2dev(osd_dt_obj(dt));
978         struct timeval          start;
979         struct timeval          end;
980         unsigned long           timediff;
981         ssize_t                 isize;
982         __s64                   maxidx;
983         int                     rc = 0;
984         int                     i;
985         int                     cache = 0;
986
987         LASSERT(inode);
988
989         rc = osd_init_iobuf(osd, iobuf, 0, npages);
990         if (unlikely(rc != 0))
991                 RETURN(rc);
992
993         isize = i_size_read(inode);
994         maxidx = ((isize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) - 1;
995
996         if (osd->od_writethrough_cache)
997                 cache = 1;
998         if (isize > osd->od_readcache_max_filesize)
999                 cache = 0;
1000
1001         do_gettimeofday(&start);
1002         for (i = 0; i < npages; i++) {
1003
1004                 if (cache == 0)
1005                         generic_error_remove_page(inode->i_mapping,
1006                                                   lnb[i].lnb_page);
1007
1008                 /*
1009                  * till commit the content of the page is undefined
1010                  * we'll set it uptodate once bulk is done. otherwise
1011                  * subsequent reads can access non-stable data
1012                  */
1013                 ClearPageUptodate(lnb[i].lnb_page);
1014
1015                 if (lnb[i].lnb_len == PAGE_CACHE_SIZE)
1016                         continue;
1017
1018                 if (maxidx >= lnb[i].lnb_page->index) {
1019                         osd_iobuf_add_page(iobuf, lnb[i].lnb_page);
1020                 } else {
1021                         long off;
1022                         char *p = kmap(lnb[i].lnb_page);
1023
1024                         off = lnb[i].lnb_page_offset;
1025                         if (off)
1026                                 memset(p, 0, off);
1027                         off = (lnb[i].lnb_page_offset + lnb[i].lnb_len) &
1028                               ~PAGE_MASK;
1029                         if (off)
1030                                 memset(p + off, 0, PAGE_CACHE_SIZE - off);
1031                         kunmap(lnb[i].lnb_page);
1032                 }
1033         }
1034         do_gettimeofday(&end);
1035         timediff = cfs_timeval_sub(&end, &start, NULL);
1036         lprocfs_counter_add(osd->od_stats, LPROC_OSD_GET_PAGE, timediff);
1037
1038         if (iobuf->dr_npages) {
1039                 rc = osd_ldiskfs_map_inode_pages(inode, iobuf->dr_pages,
1040                                                  iobuf->dr_npages,
1041                                                  iobuf->dr_blocks, 0);
1042                 if (likely(rc == 0)) {
1043                         rc = osd_do_bio(osd, inode, iobuf);
1044                         /* do IO stats for preparation reads */
1045                         osd_fini_iobuf(osd, iobuf);
1046                 }
1047         }
1048         RETURN(rc);
1049 }
1050
1051 /* Check if a block is allocated or not */
1052 static int osd_is_mapped(struct inode *inode, u64 offset)
1053 {
1054         sector_t (*fs_bmap)(struct address_space *, sector_t);
1055
1056         fs_bmap = inode->i_mapping->a_ops->bmap;
1057
1058         /* We can't know if we are overwriting or not */
1059         if (unlikely(fs_bmap == NULL))
1060                 return 0;
1061
1062         if (i_size_read(inode) == 0)
1063                 return 0;
1064
1065         /* Beyond EOF, must not be mapped */
1066         if (((i_size_read(inode) - 1) >> inode->i_blkbits) <
1067             (offset >> inode->i_blkbits))
1068                 return 0;
1069
1070         if (fs_bmap(inode->i_mapping, offset >> inode->i_blkbits) == 0)
1071                 return 0;
1072
1073         return 1;
1074 }
1075
1076 static int osd_declare_write_commit(const struct lu_env *env,
1077                                     struct dt_object *dt,
1078                                     struct niobuf_local *lnb, int npages,
1079                                     struct thandle *handle)
1080 {
1081         const struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
1082         struct inode            *inode = osd_dt_obj(dt)->oo_inode;
1083         struct osd_thandle      *oh;
1084         int                      extents = 1;
1085         int                      depth;
1086         int                      i;
1087         int                      newblocks;
1088         int                      rc = 0;
1089         int                      flags = 0;
1090         bool                     ignore_quota = false;
1091         long long                quota_space = 0;
1092         ENTRY;
1093
1094         LASSERT(handle != NULL);
1095         oh = container_of0(handle, struct osd_thandle, ot_super);
1096         LASSERT(oh->ot_handle == NULL);
1097
1098         newblocks = npages;
1099
1100         /* calculate number of extents (probably better to pass nb) */
1101         for (i = 0; i < npages; i++) {
1102                 if (i && lnb[i].lnb_file_offset !=
1103                     lnb[i - 1].lnb_file_offset + lnb[i - 1].lnb_len)
1104                         extents++;
1105
1106                 if (!osd_is_mapped(inode, lnb[i].lnb_file_offset))
1107                         quota_space += PAGE_CACHE_SIZE;
1108
1109                 /* ignore quota for the whole request if any page is from
1110                  * client cache or written by root.
1111                  *
1112                  * XXX once we drop the 1.8 client support, the checking
1113                  * for whether page is from cache can be simplified as:
1114                  * !(lnb[i].flags & OBD_BRW_SYNC)
1115                  *
1116                  * XXX we could handle this on per-lnb basis as done by
1117                  * grant. */
1118                 if ((lnb[i].lnb_flags & OBD_BRW_NOQUOTA) ||
1119                     (lnb[i].lnb_flags & (OBD_BRW_FROM_GRANT | OBD_BRW_SYNC)) ==
1120                     OBD_BRW_FROM_GRANT)
1121                         ignore_quota = true;
1122         }
1123
1124         /*
1125          * each extent can go into new leaf causing a split
1126          * 5 is max tree depth: inode + 4 index blocks
1127          * with blockmaps, depth is 3 at most
1128          */
1129         if (LDISKFS_I(inode)->i_flags & LDISKFS_EXTENTS_FL) {
1130                 /*
1131                  * many concurrent threads may grow tree by the time
1132                  * our transaction starts. so, consider 2 is a min depth
1133                  */
1134                 depth = ext_depth(inode);
1135                 depth = max(depth, 1) + 1;
1136                 newblocks += depth;
1137                 oh->ot_credits++; /* inode */
1138                 oh->ot_credits += depth * 2 * extents;
1139         } else {
1140                 depth = 3;
1141                 newblocks += depth;
1142                 oh->ot_credits++; /* inode */
1143                 oh->ot_credits += depth * extents;
1144         }
1145
1146         /* quota space for metadata blocks */
1147         quota_space += depth * extents * LDISKFS_BLOCK_SIZE(osd_sb(osd));
1148
1149         /* quota space should be reported in 1K blocks */
1150         quota_space = toqb(quota_space);
1151
1152         /* each new block can go in different group (bitmap + gd) */
1153
1154         /* we can't dirty more bitmap blocks than exist */
1155         if (newblocks > LDISKFS_SB(osd_sb(osd))->s_groups_count)
1156                 oh->ot_credits += LDISKFS_SB(osd_sb(osd))->s_groups_count;
1157         else
1158                 oh->ot_credits += newblocks;
1159
1160         /* we can't dirty more gd blocks than exist */
1161         if (newblocks > LDISKFS_SB(osd_sb(osd))->s_gdb_count)
1162                 oh->ot_credits += LDISKFS_SB(osd_sb(osd))->s_gdb_count;
1163         else
1164                 oh->ot_credits += newblocks;
1165
1166         /* make sure the over quota flags were not set */
1167         lnb[0].lnb_flags &= ~(OBD_BRW_OVER_USRQUOTA | OBD_BRW_OVER_GRPQUOTA);
1168
1169         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
1170                                    quota_space, oh, osd_dt_obj(dt), true,
1171                                    &flags, ignore_quota);
1172
1173         /* we need only to store the overquota flags in the first lnb for
1174          * now, once we support multiple objects BRW, this code needs be
1175          * revised. */
1176         if (flags & QUOTA_FL_OVER_USRQUOTA)
1177                 lnb[0].lnb_flags |= OBD_BRW_OVER_USRQUOTA;
1178         if (flags & QUOTA_FL_OVER_GRPQUOTA)
1179                 lnb[0].lnb_flags |= OBD_BRW_OVER_GRPQUOTA;
1180
1181         RETURN(rc);
1182 }
1183
1184 /* Check if a block is allocated or not */
1185 static int osd_write_commit(const struct lu_env *env, struct dt_object *dt,
1186                             struct niobuf_local *lnb, int npages,
1187                             struct thandle *thandle)
1188 {
1189         struct osd_thread_info *oti = osd_oti_get(env);
1190         struct osd_iobuf *iobuf = &oti->oti_iobuf;
1191         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1192         struct osd_device  *osd = osd_obj2dev(osd_dt_obj(dt));
1193         loff_t isize;
1194         int rc = 0, i;
1195
1196         LASSERT(inode);
1197
1198         rc = osd_init_iobuf(osd, iobuf, 1, npages);
1199         if (unlikely(rc != 0))
1200                 RETURN(rc);
1201
1202         isize = i_size_read(inode);
1203         ll_vfs_dq_init(inode);
1204
1205         for (i = 0; i < npages; i++) {
1206                 if (lnb[i].lnb_rc == -ENOSPC &&
1207                     osd_is_mapped(inode, lnb[i].lnb_file_offset)) {
1208                         /* Allow the write to proceed if overwriting an
1209                          * existing block */
1210                         lnb[i].lnb_rc = 0;
1211                 }
1212
1213                 if (lnb[i].lnb_rc) { /* ENOSPC, network RPC error, etc. */
1214                         CDEBUG(D_INODE, "Skipping [%d] == %d\n", i,
1215                                lnb[i].lnb_rc);
1216                         LASSERT(lnb[i].lnb_page);
1217                         generic_error_remove_page(inode->i_mapping,
1218                                                   lnb[i].lnb_page);
1219                         continue;
1220                 }
1221
1222                 LASSERT(PageLocked(lnb[i].lnb_page));
1223                 LASSERT(!PageWriteback(lnb[i].lnb_page));
1224
1225                 if (lnb[i].lnb_file_offset + lnb[i].lnb_len > isize)
1226                         isize = lnb[i].lnb_file_offset + lnb[i].lnb_len;
1227
1228                 /*
1229                  * Since write and truncate are serialized by oo_sem, even
1230                  * partial-page truncate should not leave dirty pages in the
1231                  * page cache.
1232                  */
1233                 LASSERT(!PageDirty(lnb[i].lnb_page));
1234
1235                 SetPageUptodate(lnb[i].lnb_page);
1236
1237                 osd_iobuf_add_page(iobuf, lnb[i].lnb_page);
1238         }
1239
1240         if (OBD_FAIL_CHECK(OBD_FAIL_OST_MAPBLK_ENOSPC)) {
1241                 rc = -ENOSPC;
1242         } else if (iobuf->dr_npages > 0) {
1243                 rc = osd_ldiskfs_map_inode_pages(inode, iobuf->dr_pages,
1244                                                  iobuf->dr_npages,
1245                                                  iobuf->dr_blocks, 1);
1246         } else {
1247                 /* no pages to write, no transno is needed */
1248                 thandle->th_local = 1;
1249         }
1250
1251         if (likely(rc == 0)) {
1252                 if (isize > i_size_read(inode)) {
1253                         i_size_write(inode, isize);
1254                         LDISKFS_I(inode)->i_disksize = isize;
1255                         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
1256                 }
1257
1258                 rc = osd_do_bio(osd, inode, iobuf);
1259                 /* we don't do stats here as in read path because
1260                  * write is async: we'll do this in osd_put_bufs() */
1261         } else {
1262                 osd_fini_iobuf(osd, iobuf);
1263         }
1264
1265         if (unlikely(rc != 0)) {
1266                 /* if write fails, we should drop pages from the cache */
1267                 for (i = 0; i < npages; i++) {
1268                         if (lnb[i].lnb_page == NULL)
1269                                 continue;
1270                         LASSERT(PageLocked(lnb[i].lnb_page));
1271                         generic_error_remove_page(inode->i_mapping,
1272                                                   lnb[i].lnb_page);
1273                 }
1274         }
1275
1276         RETURN(rc);
1277 }
1278
1279 static int osd_read_prep(const struct lu_env *env, struct dt_object *dt,
1280                          struct niobuf_local *lnb, int npages)
1281 {
1282         struct osd_thread_info *oti = osd_oti_get(env);
1283         struct osd_iobuf *iobuf = &oti->oti_iobuf;
1284         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1285         struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
1286         struct timeval start, end;
1287         unsigned long timediff;
1288         int rc = 0, i, cache = 0, cache_hits = 0, cache_misses = 0;
1289         loff_t isize;
1290
1291         LASSERT(inode);
1292
1293         rc = osd_init_iobuf(osd, iobuf, 0, npages);
1294         if (unlikely(rc != 0))
1295                 RETURN(rc);
1296
1297         isize = i_size_read(inode);
1298
1299         if (osd->od_read_cache)
1300                 cache = 1;
1301         if (isize > osd->od_readcache_max_filesize)
1302                 cache = 0;
1303
1304         do_gettimeofday(&start);
1305         for (i = 0; i < npages; i++) {
1306
1307                 if (isize <= lnb[i].lnb_file_offset)
1308                         /* If there's no more data, abort early.
1309                          * lnb->lnb_rc == 0, so it's easy to detect later. */
1310                         break;
1311
1312                 if (isize < lnb[i].lnb_file_offset + lnb[i].lnb_len - 1)
1313                         lnb[i].lnb_rc = isize - lnb[i].lnb_file_offset;
1314                 else
1315                         lnb[i].lnb_rc = lnb[i].lnb_len;
1316
1317                 if (PageUptodate(lnb[i].lnb_page)) {
1318                         cache_hits++;
1319                 } else {
1320                         cache_misses++;
1321                         osd_iobuf_add_page(iobuf, lnb[i].lnb_page);
1322                 }
1323
1324                 if (cache == 0)
1325                         generic_error_remove_page(inode->i_mapping,
1326                                                   lnb[i].lnb_page);
1327         }
1328         do_gettimeofday(&end);
1329         timediff = cfs_timeval_sub(&end, &start, NULL);
1330         lprocfs_counter_add(osd->od_stats, LPROC_OSD_GET_PAGE, timediff);
1331
1332         if (cache_hits != 0)
1333                 lprocfs_counter_add(osd->od_stats, LPROC_OSD_CACHE_HIT,
1334                                     cache_hits);
1335         if (cache_misses != 0)
1336                 lprocfs_counter_add(osd->od_stats, LPROC_OSD_CACHE_MISS,
1337                                     cache_misses);
1338         if (cache_hits + cache_misses != 0)
1339                 lprocfs_counter_add(osd->od_stats, LPROC_OSD_CACHE_ACCESS,
1340                                     cache_hits + cache_misses);
1341
1342         if (iobuf->dr_npages) {
1343                 rc = osd_ldiskfs_map_inode_pages(inode, iobuf->dr_pages,
1344                                                  iobuf->dr_npages,
1345                                                  iobuf->dr_blocks, 0);
1346                 rc = osd_do_bio(osd, inode, iobuf);
1347
1348                 /* IO stats will be done in osd_bufs_put() */
1349         }
1350
1351         RETURN(rc);
1352 }
1353
1354 /*
1355  * XXX: Another layering violation for now.
1356  *
1357  * We don't want to use ->f_op->read methods, because generic file write
1358  *
1359  *         - serializes on ->i_sem, and
1360  *
1361  *         - does a lot of extra work like balance_dirty_pages(),
1362  *
1363  * which doesn't work for globally shared files like /last_rcvd.
1364  */
1365 static int osd_ldiskfs_readlink(struct inode *inode, char *buffer, int buflen)
1366 {
1367         struct ldiskfs_inode_info *ei = LDISKFS_I(inode);
1368
1369         memcpy(buffer, (char *)ei->i_data, buflen);
1370
1371         return  buflen;
1372 }
1373
1374 int osd_ldiskfs_read(struct inode *inode, void *buf, int size, loff_t *offs)
1375 {
1376         struct buffer_head *bh;
1377         unsigned long block;
1378         int osize;
1379         int blocksize;
1380         int csize;
1381         int boffs;
1382         int err;
1383
1384         /* prevent reading after eof */
1385         spin_lock(&inode->i_lock);
1386         if (i_size_read(inode) < *offs + size) {
1387                 loff_t diff = i_size_read(inode) - *offs;
1388                 spin_unlock(&inode->i_lock);
1389                 if (diff < 0) {
1390                         CDEBUG(D_EXT2, "size %llu is too short to read @%llu\n",
1391                                i_size_read(inode), *offs);
1392                         return -EBADR;
1393                 } else if (diff == 0) {
1394                         return 0;
1395                 } else {
1396                         size = diff;
1397                 }
1398         } else {
1399                 spin_unlock(&inode->i_lock);
1400         }
1401
1402         blocksize = 1 << inode->i_blkbits;
1403         osize = size;
1404         while (size > 0) {
1405                 block = *offs >> inode->i_blkbits;
1406                 boffs = *offs & (blocksize - 1);
1407                 csize = min(blocksize - boffs, size);
1408                 bh = ldiskfs_bread(NULL, inode, block, 0, &err);
1409                 if (err != 0) {
1410                         CERROR("%s: can't read %u@%llu on ino %lu: rc = %d\n",
1411                                LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
1412                                csize, *offs, inode->i_ino, err);
1413                         if (bh != NULL)
1414                                 brelse(bh);
1415                         return err;
1416                 }
1417
1418                 if (bh != NULL) {
1419                         memcpy(buf, bh->b_data + boffs, csize);
1420                         brelse(bh);
1421                 } else {
1422                         memset(buf, 0, csize);
1423                 }
1424
1425                 *offs += csize;
1426                 buf += csize;
1427                 size -= csize;
1428         }
1429         return osize;
1430 }
1431
1432 static ssize_t osd_read(const struct lu_env *env, struct dt_object *dt,
1433                         struct lu_buf *buf, loff_t *pos)
1434 {
1435         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1436         int           rc;
1437
1438         /* Read small symlink from inode body as we need to maintain correct
1439          * on-disk symlinks for ldiskfs.
1440          */
1441         if (S_ISLNK(dt->do_lu.lo_header->loh_attr) &&
1442             (buf->lb_len < sizeof(LDISKFS_I(inode)->i_data)))
1443                 rc = osd_ldiskfs_readlink(inode, buf->lb_buf, buf->lb_len);
1444         else
1445                 rc = osd_ldiskfs_read(inode, buf->lb_buf, buf->lb_len, pos);
1446
1447         return rc;
1448 }
1449
1450 static inline int osd_extents_enabled(struct super_block *sb,
1451                                       struct inode *inode)
1452 {
1453         if (inode != NULL) {
1454                 if (LDISKFS_I(inode)->i_flags & LDISKFS_EXTENTS_FL)
1455                         return 1;
1456         } else if (LDISKFS_HAS_INCOMPAT_FEATURE(sb,
1457                                 LDISKFS_FEATURE_INCOMPAT_EXTENTS)) {
1458                 return 1;
1459         }
1460         return 0;
1461 }
1462
1463 static inline int osd_calc_bkmap_credits(struct super_block *sb,
1464                                          struct inode *inode,
1465                                          const loff_t size,
1466                                          const loff_t pos,
1467                                          const int blocks)
1468 {
1469         int credits, bits, bs, i;
1470
1471         bits = sb->s_blocksize_bits;
1472         bs = 1 << bits;
1473
1474         /* legacy blockmap: 3 levels * 3 (bitmap,gd,itself)
1475          * we do not expect blockmaps on the large files,
1476          * so let's shrink it to 2 levels (4GB files) */
1477
1478         /* this is default reservation: 2 levels */
1479         credits = (blocks + 2) * 3;
1480
1481         /* actual offset is unknown, hard to optimize */
1482         if (pos == -1)
1483                 return credits;
1484
1485         /* now check for few specific cases to optimize */
1486         if (pos + size <= LDISKFS_NDIR_BLOCKS * bs) {
1487                 /* no indirects */
1488                 credits = blocks;
1489                 /* allocate if not allocated */
1490                 if (inode == NULL) {
1491                         credits += blocks * 2;
1492                         return credits;
1493                 }
1494                 for (i = (pos >> bits); i < (pos >> bits) + blocks; i++) {
1495                         LASSERT(i < LDISKFS_NDIR_BLOCKS);
1496                         if (LDISKFS_I(inode)->i_data[i] == 0)
1497                                 credits += 2;
1498                 }
1499         } else if (pos + size <= (LDISKFS_NDIR_BLOCKS + 1024) * bs) {
1500                 /* single indirect */
1501                 credits = blocks * 3;
1502                 /* probably indirect block has been allocated already */
1503                 if (!inode || LDISKFS_I(inode)->i_data[LDISKFS_IND_BLOCK])
1504                         credits += 3;
1505         }
1506
1507         return credits;
1508 }
1509
1510 static ssize_t osd_declare_write(const struct lu_env *env, struct dt_object *dt,
1511                                  const struct lu_buf *buf, loff_t _pos,
1512                                  struct thandle *handle)
1513 {
1514         struct osd_object  *obj  = osd_dt_obj(dt);
1515         struct inode       *inode = obj->oo_inode;
1516         struct super_block *sb = osd_sb(osd_obj2dev(obj));
1517         struct osd_thandle *oh;
1518         int                 rc = 0, est = 0, credits, blocks, allocated = 0;
1519         int                 bits, bs;
1520         int                 depth, size;
1521         loff_t              pos;
1522         ENTRY;
1523
1524         LASSERT(buf != NULL);
1525         LASSERT(handle != NULL);
1526
1527         oh = container_of0(handle, struct osd_thandle, ot_super);
1528         LASSERT(oh->ot_handle == NULL);
1529
1530         size = buf->lb_len;
1531         bits = sb->s_blocksize_bits;
1532         bs = 1 << bits;
1533
1534         if (_pos == -1) {
1535                 /* if this is an append, then we
1536                  * should expect cross-block record */
1537                 pos = 0;
1538         } else {
1539                 pos = _pos;
1540         }
1541
1542         /* blocks to modify */
1543         blocks = ((pos + size + bs - 1) >> bits) - (pos >> bits);
1544         LASSERT(blocks > 0);
1545
1546         if (inode != NULL && _pos != -1) {
1547                 /* object size in blocks */
1548                 est = (i_size_read(inode) + bs - 1) >> bits;
1549                 allocated = inode->i_blocks >> (bits - 9);
1550                 if (pos + size <= i_size_read(inode) && est <= allocated) {
1551                         /* looks like an overwrite, no need to modify tree */
1552                         credits = blocks;
1553                         /* no need to modify i_size */
1554                         goto out;
1555                 }
1556         }
1557
1558         if (osd_extents_enabled(sb, inode)) {
1559                 /*
1560                  * many concurrent threads may grow tree by the time
1561                  * our transaction starts. so, consider 2 is a min depth
1562                  * for every level we may need to allocate a new block
1563                  * and take some entries from the old one. so, 3 blocks
1564                  * to allocate (bitmap, gd, itself) + old block - 4 per
1565                  * level.
1566                  */
1567                 depth = inode != NULL ? ext_depth(inode) : 0;
1568                 depth = max(depth, 1) + 1;
1569                 credits = depth;
1570                 /* if not append, then split may need to modify
1571                  * existing blocks moving entries into the new ones */
1572                 if (_pos == -1)
1573                         credits += depth;
1574                 /* blocks to store data: bitmap,gd,itself */
1575                 credits += blocks * 3;
1576         } else {
1577                 credits = osd_calc_bkmap_credits(sb, inode, size, _pos, blocks);
1578         }
1579         /* if inode is created as part of the transaction,
1580          * then it's counted already by the creation method */
1581         if (inode != NULL)
1582                 credits++;
1583
1584 out:
1585
1586         osd_trans_declare_op(env, oh, OSD_OT_WRITE, credits);
1587
1588         /* dt_declare_write() is usually called for system objects, such
1589          * as llog or last_rcvd files. We needn't enforce quota on those
1590          * objects, so always set the lqi_space as 0. */
1591         if (inode != NULL)
1592                 rc = osd_declare_inode_qid(env, i_uid_read(inode),
1593                                            i_gid_read(inode), 0, oh, obj, true,
1594                                            NULL, false);
1595         RETURN(rc);
1596 }
1597
1598 static int osd_ldiskfs_writelink(struct inode *inode, char *buffer, int buflen)
1599 {
1600         /* LU-2634: clear the extent format for fast symlink */
1601         ldiskfs_clear_inode_flag(inode, LDISKFS_INODE_EXTENTS);
1602
1603         memcpy((char *)&LDISKFS_I(inode)->i_data, (char *)buffer, buflen);
1604         LDISKFS_I(inode)->i_disksize = buflen;
1605         i_size_write(inode, buflen);
1606         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
1607
1608         return 0;
1609 }
1610
1611 int osd_ldiskfs_write_record(struct inode *inode, void *buf, int bufsize,
1612                              int write_NUL, loff_t *offs, handle_t *handle)
1613 {
1614         struct buffer_head *bh        = NULL;
1615         loff_t              offset    = *offs;
1616         loff_t              new_size  = i_size_read(inode);
1617         unsigned long       block;
1618         int                 blocksize = 1 << inode->i_blkbits;
1619         int                 err = 0;
1620         int                 size;
1621         int                 boffs;
1622         int                 dirty_inode = 0;
1623
1624         if (write_NUL) {
1625                 /*
1626                  * long symlink write does not count the NUL terminator in
1627                  * bufsize, we write it, and the inode's file size does not
1628                  * count the NUL terminator as well.
1629                  */
1630                 ((char *)buf)[bufsize] = '\0';
1631                 ++bufsize;
1632         }
1633         while (bufsize > 0) {
1634                 if (bh != NULL)
1635                         brelse(bh);
1636
1637                 block = offset >> inode->i_blkbits;
1638                 boffs = offset & (blocksize - 1);
1639                 size = min(blocksize - boffs, bufsize);
1640                 bh = ldiskfs_bread(handle, inode, block, 1, &err);
1641                 if (!bh) {
1642                         CERROR("%s: error reading offset %llu (block %lu): "
1643                                "rc = %d\n",
1644                                inode->i_sb->s_id, offset, block, err);
1645                         break;
1646                 }
1647
1648                 err = ldiskfs_journal_get_write_access(handle, bh);
1649                 if (err) {
1650                         CERROR("journal_get_write_access() returned error %d\n",
1651                                err);
1652                         break;
1653                 }
1654                 LASSERTF(boffs + size <= bh->b_size,
1655                          "boffs %d size %d bh->b_size %lu\n",
1656                          boffs, size, (unsigned long)bh->b_size);
1657                 memcpy(bh->b_data + boffs, buf, size);
1658                 err = ldiskfs_handle_dirty_metadata(handle, NULL, bh);
1659                 if (err)
1660                         break;
1661
1662                 if (offset + size > new_size)
1663                         new_size = offset + size;
1664                 offset += size;
1665                 bufsize -= size;
1666                 buf += size;
1667         }
1668         if (bh)
1669                 brelse(bh);
1670
1671         if (write_NUL)
1672                 --new_size;
1673         /* correct in-core and on-disk sizes */
1674         if (new_size > i_size_read(inode)) {
1675                 spin_lock(&inode->i_lock);
1676                 if (new_size > i_size_read(inode))
1677                         i_size_write(inode, new_size);
1678                 if (i_size_read(inode) > LDISKFS_I(inode)->i_disksize) {
1679                         LDISKFS_I(inode)->i_disksize = i_size_read(inode);
1680                         dirty_inode = 1;
1681                 }
1682                 spin_unlock(&inode->i_lock);
1683                 if (dirty_inode)
1684                         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
1685         }
1686
1687         if (err == 0)
1688                 *offs = offset;
1689         return err;
1690 }
1691
1692 static ssize_t osd_write(const struct lu_env *env, struct dt_object *dt,
1693                          const struct lu_buf *buf, loff_t *pos,
1694                          struct thandle *handle, int ignore_quota)
1695 {
1696         struct inode            *inode = osd_dt_obj(dt)->oo_inode;
1697         struct osd_thandle      *oh;
1698         ssize_t                 result;
1699         int                     is_link;
1700
1701         LASSERT(dt_object_exists(dt));
1702
1703         LASSERT(handle != NULL);
1704         LASSERT(inode != NULL);
1705         ll_vfs_dq_init(inode);
1706
1707         /* XXX: don't check: one declared chunk can be used many times */
1708         /* osd_trans_exec_op(env, handle, OSD_OT_WRITE); */
1709
1710         oh = container_of(handle, struct osd_thandle, ot_super);
1711         LASSERT(oh->ot_handle->h_transaction != NULL);
1712         /* Write small symlink to inode body as we need to maintain correct
1713          * on-disk symlinks for ldiskfs.
1714          * Note: the buf->lb_buf contains a NUL terminator while buf->lb_len
1715          * does not count it in.
1716          */
1717         is_link = S_ISLNK(dt->do_lu.lo_header->loh_attr);
1718         if (is_link && (buf->lb_len < sizeof(LDISKFS_I(inode)->i_data)))
1719                 result = osd_ldiskfs_writelink(inode, buf->lb_buf, buf->lb_len);
1720         else
1721                 result = osd_ldiskfs_write_record(inode, buf->lb_buf,
1722                                                   buf->lb_len, is_link, pos,
1723                                                   oh->ot_handle);
1724         if (result == 0)
1725                 result = buf->lb_len;
1726         return result;
1727 }
1728
1729 static int osd_declare_punch(const struct lu_env *env, struct dt_object *dt,
1730                              __u64 start, __u64 end, struct thandle *th)
1731 {
1732         struct osd_thandle *oh;
1733         struct inode       *inode;
1734         int                 rc;
1735         ENTRY;
1736
1737         LASSERT(th);
1738         oh = container_of(th, struct osd_thandle, ot_super);
1739
1740         /*
1741          * we don't need to reserve credits for whole truncate
1742          * it's not possible as truncate may need to free too many
1743          * blocks and that won't fit a single transaction. instead
1744          * we reserve credits to change i_size and put inode onto
1745          * orphan list. if needed truncate will extend or restart
1746          * transaction
1747          */
1748         osd_trans_declare_op(env, oh, OSD_OT_PUNCH,
1749                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE] + 3);
1750
1751         inode = osd_dt_obj(dt)->oo_inode;
1752         LASSERT(inode);
1753
1754         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
1755                                    0, oh, osd_dt_obj(dt), true, NULL, false);
1756         RETURN(rc);
1757 }
1758
1759 static int osd_punch(const struct lu_env *env, struct dt_object *dt,
1760                      __u64 start, __u64 end, struct thandle *th)
1761 {
1762         struct osd_thandle *oh;
1763         struct osd_object  *obj = osd_dt_obj(dt);
1764         struct inode       *inode = obj->oo_inode;
1765         handle_t           *h;
1766         tid_t               tid;
1767         int                rc = 0, rc2 = 0;
1768         ENTRY;
1769
1770         LASSERT(end == OBD_OBJECT_EOF);
1771         LASSERT(dt_object_exists(dt));
1772         LASSERT(osd_invariant(obj));
1773         LASSERT(inode != NULL);
1774         ll_vfs_dq_init(inode);
1775
1776         LASSERT(th);
1777         oh = container_of(th, struct osd_thandle, ot_super);
1778         LASSERT(oh->ot_handle->h_transaction != NULL);
1779
1780         osd_trans_exec_op(env, th, OSD_OT_PUNCH);
1781
1782         tid = oh->ot_handle->h_transaction->t_tid;
1783
1784         i_size_write(inode, start);
1785         ll_truncate_pagecache(inode, start);
1786 #ifdef HAVE_INODEOPS_TRUNCATE
1787         if (inode->i_op->truncate) {
1788                 inode->i_op->truncate(inode);
1789         } else
1790 #endif
1791                 ldiskfs_truncate(inode);
1792
1793         /*
1794          * For a partial-page truncate, flush the page to disk immediately to
1795          * avoid data corruption during direct disk write.  b=17397
1796          */
1797         if ((start & ~PAGE_MASK) != 0)
1798                 rc = filemap_fdatawrite_range(inode->i_mapping, start, start+1);
1799
1800         h = journal_current_handle();
1801         LASSERT(h != NULL);
1802         LASSERT(h == oh->ot_handle);
1803
1804         if (tid != h->h_transaction->t_tid) {
1805                 int credits = oh->ot_credits;
1806                 /*
1807                  * transaction has changed during truncate
1808                  * we need to restart the handle with our credits
1809                  */
1810                 if (h->h_buffer_credits < credits) {
1811                         if (ldiskfs_journal_extend(h, credits))
1812                                 rc2 = ldiskfs_journal_restart(h, credits);
1813                 }
1814         }
1815
1816         RETURN(rc == 0 ? rc2 : rc);
1817 }
1818
1819 static int fiemap_check_ranges(struct inode *inode,
1820                                u64 start, u64 len, u64 *new_len)
1821 {
1822         loff_t maxbytes;
1823
1824         *new_len = len;
1825
1826         if (len == 0)
1827                 return -EINVAL;
1828
1829         if (ldiskfs_test_inode_flag(inode, LDISKFS_INODE_EXTENTS))
1830                 maxbytes = inode->i_sb->s_maxbytes;
1831         else
1832                 maxbytes = LDISKFS_SB(inode->i_sb)->s_bitmap_maxbytes;
1833
1834         if (start > maxbytes)
1835                 return -EFBIG;
1836
1837         /*
1838          * Shrink request scope to what the fs can actually handle.
1839          */
1840         if (len > maxbytes || (maxbytes - len) < start)
1841                 *new_len = maxbytes - start;
1842
1843         return 0;
1844 }
1845
1846 /* So that the fiemap access checks can't overflow on 32 bit machines. */
1847 #define FIEMAP_MAX_EXTENTS     (UINT_MAX / sizeof(struct fiemap_extent))
1848
1849 static int osd_fiemap_get(const struct lu_env *env, struct dt_object *dt,
1850                           struct ll_user_fiemap *fm)
1851 {
1852         struct fiemap_extent_info fieinfo = {0, };
1853         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1854         u64 len;
1855         int rc;
1856
1857
1858         LASSERT(inode);
1859         if (inode->i_op->fiemap == NULL)
1860                 return -EOPNOTSUPP;
1861
1862         if (fm->fm_extent_count > FIEMAP_MAX_EXTENTS)
1863                 return -EINVAL;
1864
1865         rc = fiemap_check_ranges(inode, fm->fm_start, fm->fm_length, &len);
1866         if (rc)
1867                 return rc;
1868
1869         fieinfo.fi_flags = fm->fm_flags;
1870         fieinfo.fi_extents_max = fm->fm_extent_count;
1871         fieinfo.fi_extents_start = fm->fm_extents;
1872
1873         if (fieinfo.fi_flags & FIEMAP_FLAG_SYNC)
1874                 filemap_write_and_wait(inode->i_mapping);
1875
1876         rc = inode->i_op->fiemap(inode, &fieinfo, fm->fm_start, len);
1877         fm->fm_flags = fieinfo.fi_flags;
1878         fm->fm_mapped_extents = fieinfo.fi_extents_mapped;
1879
1880         return rc;
1881 }
1882
1883 /*
1884  * in some cases we may need declare methods for objects being created
1885  * e.g., when we create symlink
1886  */
1887 const struct dt_body_operations osd_body_ops_new = {
1888         .dbo_declare_write = osd_declare_write,
1889 };
1890
1891 const struct dt_body_operations osd_body_ops = {
1892         .dbo_read                 = osd_read,
1893         .dbo_declare_write        = osd_declare_write,
1894         .dbo_write                = osd_write,
1895         .dbo_bufs_get             = osd_bufs_get,
1896         .dbo_bufs_put             = osd_bufs_put,
1897         .dbo_write_prep           = osd_write_prep,
1898         .dbo_declare_write_commit = osd_declare_write_commit,
1899         .dbo_write_commit         = osd_write_commit,
1900         .dbo_read_prep            = osd_read_prep,
1901         .dbo_declare_punch         = osd_declare_punch,
1902         .dbo_punch                 = osd_punch,
1903         .dbo_fiemap_get           = osd_fiemap_get,
1904 };
1905