Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / obdfilter / filter_io_26.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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/obdfilter/filter_io_26.c
37  *
38  * Author: Peter Braam <braam@clusterfs.com>
39  * Author: Andreas Dilger <adilger@clusterfs.com>
40  * Author: Phil Schwan <phil@clusterfs.com>
41  */
42
43 #ifndef AUTOCONF_INCLUDED
44 #include <linux/config.h>
45 #endif
46 #include <linux/module.h>
47 #include <linux/pagemap.h> // XXX kill me soon
48 #include <linux/version.h>
49 #include <linux/buffer_head.h>
50
51 #define DEBUG_SUBSYSTEM S_FILTER
52
53 #include <obd_class.h>
54 #include <lustre_fsfilt.h>
55 #include <lustre_quota.h>
56 #include "filter_internal.h"
57
58 /* 512byte block min */
59 #define MAX_BLOCKS_PER_PAGE (CFS_PAGE_SIZE / 512)
60 struct filter_iobuf {
61         atomic_t          dr_numreqs;  /* number of reqs being processed */
62         wait_queue_head_t dr_wait;
63         int               dr_max_pages;
64         int               dr_npages;
65         int               dr_error;
66         struct page     **dr_pages;
67         unsigned long    *dr_blocks;
68         unsigned int      dr_ignore_quota:1;
69         struct filter_obd *dr_filter;
70 };
71
72 static void record_start_io(struct filter_iobuf *iobuf, int rw, int size,
73                             struct obd_export *exp)
74 {
75         struct filter_obd *filter = iobuf->dr_filter;
76
77         atomic_inc(&iobuf->dr_numreqs);
78
79         if (rw == OBD_BRW_READ) {
80                 atomic_inc(&filter->fo_r_in_flight);
81                 lprocfs_oh_tally(&filter->fo_filter_stats.hist[BRW_R_RPC_HIST],
82                                  atomic_read(&filter->fo_r_in_flight));
83                 lprocfs_oh_tally_log2(&filter->fo_filter_stats.hist[BRW_R_DISK_IOSIZE],
84                                       size);
85                 lprocfs_oh_tally(&exp->exp_filter_data.fed_brw_stats.hist[BRW_R_RPC_HIST],
86                                  atomic_read(&filter->fo_r_in_flight));
87                 lprocfs_oh_tally_log2(&exp->exp_filter_data.fed_brw_stats.hist[BRW_R_DISK_IOSIZE], size);
88         } else {
89                 atomic_inc(&filter->fo_w_in_flight);
90                 lprocfs_oh_tally(&filter->fo_filter_stats.hist[BRW_W_RPC_HIST],
91                                  atomic_read(&filter->fo_w_in_flight));
92                 lprocfs_oh_tally_log2(&filter->fo_filter_stats.hist[BRW_W_DISK_IOSIZE],
93                                       size);
94                 lprocfs_oh_tally(&exp->exp_filter_data.fed_brw_stats.hist[BRW_W_RPC_HIST],
95                                  atomic_read(&filter->fo_w_in_flight));
96                 lprocfs_oh_tally_log2(&exp->exp_filter_data.fed_brw_stats.hist[BRW_W_DISK_IOSIZE], size);
97         }
98 }
99
100 static void record_finish_io(struct filter_iobuf *iobuf, int rw, int rc)
101 {
102         struct filter_obd *filter = iobuf->dr_filter;
103
104         /* CAVEAT EMPTOR: possibly in IRQ context
105          * DO NOT record procfs stats here!!! */
106
107         if (rw == OBD_BRW_READ)
108                 atomic_dec(&filter->fo_r_in_flight);
109         else
110                 atomic_dec(&filter->fo_w_in_flight);
111
112         if (atomic_dec_and_test(&iobuf->dr_numreqs))
113                 wake_up(&iobuf->dr_wait);
114 }
115
116 static int dio_complete_routine(struct bio *bio, unsigned int done, int error)
117 {
118         struct filter_iobuf *iobuf = bio->bi_private;
119         struct bio_vec *bvl;
120         int i;
121
122         /* CAVEAT EMPTOR: possibly in IRQ context
123          * DO NOT record procfs stats here!!! */
124
125         if (bio->bi_size)                       /* Not complete */
126                 return 1;
127
128         if (unlikely(iobuf == NULL)) {
129                 CERROR("***** bio->bi_private is NULL!  This should never "
130                        "happen.  Normally, I would crash here, but instead I "
131                        "will dump the bio contents to the console.  Please "
132                        "report this to <http://bugzilla.lustre.org/> , along "
133                        "with any interesting messages leading up to this point "
134                        "(like SCSI errors, perhaps).  Because bi_private is "
135                        "NULL, I can't wake up the thread that initiated this "
136                        "IO - you will probably have to reboot this node.\n");
137                 CERROR("bi_next: %p, bi_flags: %lx, bi_rw: %lu, bi_vcnt: %d, "
138                        "bi_idx: %d, bi->size: %d, bi_end_io: %p, bi_cnt: %d, "
139                        "bi_private: %p\n", bio->bi_next, bio->bi_flags,
140                        bio->bi_rw, bio->bi_vcnt, bio->bi_idx, bio->bi_size,
141                        bio->bi_end_io, atomic_read(&bio->bi_cnt),
142                        bio->bi_private);
143                 return 0;
144         }
145
146         /* the check is outside of the cycle for performance reason -bzzz */
147         if (!test_bit(BIO_RW, &bio->bi_rw)) {
148                 bio_for_each_segment(bvl, bio, i) {
149                         if (likely(error == 0))
150                                 SetPageUptodate(bvl->bv_page);
151                         LASSERT(PageLocked(bvl->bv_page));
152                         ClearPageConstant(bvl->bv_page);
153                 }
154                 record_finish_io(iobuf, OBD_BRW_READ, error);
155         } else {
156                 if (mapping_cap_page_constant_write(iobuf->dr_pages[0]->mapping)){
157                         bio_for_each_segment(bvl, bio, i) {
158                                 ClearPageConstant(bvl->bv_page);
159                         }
160                 }
161                 record_finish_io(iobuf, OBD_BRW_WRITE, error);
162         }
163
164         /* any real error is good enough -bzzz */
165         if (error != 0 && iobuf->dr_error == 0)
166                 iobuf->dr_error = error;
167
168         /* Completed bios used to be chained off iobuf->dr_bios and freed in
169          * filter_clear_dreq().  It was then possible to exhaust the biovec-256
170          * mempool when serious on-disk fragmentation was encountered,
171          * deadlocking the OST.  The bios are now released as soon as complete
172          * so the pool cannot be exhausted while IOs are competing. bug 10076 */
173         bio_put(bio);
174         return 0;
175 }
176
177 static int can_be_merged(struct bio *bio, sector_t sector)
178 {
179         unsigned int size;
180
181         if (!bio)
182                 return 0;
183
184         size = bio->bi_size >> 9;
185         return bio->bi_sector + size == sector ? 1 : 0;
186 }
187
188 struct filter_iobuf *filter_alloc_iobuf(struct filter_obd *filter,
189                                         int rw, int num_pages)
190 {
191         struct filter_iobuf *iobuf;
192
193         LASSERTF(rw == OBD_BRW_WRITE || rw == OBD_BRW_READ, "%x\n", rw);
194
195         OBD_ALLOC(iobuf, sizeof(*iobuf));
196         if (iobuf == NULL)
197                 goto failed_0;
198
199         OBD_ALLOC(iobuf->dr_pages, num_pages * sizeof(*iobuf->dr_pages));
200         if (iobuf->dr_pages == NULL)
201                 goto failed_1;
202
203         OBD_ALLOC(iobuf->dr_blocks,
204                   MAX_BLOCKS_PER_PAGE * num_pages * sizeof(*iobuf->dr_blocks));
205         if (iobuf->dr_blocks == NULL)
206                 goto failed_2;
207
208         iobuf->dr_filter = filter;
209         init_waitqueue_head(&iobuf->dr_wait);
210         atomic_set(&iobuf->dr_numreqs, 0);
211         iobuf->dr_max_pages = num_pages;
212         iobuf->dr_npages = 0;
213         iobuf->dr_error = 0;
214
215         RETURN(iobuf);
216
217  failed_2:
218         OBD_FREE(iobuf->dr_pages,
219                  num_pages * sizeof(*iobuf->dr_pages));
220  failed_1:
221         OBD_FREE(iobuf, sizeof(*iobuf));
222  failed_0:
223         RETURN(ERR_PTR(-ENOMEM));
224 }
225
226 static void filter_clear_iobuf(struct filter_iobuf *iobuf)
227 {
228         iobuf->dr_npages = 0;
229         iobuf->dr_error = 0;
230         atomic_set(&iobuf->dr_numreqs, 0);
231 }
232
233 void filter_free_iobuf(struct filter_iobuf *iobuf)
234 {
235         int num_pages = iobuf->dr_max_pages;
236
237         filter_clear_iobuf(iobuf);
238
239         OBD_FREE(iobuf->dr_blocks,
240                  MAX_BLOCKS_PER_PAGE * num_pages * sizeof(*iobuf->dr_blocks));
241         OBD_FREE(iobuf->dr_pages,
242                  num_pages * sizeof(*iobuf->dr_pages));
243         OBD_FREE_PTR(iobuf);
244 }
245
246 void filter_iobuf_put(struct filter_obd *filter, struct filter_iobuf *iobuf,
247                       struct obd_trans_info *oti)
248 {
249         int thread_id = oti ? oti->oti_thread_id : -1;
250
251         if (unlikely(thread_id < 0)) {
252                 filter_free_iobuf(iobuf);
253                 return;
254         }
255
256         LASSERTF(filter->fo_iobuf_pool[thread_id] == iobuf,
257                  "iobuf mismatch for thread %d: pool %p iobuf %p\n",
258                  thread_id, filter->fo_iobuf_pool[thread_id], iobuf);
259         filter_clear_iobuf(iobuf);
260 }
261
262 int filter_iobuf_add_page(struct obd_device *obd, struct filter_iobuf *iobuf,
263                           struct inode *inode, struct page *page)
264 {
265         LASSERT(iobuf->dr_npages < iobuf->dr_max_pages);
266         iobuf->dr_pages[iobuf->dr_npages++] = page;
267
268         return 0;
269 }
270
271 int filter_do_bio(struct obd_export *exp, struct inode *inode,
272                   struct filter_iobuf *iobuf, int rw)
273 {
274         struct obd_device *obd = exp->exp_obd;
275         int            blocks_per_page = CFS_PAGE_SIZE >> inode->i_blkbits;
276         struct page  **pages = iobuf->dr_pages;
277         int            npages = iobuf->dr_npages;
278         unsigned long *blocks = iobuf->dr_blocks;
279         int            total_blocks = npages * blocks_per_page;
280         int            sector_bits = inode->i_sb->s_blocksize_bits - 9;
281         unsigned int   blocksize = inode->i_sb->s_blocksize;
282         struct bio    *bio = NULL;
283         int            frags = 0;
284         unsigned long  start_time = jiffies;
285         struct page   *page;
286         unsigned int   page_offset;
287         sector_t       sector;
288         int            nblocks;
289         int            block_idx;
290         int            page_idx;
291         int            i;
292         int            rc = 0;
293         ENTRY;
294
295         LASSERT(iobuf->dr_npages == npages);
296         LASSERT(total_blocks <= OBDFILTER_CREATED_SCRATCHPAD_ENTRIES);
297
298         for (page_idx = 0, block_idx = 0;
299              page_idx < npages;
300              page_idx++, block_idx += blocks_per_page) {
301
302                 page = pages[page_idx];
303                 LASSERT (block_idx + blocks_per_page <= total_blocks);
304
305                 for (i = 0, page_offset = 0;
306                      i < blocks_per_page;
307                      i += nblocks, page_offset += blocksize * nblocks) {
308
309                         nblocks = 1;
310
311                         if (blocks[block_idx + i] == 0) {  /* hole */
312                                 LASSERT(rw == OBD_BRW_READ);
313                                 memset(kmap(page) + page_offset, 0, blocksize);
314                                 kunmap(page);
315                                 continue;
316                         }
317
318                         sector = (sector_t)blocks[block_idx + i] << sector_bits;
319
320                         /* Additional contiguous file blocks? */
321                         while (i + nblocks < blocks_per_page &&
322                                (sector + (nblocks << sector_bits)) ==
323                                ((sector_t)blocks[block_idx + i + nblocks] <<
324                                 sector_bits))
325                                 nblocks++;
326
327                         /* I only set the page to be constant only if it
328                          * is mapped to a contiguous underlying disk block(s).
329                          * It will then make sure the corresponding device
330                          * cache of raid5 will be overwritten by this page.
331                          * - jay */
332                         if ((rw == OBD_BRW_WRITE) &&
333                             (nblocks == blocks_per_page) &&
334                             mapping_cap_page_constant_write(inode->i_mapping))
335                                SetPageConstant(page);
336
337                         if (bio != NULL &&
338                             can_be_merged(bio, sector) &&
339                             bio_add_page(bio, page,
340                                          blocksize * nblocks, page_offset) != 0)
341                                 continue;       /* added this frag OK */
342
343                         if (bio != NULL) {
344                                 request_queue_t *q =
345                                         bdev_get_queue(bio->bi_bdev);
346
347                                 /* Dang! I have to fragment this I/O */
348                                 CDEBUG(D_INODE, "bio++ sz %d vcnt %d(%d) "
349                                        "sectors %d(%d) psg %d(%d) hsg %d(%d)\n",
350                                        bio->bi_size,
351                                        bio->bi_vcnt, bio->bi_max_vecs,
352                                        bio->bi_size >> 9, q->max_sectors,
353                                        bio_phys_segments(q, bio),
354                                        q->max_phys_segments,
355                                        bio_hw_segments(q, bio),
356                                        q->max_hw_segments);
357
358                                 record_start_io(iobuf, rw, bio->bi_size, exp);
359                                 rc = fsfilt_send_bio(rw, obd, inode, bio);
360                                 if (rc < 0) {
361                                         CERROR("Can't send bio: %d\n", rc);
362                                         record_finish_io(iobuf, rw, rc);
363                                         goto out;
364                                 }
365                                 frags++;
366                         }
367
368                         /* allocate new bio, limited by max BIO size, b=9945 */
369                         bio = bio_alloc(GFP_NOIO, max(BIO_MAX_PAGES,
370                                                       (npages - page_idx) *
371                                                       blocks_per_page));
372                         if (bio == NULL) {
373                                 CERROR("Can't allocate bio %u*%u = %u pages\n",
374                                        (npages - page_idx), blocks_per_page,
375                                        (npages - page_idx) * blocks_per_page);
376                                 rc = -ENOMEM;
377                                 goto out;
378                         }
379
380                         bio->bi_bdev = inode->i_sb->s_bdev;
381                         bio->bi_sector = sector;
382                         bio->bi_end_io = dio_complete_routine;
383                         bio->bi_private = iobuf;
384
385                         rc = bio_add_page(bio, page,
386                                           blocksize * nblocks, page_offset);
387                         LASSERT (rc != 0);
388                 }
389         }
390
391         if (bio != NULL) {
392                 record_start_io(iobuf, rw, bio->bi_size, exp);
393                 rc = fsfilt_send_bio(rw, obd, inode, bio);
394                 if (rc >= 0) {
395                         frags++;
396                         rc = 0;
397                 } else {
398                         CERROR("Can't send bio: %d\n", rc);
399                         record_finish_io(iobuf, rw, rc);
400                 }
401         }
402
403  out:
404         wait_event(iobuf->dr_wait, atomic_read(&iobuf->dr_numreqs) == 0);
405
406         if (rw == OBD_BRW_READ) {
407                 lprocfs_oh_tally(&obd->u.filter.fo_filter_stats.hist[BRW_R_DIO_FRAGS],
408                                  frags);
409                 lprocfs_oh_tally(&exp->exp_filter_data.fed_brw_stats.hist[BRW_R_DIO_FRAGS],
410                                  frags);
411                 lprocfs_oh_tally_log2(&obd->u.filter.fo_filter_stats.hist[BRW_R_IO_TIME],
412                                       jiffies - start_time);
413                 lprocfs_oh_tally_log2(&exp->exp_filter_data.fed_brw_stats.hist[BRW_R_IO_TIME], jiffies - start_time);
414                 if (exp->exp_nid_stats && exp->exp_nid_stats->nid_brw_stats) {
415                         lprocfs_oh_tally(&exp->exp_nid_stats->nid_brw_stats->hist[BRW_R_DIO_FRAGS],
416                                          frags);
417                         lprocfs_oh_tally_log2(&exp->exp_nid_stats->nid_brw_stats->hist[BRW_R_IO_TIME],
418                                               jiffies - start_time);
419                 }
420         } else {
421                 lprocfs_oh_tally(&obd->u.filter.fo_filter_stats.hist[BRW_W_DIO_FRAGS],
422                                  frags);
423                 lprocfs_oh_tally(&exp->exp_filter_data.fed_brw_stats.hist[BRW_W_DIO_FRAGS],
424                                  frags);
425                 lprocfs_oh_tally_log2(&obd->u.filter.fo_filter_stats.hist[BRW_W_IO_TIME],
426                                       jiffies - start_time);
427                 lprocfs_oh_tally_log2(&exp->exp_filter_data.fed_brw_stats.hist[BRW_W_IO_TIME], jiffies - start_time);
428                 if (exp->exp_nid_stats && exp->exp_nid_stats->nid_brw_stats) {
429                         lprocfs_oh_tally(&exp->exp_nid_stats->nid_brw_stats->hist[BRW_W_DIO_FRAGS],
430                                          frags);
431                         lprocfs_oh_tally_log2(&exp->exp_nid_stats->nid_brw_stats->hist[BRW_W_IO_TIME],
432                                               jiffies - start_time);
433                 }
434         }
435
436         if (rc == 0)
437                 rc = iobuf->dr_error;
438         RETURN(rc);
439 }
440
441 /* Must be called with i_mutex taken for writes; this will drop it */
442 int filter_direct_io(int rw, struct dentry *dchild, struct filter_iobuf *iobuf,
443                      struct obd_export *exp, struct iattr *attr,
444                      struct obd_trans_info *oti, void **wait_handle)
445 {
446         struct obd_device *obd = exp->exp_obd;
447         struct inode *inode = dchild->d_inode;
448         int blocks_per_page = CFS_PAGE_SIZE >> inode->i_blkbits;
449         int rc, rc2, create;
450         struct semaphore *sem;
451         ENTRY;
452
453         LASSERTF(iobuf->dr_npages <= iobuf->dr_max_pages, "%d,%d\n",
454                  iobuf->dr_npages, iobuf->dr_max_pages);
455         LASSERT(iobuf->dr_npages <= OBDFILTER_CREATED_SCRATCHPAD_ENTRIES);
456
457         if (rw == OBD_BRW_READ) {
458                 if (iobuf->dr_npages == 0)
459                         RETURN(0);
460                 create = 0;
461                 sem = NULL;
462         } else {
463                 LASSERTF(rw == OBD_BRW_WRITE, "%x\n", rw);
464                 LASSERT(iobuf->dr_npages > 0);
465                 create = 1;
466                 sem = &obd->u.filter.fo_alloc_lock;
467
468                 lquota_enforce(filter_quota_interface_ref, obd,
469                                iobuf->dr_ignore_quota);
470         }
471
472         rc = fsfilt_map_inode_pages(obd, inode, iobuf->dr_pages,
473                                     iobuf->dr_npages, iobuf->dr_blocks,
474                                     obdfilter_created_scratchpad, create, sem);
475
476         if (rw == OBD_BRW_WRITE) {
477                 if (rc == 0) {
478                         filter_tally(exp, iobuf->dr_pages,
479                                      iobuf->dr_npages, iobuf->dr_blocks,
480                                      blocks_per_page, 1);
481                         if (attr->ia_size > i_size_read(inode))
482                                 attr->ia_valid |= ATTR_SIZE;
483                         rc = fsfilt_setattr(obd, dchild,
484                                             oti->oti_handle, attr, 0);
485                 }
486
487                 UNLOCK_INODE_MUTEX(inode);
488
489                 rc2 = filter_finish_transno(exp, oti, 0, 0);
490                 if (rc2 != 0) {
491                         CERROR("can't close transaction: %d\n", rc2);
492                         if (rc == 0)
493                                 rc = rc2;
494                 }
495
496                 rc2 = fsfilt_commit_async(obd,inode,oti->oti_handle,
497                                           wait_handle);
498                 if (rc == 0)
499                         rc = rc2;
500                 if (rc != 0)
501                         RETURN(rc);
502         } else if (rc == 0) {
503                 filter_tally(exp, iobuf->dr_pages, iobuf->dr_npages,
504                              iobuf->dr_blocks, blocks_per_page, 0);
505         }
506
507         RETURN(filter_do_bio(exp, inode, iobuf, rw));
508 }
509
510 /* See if there are unallocated parts in given file region */
511 static int filter_range_is_mapped(struct inode *inode, obd_size offset, int len)
512 {
513         sector_t (*fs_bmap)(struct address_space *, sector_t) =
514                 inode->i_mapping->a_ops->bmap;
515         int j;
516
517         /* We can't know if we are overwriting or not */
518         if (fs_bmap == NULL)
519                 return 0;
520
521         offset >>= inode->i_blkbits;
522         len >>= inode->i_blkbits;
523
524         for (j = 0; j <= len; j++)
525                 if (fs_bmap(inode->i_mapping, offset + j) == 0)
526                         return 0;
527
528         return 1;
529 }
530
531 /*
532  * interesting use cases on how it interacts with VM:
533  *
534  * - vm writeout -- shouldn't see our pages as we don't mark them dirty
535  *   though vm can find partial page left dirty by truncate. in this
536  *   usual writeout is used unless our write rewrite that page - then we
537  *   drop PG_dirty with PG_lock held.
538  *
539  * - else?
540  *
541  */
542 int filter_commitrw_write(struct obd_export *exp, struct obdo *oa,
543                           int objcount, struct obd_ioobj *obj,
544                           struct niobuf_remote *nb, int niocount,
545                           struct niobuf_local *res, struct obd_trans_info *oti,
546                           int rc)
547 {
548         struct niobuf_local *lnb;
549         struct filter_iobuf *iobuf = NULL;
550         struct lvfs_run_ctxt saved;
551         struct fsfilt_objinfo fso;
552         struct iattr iattr = { 0 };
553         struct inode *inode = NULL;
554         unsigned long now = jiffies;
555         int i, err, cleanup_phase = 0;
556         struct obd_device *obd = exp->exp_obd;
557         struct filter_obd *fo = &obd->u.filter;
558         void *wait_handle;
559         int   total_size = 0, rc2;
560         unsigned int qcids[MAXQUOTAS] = {0, 0};
561         ENTRY;
562
563         LASSERT(oti != NULL);
564         LASSERT(objcount == 1);
565         LASSERT(current->journal_info == NULL);
566
567         if (rc != 0)
568                 GOTO(cleanup, rc);
569
570         /* Unfortunately, if quota master is too busy to handle the
571          * pre-dqacq in time and quota hash on ost is used up, we
572          * have to wait for the completion of in flight dqacq/dqrel,
573          * then try again */
574         if ((rc2 = lquota_chkquota(filter_quota_interface_ref, obd, oa->o_uid,
575                                    oa->o_gid, niocount)) == QUOTA_RET_ACQUOTA) {
576                 OBD_FAIL_TIMEOUT(OBD_FAIL_OST_HOLD_WRITE_RPC, 90);
577                 lquota_acquire(filter_quota_interface_ref, obd, oa->o_uid,
578                                oa->o_gid);
579         }
580
581         if (rc2 < 0) {
582                 rc = rc2;
583                 GOTO(cleanup, rc);
584         }
585
586         iobuf = filter_iobuf_get(&obd->u.filter, oti);
587         if (IS_ERR(iobuf))
588                 GOTO(cleanup, rc = PTR_ERR(iobuf));
589         cleanup_phase = 1;
590
591         fso.fso_dentry = res->dentry;
592         fso.fso_bufcnt = obj->ioo_bufcnt;
593         inode = res->dentry->d_inode;
594
595         iobuf->dr_ignore_quota = 0;
596         for (i = 0, lnb = res; i < niocount; i++, lnb++) {
597                 loff_t this_size;
598
599                 /* If overwriting an existing block, we don't need a grant */
600                 if (!(lnb->flags & OBD_BRW_GRANTED) && lnb->rc == -ENOSPC &&
601                     filter_range_is_mapped(inode, lnb->offset, lnb->len))
602                         lnb->rc = 0;
603
604                 if (lnb->rc) { /* ENOSPC, network RPC error, etc. */
605                         CDEBUG(D_INODE, "Skipping [%d] == %d\n", i, lnb->rc);
606                         continue;
607                 }
608
609                 LASSERT(PageLocked(lnb->page));
610                 LASSERT(!PageWriteback(lnb->page));
611
612                 /* truncate might leave tail dirty */
613                 clear_page_dirty_for_io(lnb->page);
614
615                 SetPageUptodate(lnb->page);
616
617                 err = filter_iobuf_add_page(obd, iobuf, inode, lnb->page);
618                 LASSERT (err == 0);
619
620                 total_size += lnb->len;
621
622                 /* we expect these pages to be in offset order, but we'll
623                  * be forgiving */
624                 this_size = lnb->offset + lnb->len;
625                 if (this_size > iattr.ia_size)
626                         iattr.ia_size = this_size;
627
628                 /* if one page is a write-back page from client cache, or it's
629                  * written by root, then mark the whole io request as ignore
630                  * quota request */
631                 if (lnb->flags & (OBD_BRW_FROM_GRANT | OBD_BRW_NOQUOTA))
632                         iobuf->dr_ignore_quota = 1;
633         }
634
635         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
636         cleanup_phase = 2;
637
638         DQUOT_INIT(inode);
639
640         LOCK_INODE_MUTEX(inode);
641         fsfilt_check_slow(obd, now, "i_mutex");
642         oti->oti_handle = fsfilt_brw_start(obd, objcount, &fso, niocount, res,
643                                            oti);
644         if (IS_ERR(oti->oti_handle)) {
645                 UNLOCK_INODE_MUTEX(inode);
646                 rc = PTR_ERR(oti->oti_handle);
647                 CDEBUG(rc == -ENOSPC ? D_INODE : D_ERROR,
648                        "error starting transaction: rc = %d\n", rc);
649                 oti->oti_handle = NULL;
650                 GOTO(cleanup, rc);
651         }
652         /* have to call fsfilt_commit() from this point on */
653
654         fsfilt_check_slow(obd, now, "brw_start");
655
656         i = OBD_MD_FLATIME | OBD_MD_FLMTIME | OBD_MD_FLCTIME;
657
658         /* If the inode still has SUID+SGID bits set (see filter_precreate())
659          * then we will accept the UID+GID if sent by the client for
660          * initializing the ownership of this inode.  We only allow this to
661          * happen once (so clear these bits) and later only allow setattr. */
662         if (inode->i_mode & S_ISUID)
663                 i |= OBD_MD_FLUID;
664         if (inode->i_mode & S_ISGID)
665                 i |= OBD_MD_FLGID;
666
667         iattr_from_obdo(&iattr, oa, i);
668         if (iattr.ia_valid & (ATTR_UID | ATTR_GID)) {
669                 unsigned int save;
670
671                 CDEBUG(D_INODE, "update UID/GID to %lu/%lu\n",
672                        (unsigned long)oa->o_uid, (unsigned long)oa->o_gid);
673
674                 cfs_cap_raise(CFS_CAP_SYS_RESOURCE);
675
676                 iattr.ia_valid |= ATTR_MODE;
677                 iattr.ia_mode = inode->i_mode;
678                 if (iattr.ia_valid & ATTR_UID)
679                         iattr.ia_mode &= ~S_ISUID;
680                 if (iattr.ia_valid & ATTR_GID)
681                         iattr.ia_mode &= ~S_ISGID;
682
683                 rc = filter_update_fidea(exp, inode, oti->oti_handle, oa);
684
685                 /* To avoid problems with quotas, UID and GID must be set
686                  * in the inode before filter_direct_io() - see bug 10357. */
687                 save = iattr.ia_valid;
688                 iattr.ia_valid &= (ATTR_UID | ATTR_GID);
689                 rc = fsfilt_setattr(obd, res->dentry, oti->oti_handle,&iattr,0);
690                 CDEBUG(D_QUOTA, "set uid(%u)/gid(%u) to ino(%lu). rc(%d)\n",
691                                 iattr.ia_uid, iattr.ia_gid, inode->i_ino, rc);
692                 iattr.ia_valid = save & ~(ATTR_UID | ATTR_GID);
693         }
694
695         /* filter_direct_io drops i_mutex */
696         rc = filter_direct_io(OBD_BRW_WRITE, res->dentry, iobuf, exp, &iattr,
697                               oti, &wait_handle);
698         if (rc == 0)
699                 obdo_from_inode(oa, inode,
700                                 FILTER_VALID_FLAGS |OBD_MD_FLUID |OBD_MD_FLGID);
701         else
702                 obdo_from_inode(oa, inode, OBD_MD_FLUID | OBD_MD_FLGID);
703
704         lquota_getflag(filter_quota_interface_ref, obd, oa);
705
706         fsfilt_check_slow(obd, now, "direct_io");
707
708         err = fsfilt_commit_wait(obd, inode, wait_handle);
709         if (err) {
710                 CERROR("Failure to commit OST transaction (%d)?\n", err);
711                 rc = err;
712         }
713
714         if (obd->obd_replayable && !rc)
715                 LASSERTF(oti->oti_transno <= obd->obd_last_committed,
716                          "oti_transno "LPU64" last_committed "LPU64"\n",
717                          oti->oti_transno, obd->obd_last_committed);
718
719         fsfilt_check_slow(obd, now, "commitrw commit");
720
721 cleanup:
722         filter_grant_commit(exp, niocount, res);
723
724         switch (cleanup_phase) {
725         case 2:
726                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
727                 LASSERT(current->journal_info == NULL);
728         case 1:
729                 filter_iobuf_put(&obd->u.filter, iobuf, oti);
730         case 0:
731                 /*
732                  * lnb->page automatically returns back into per-thread page
733                  * pool (bug 5137)
734                  */
735                 f_dput(res->dentry);
736         }
737
738         /* trigger quota pre-acquire */
739         qcids[USRQUOTA] = oa->o_uid;
740         qcids[GRPQUOTA] = oa->o_gid;
741         err = lquota_adjust(filter_quota_interface_ref, obd, qcids, NULL, rc,
742                             FSFILT_OP_CREATE);
743         CDEBUG(err ? D_ERROR : D_QUOTA,
744                "filter adjust qunit! (rc:%d)\n", err);
745
746         for (i = 0, lnb = res; i < niocount; i++, lnb++) {
747                 if (lnb->page == NULL)
748                         continue;
749
750                 LASSERT(PageLocked(lnb->page));
751                 unlock_page(lnb->page);
752
753                 page_cache_release(lnb->page);
754                 lnb->page = NULL;
755         }
756
757         if (inode && (fo->fo_writethrough_cache == 0 ||
758                         i_size_read(inode) > fo->fo_readcache_max_filesize))
759                 filter_invalidate_cache(obd, obj, nb, inode);
760
761         RETURN(rc);
762 }