Whamcloud - gitweb
Land b_smallfix onto HEAD (20040414_1359)
[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, int objcount,
99                           struct obd_ioobj *obj, int niocount,
100                           struct niobuf_local *res, struct obd_trans_info *oti,
101                           int rc)
102 {
103         struct obd_device *obd = exp->exp_obd;
104         struct obd_run_ctxt saved;
105         struct niobuf_local *lnb;
106         struct fsfilt_objinfo fso;
107         struct iattr iattr = { .ia_valid = ATTR_SIZE, .ia_size = 0, };
108         struct inode *inode = NULL;
109         int i, k, cleanup_phase = 0, err;
110         unsigned long now = jiffies; /* DEBUGGING OST TIMEOUTS */
111         int blocks_per_page;
112         struct dio_request *dreq = NULL;
113         struct bio *bio = NULL;
114         ENTRY;
115         LASSERT(oti != NULL);
116         LASSERT(objcount == 1);
117         LASSERT(current->journal_info == NULL);
118
119         if (rc != 0)
120                 GOTO(cleanup, rc);
121
122         inode = res->dentry->d_inode;
123         blocks_per_page = PAGE_SIZE >> inode->i_blkbits;
124         LASSERT(blocks_per_page <= MAX_BLOCKS_PER_PAGE);
125
126         OBD_ALLOC(dreq, sizeof(*dreq));
127         if (dreq == NULL)
128                 RETURN(-ENOMEM);
129         dreq->bio_list = NULL;
130         init_waitqueue_head(&dreq->wait);
131         atomic_set(&dreq->numreqs, 0);
132         spin_lock_init(&dreq->lock);
133
134         cleanup_phase = 1;
135         fso.fso_dentry = res->dentry;
136         fso.fso_bufcnt = obj->ioo_bufcnt;
137
138         push_ctxt(&saved, &obd->obd_ctxt, NULL);
139         cleanup_phase = 2;
140
141         oti->oti_handle = fsfilt_brw_start(obd, objcount, &fso, niocount, res, oti);
142         if (IS_ERR(oti->oti_handle)) {
143                 rc = PTR_ERR(oti->oti_handle);
144                 CDEBUG(rc == -ENOSPC ? D_INODE : D_ERROR,
145                        "error starting transaction: rc = %d\n", rc);
146                 oti->oti_handle = NULL;
147                 GOTO(cleanup, rc);
148         }
149
150         if (time_after(jiffies, now + 15 * HZ))
151                 CERROR("slow brw_start %lus\n", (jiffies - now) / HZ);
152
153         iattr_from_obdo(&iattr,oa,OBD_MD_FLATIME|OBD_MD_FLMTIME|OBD_MD_FLCTIME);
154         for (i = 0, lnb = res; i < obj->ioo_bufcnt; i++, lnb++) {
155                 loff_t this_size;
156                 sector_t sector;
157                 int offs;
158
159                 /* If overwriting an existing block, we don't need a grant */
160                 if (!(lnb->flags & OBD_BRW_GRANTED) && lnb->rc == -ENOSPC &&
161                     filter_range_is_mapped(inode, lnb->offset, lnb->len))
162                         lnb->rc = 0;
163
164                 if (lnb->rc) /* ENOSPC, network RPC error */
165                         continue;
166
167                 /* get block number for next page */
168                 rc = fsfilt_map_inode_page(obd, inode, lnb->page, dreq->blocks,
169                                            dreq->created, 1);
170                 if (rc)
171                         GOTO(cleanup, rc);
172
173                 for (k = 0; k < blocks_per_page; k++) {
174                         sector = dreq->blocks[k] *(inode->i_sb->s_blocksize>>9);
175                         offs = k * inode->i_sb->s_blocksize;
176
177                         if (!bio || !can_be_merged(bio, sector) ||
178                             !bio_add_page(bio, lnb->page, lnb->len, offs)) {
179                                 if (bio) {
180                                         atomic_inc(&dreq->numreqs);
181                                         submit_bio(WRITE, bio);
182                                         bio = NULL;
183                                 }
184                                 /* allocate new bio */
185                                 bio = bio_alloc(GFP_NOIO, obj->ioo_bufcnt);
186                                 bio->bi_bdev = inode->i_sb->s_bdev;
187                                 bio->bi_sector = sector;
188                                 bio->bi_end_io = dio_complete_routine;
189                                 bio->bi_private = dreq;
190
191                                 if (!bio_add_page(bio, lnb->page, lnb->len, 0))
192                                         LBUG();
193                         }
194                 }
195
196                 /* We expect these pages to be in offset order, but we'll
197                  * be forgiving */
198                 this_size = lnb->offset + lnb->len;
199                 if (this_size > iattr.ia_size)
200                         iattr.ia_size = this_size;
201         }
202
203 #warning This probably needs filemap_fdatasync() like filter_io_24 (bug 2366)
204         if (bio) {
205                 atomic_inc(&dreq->numreqs);
206                 submit_bio(WRITE, bio);
207         }
208
209         /* time to wait for I/O completion */
210         wait_event(dreq->wait, atomic_read(&dreq->numreqs) == 0);
211
212         /* free all bios */
213         while (dreq->bio_list) {
214                 bio = dreq->bio_list;
215                 dreq->bio_list = bio->bi_private;
216                 bio_put(bio);
217         }
218
219         if (rc == 0) {
220                 down(&inode->i_sem);
221                 if (iattr.ia_size > inode->i_size) {
222                         CDEBUG(D_INFO, "setting i_size to "LPU64"\n",
223                                iattr.ia_size);
224                         fsfilt_setattr(obd, res->dentry, oti->oti_handle,
225                                        &iattr, 0);
226                 }
227                 up(&inode->i_sem);
228         }
229
230         if (time_after(jiffies, now + 15 * HZ))
231                 CERROR("slow direct_io %lus\n", (jiffies - now) / HZ);
232
233         rc = filter_finish_transno(exp, oti, rc);
234         err = fsfilt_commit(obd, inode, oti->oti_handle, obd_sync_filter);
235         if (err)
236                 rc = err;
237         if (obd_sync_filter)
238                 LASSERT(oti->oti_transno <= obd->obd_last_committed);
239         if (time_after(jiffies, now + 15 * HZ))
240                 CERROR("slow commitrw commit %lus\n", (jiffies - now) / HZ);
241
242 cleanup:
243         filter_grant_commit(exp, niocount, res);
244
245         switch (cleanup_phase) {
246         case 2:
247                 pop_ctxt(&saved, &obd->obd_ctxt, NULL);
248                 LASSERT(current->journal_info == NULL);
249         case 1:
250                 OBD_FREE(dreq, sizeof(*dreq));
251         case 0:
252                 for (i = 0, lnb = res; i < obj->ioo_bufcnt; i++, lnb++) {
253                         /* flip_.. gets a ref, while free_page only frees
254                          * when it decrefs to 0 */
255                         if (rc == 0)
256                                 flip_into_page_cache(inode, lnb->page);
257                         __free_page(lnb->page);
258                 }
259                 f_dput(res->dentry);
260         }
261
262         RETURN(rc);
263 }