Whamcloud - gitweb
landing b_cmobd_merge on 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  *  linux/fs/obdfilter/filter_io.c
5  *
6  *  Copyright (c) 2001-2003 Cluster File Systems, Inc.
7  *   Author: Peter Braam <braam@clusterfs.com>
8  *   Author: Andreas Dilger <adilger@clusterfs.com>
9  *   Author: Phil Schwan <phil@clusterfs.com>
10  *
11  *   This file is part of Lustre, http://www.lustre.org.
12  *
13  *   Lustre is free software; you can redistribute it and/or
14  *   modify it under the terms of version 2 of the GNU General Public
15  *   License as published by the Free Software Foundation.
16  *
17  *   Lustre is distributed in the hope that it will be useful,
18  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *   GNU General Public License for more details.
21  *
22  *   You should have received a copy of the GNU General Public License
23  *   along with Lustre; if not, write to the Free Software
24  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25  */
26
27 #include <linux/config.h>
28 #include <linux/module.h>
29 #include <linux/pagemap.h> // XXX kill me soon
30 #include <linux/version.h>
31
32 #define DEBUG_SUBSYSTEM S_FILTER
33
34 #include <linux/obd_class.h>
35 #include <linux/lustre_fsfilt.h>
36 #include "filter_internal.h"
37
38 #warning "implement writeback mode -bzzz"
39
40 /* 512byte block min */
41 #define MAX_BLOCKS_PER_PAGE (PAGE_SIZE / 512)
42 struct dio_request {
43         atomic_t numreqs;       /* number of reqs being processed */
44         struct bio *bio_list;   /* list of completed bios */
45         wait_queue_head_t wait;
46         int created[MAX_BLOCKS_PER_PAGE];
47         unsigned long blocks[MAX_BLOCKS_PER_PAGE];
48         spinlock_t lock;
49 };
50
51 static int dio_complete_routine(struct bio *bio, unsigned int done, int error)
52 {
53         struct dio_request *dreq = bio->bi_private;
54         unsigned long flags;
55
56         spin_lock_irqsave(&dreq->lock, flags);
57         bio->bi_private = dreq->bio_list;
58         dreq->bio_list = bio;
59         spin_unlock_irqrestore(&dreq->lock, flags);
60         if (atomic_dec_and_test(&dreq->numreqs))
61                 wake_up(&dreq->wait);
62
63         return 0;
64 }
65
66 static int can_be_merged(struct bio *bio, sector_t sector)
67 {
68         int size;
69
70         if (!bio)
71                 return 0;
72
73         size = bio->bi_size >> 9;
74         return bio->bi_sector + size == sector ? 1 : 0;
75 }
76
77 /* See if there are unallocated parts in given file region */
78 static int filter_range_is_mapped(struct inode *inode, obd_size offset, int len)
79 {
80         sector_t (*fs_bmap)(struct address_space *, sector_t) =
81                 inode->i_mapping->a_ops->bmap;
82         int j;
83
84         /* We can't know if we are overwriting or not */
85         if (fs_bmap == NULL)
86                 return 0;
87
88         offset >>= inode->i_blkbits;
89         len >>= inode->i_blkbits;
90
91         for (j = 0; j <= len; j++)
92                 if (fs_bmap(inode->i_mapping, offset + j) == 0)
93                         return 0;
94
95         return 1;
96 }
97
98 int filter_commitrw_write(struct obd_export *exp, struct obdo *oa,
99                           int objcount, struct obd_ioobj *obj, int niocount,
100                           struct niobuf_local *res, struct obd_trans_info *oti,
101                           int rc)
102 {
103         struct bio *bio = NULL;
104         int blocks_per_page, err;
105         struct niobuf_local *lnb;
106         struct lvfs_run_ctxt saved;
107         struct fsfilt_objinfo fso;
108         struct iattr iattr = { 0 };
109         struct inode *inode = NULL;
110         unsigned long now = jiffies;
111         int i, k, cleanup_phase = 0;
112
113         struct dio_request *dreq = NULL;
114         struct obd_device *obd = exp->exp_obd;
115
116         ENTRY;
117
118         LASSERT(oti != NULL);
119         LASSERT(objcount == 1);
120         LASSERT(current->journal_info == NULL);
121
122         if (rc != 0)
123                 GOTO(cleanup, rc);
124
125         inode = res->dentry->d_inode;
126         blocks_per_page = PAGE_SIZE >> inode->i_blkbits;
127         LASSERT(blocks_per_page <= MAX_BLOCKS_PER_PAGE);
128
129         OBD_ALLOC(dreq, sizeof(*dreq));
130
131         if (dreq == NULL)
132                 RETURN(-ENOMEM);
133
134         dreq->bio_list = NULL;
135         init_waitqueue_head(&dreq->wait);
136         atomic_set(&dreq->numreqs, 0);
137         spin_lock_init(&dreq->lock);
138
139         cleanup_phase = 1;
140         fso.fso_dentry = res->dentry;
141         fso.fso_bufcnt = obj->ioo_bufcnt;
142
143         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
144         cleanup_phase = 2;
145
146         oti->oti_handle = fsfilt_brw_start(obd, objcount, &fso,
147                                            niocount, res, oti);
148         
149         if (IS_ERR(oti->oti_handle)) {
150                 rc = PTR_ERR(oti->oti_handle);
151                 CDEBUG(rc == -ENOSPC ? D_INODE : D_ERROR,
152                        "error starting transaction: rc = %d\n", rc);
153                 oti->oti_handle = NULL;
154                 GOTO(cleanup, rc);
155         }
156
157         if (time_after(jiffies, now + 15 * HZ))
158                 CERROR("slow brw_start %lus\n", (jiffies - now) / HZ);
159
160         iattr_from_obdo(&iattr,oa,OBD_MD_FLATIME|OBD_MD_FLMTIME|OBD_MD_FLCTIME);
161         for (i = 0, lnb = res; i < obj->ioo_bufcnt; i++, lnb++) {
162                 loff_t this_size;
163                 sector_t sector;
164                 struct page *pages[1];
165                 int offs;
166
167                 /* If overwriting an existing block, we don't need a grant */
168                 if (!(lnb->flags & OBD_BRW_GRANTED) && lnb->rc == -ENOSPC &&
169                     filter_range_is_mapped(inode, lnb->offset, lnb->len))
170                         lnb->rc = 0;
171
172                 if (lnb->rc) /* ENOSPC, network RPC error, etc. */ 
173                         continue;
174
175                 /* get block number for next page */
176                 pages[0] = lnb->page;
177                 rc = fsfilt_map_inode_pages(obd, inode, pages, 1, 
178                                             dreq->blocks, dreq->created, 1,
179                                             NULL);
180                 if (rc != 0)
181                         GOTO(cleanup, rc);
182
183                 for (k = 0; k < blocks_per_page; k++) {
184                         sector = dreq->blocks[k] *(inode->i_sb->s_blocksize>>9);
185                         offs = k * inode->i_sb->s_blocksize;
186
187                         if (!bio || !can_be_merged(bio, sector) ||
188                             !bio_add_page(bio, lnb->page, lnb->len, offs)) {
189                                 if (bio) {
190                                         atomic_inc(&dreq->numreqs);
191                                         submit_bio(WRITE, bio);
192                                         bio = NULL;
193                                 }
194                                 /* allocate new bio */
195                                 bio = bio_alloc(GFP_NOIO, obj->ioo_bufcnt);
196                                 bio->bi_bdev = inode->i_sb->s_bdev;
197                                 bio->bi_sector = sector;
198                                 bio->bi_end_io = dio_complete_routine;
199                                 bio->bi_private = dreq;
200
201                                 if (!bio_add_page(bio, lnb->page, lnb->len, 0))
202                                         LBUG();
203                         }
204                 }
205
206                 /* we expect these pages to be in offset order, but we'll
207                  * be forgiving */
208                 this_size = lnb->offset + lnb->len;
209                 if (this_size > iattr.ia_size)
210                         iattr.ia_size = this_size;
211         }
212
213 #warning This probably needs filemap_fdatasync() like filter_io_24 (bug 2366)
214         if (bio) {
215                 atomic_inc(&dreq->numreqs);
216                 fsfilt_send_bio(obd, inode, bio);
217         }
218
219         /* time to wait for I/O completion */
220         wait_event(dreq->wait, atomic_read(&dreq->numreqs) == 0);
221
222         /* free all bios */
223         while (dreq->bio_list) {
224                 bio = dreq->bio_list;
225                 dreq->bio_list = bio->bi_private;
226                 bio_put(bio);
227         }
228
229         down(&inode->i_sem);
230         if (iattr.ia_size > inode->i_size) {
231                 CDEBUG(D_INFO, "setting i_size to "LPU64"\n",
232                        iattr.ia_size);
233                         
234                 iattr.ia_valid |= ATTR_SIZE;
235                         
236                 fsfilt_setattr(obd, res->dentry, oti->oti_handle,
237                                &iattr, 0);
238         }
239         up(&inode->i_sem);
240
241         if (time_after(jiffies, now + 15 * HZ))
242                 CERROR("slow direct_io %lus\n", (jiffies - now) / HZ);
243
244         rc = filter_finish_transno(exp, oti, rc);
245
246         err = fsfilt_commit(obd, inode, oti->oti_handle, obd_sync_filter);
247         if (err)
248                 rc = err;
249
250         if (obd_sync_filter)
251                 LASSERT(oti->oti_transno <= obd->obd_last_committed);
252
253         if (time_after(jiffies, now + 15 * HZ))
254                 CERROR("slow commitrw commit %lus\n", (jiffies - now) / HZ);
255
256 cleanup:
257         filter_grant_commit(exp, niocount, res);
258
259         switch (cleanup_phase) {
260         case 2:
261                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
262                 LASSERT(current->journal_info == NULL);
263         case 1:
264                 OBD_FREE(dreq, sizeof(*dreq));
265         case 0:
266                 for (i = 0, lnb = res; i < obj->ioo_bufcnt; i++, lnb++) {
267                         filter_release_write_page(&obd->u.filter,
268                                                   res->dentry->d_inode, lnb,
269                                                   rc);
270                 }
271
272                 f_dput(res->dentry);
273         }
274
275         RETURN(rc);
276 }