Whamcloud - gitweb
b=3031
[fs/lustre-release.git] / lustre / cmobd / cm_write.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2002 Cluster File Systems, Inc. <info@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #define DEBUG_SUBSYSTEM S_CMOBD
23
24 #include <linux/version.h>
25 #include <linux/init.h>
26 #include <linux/obd_support.h>
27 #include <linux/lustre_lib.h>
28 #include <linux/lustre_net.h>
29 #include <linux/lustre_idl.h>
30 #include <linux/obd_class.h>
31 #include <linux/lustre_mds.h>
32 #include <linux/lustre_cmobd.h>
33
34 #include <asm/div64.h>
35 #include <linux/pagemap.h>
36
37 #include "cm_internal.h"
38
39 extern kmem_cache_t *cmobd_extent_slab;
40
41 /* helper function to split an extent */
42 static obd_count split_extent(struct ldlm_extent *ext, unsigned long interval)
43 {
44         obd_count buf_count, remainder;
45         ENTRY;
46         
47         buf_count = ext->end - ext->start + 1;
48         LASSERT(buf_count > 0);
49         
50         remainder = do_div(buf_count, interval);
51         if (remainder)
52                 buf_count++;
53
54         RETURN(buf_count);
55 }
56
57 static int cmobd_ap_make_ready(void *data, int cmd)
58 {
59         struct cmobd_async_page *cmap = (struct cmobd_async_page *)data;
60         struct page *page = cmap->cmap_page;
61         ENTRY;
62         
63         if (cmd == OBD_BRW_READ)
64                 RETURN(0);
65         
66         if (TryLockPage(page))
67                 RETURN(-EAGAIN);
68
69         RETURN(0);
70 }
71
72 static int cmobd_ap_refresh_count(void *data, int cmd)
73 {
74         struct cmobd_async_page *cmap = (struct cmobd_async_page *)data;
75         struct page *page = cmap->cmap_page;
76         struct inode *inode = page->mapping->host;
77         ENTRY;
78
79         LASSERT(cmd != OBD_BRW_READ);
80
81         /* catch race with truncate */
82         if (((loff_t)page->index << PAGE_SHIFT) >= inode->i_size)
83                 RETURN(0);
84
85         /* catch sub-page write at end of file */
86         if (((loff_t)page->index << PAGE_SHIFT) + PAGE_SIZE > inode->i_size)
87                 RETURN(inode->i_size % PAGE_SIZE);
88
89         RETURN(PAGE_SIZE);
90 }
91
92 static void cmobd_ap_fill_obdo(void *data, int cmd, struct obdo *oa)
93 {
94         struct cmobd_async_page *cmap = (struct cmobd_async_page *)data;
95         obd_valid valid_flags;
96         struct inode *inode;
97         ENTRY;
98
99         if (IS_ERR(cmap)) {
100                 EXIT;
101                 return;
102         }
103
104         inode = cmap->cmap_page->mapping->host;
105         oa->o_id = cmap->cmap_es->es_oa.o_id;
106         oa->o_gr = cmap->cmap_es->es_oa.o_gr;
107         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
108         valid_flags = OBD_MD_FLTYPE | OBD_MD_FLATIME;
109         if (cmd == OBD_BRW_WRITE) {
110                 oa->o_valid |= OBD_MD_FLIFID;
111                 
112                 /* FIXME-UMKA: should be here some mds num and mds id? */
113                 mdc_pack_id(obdo_id(oa), inode->i_ino, 0, 
114                             inode->i_mode, 0, 0);
115                 valid_flags |= OBD_MD_FLMTIME | OBD_MD_FLCTIME;
116         }
117
118         obdo_from_inode(oa, inode, valid_flags);
119
120         EXIT;
121         return;
122 }
123
124 static void cmobd_ap_completion(void *data, int cmd, struct obdo *oa, int rc)
125 {
126         struct cmobd_async_page *cmap = (struct cmobd_async_page *)data;
127         struct cmobd_extent_set *set = cmap->cmap_es;
128         unsigned long flags;
129         struct page *page;
130         int wakeup = 0;
131         ENTRY;
132
133         page = cmap->cmap_page;
134         LASSERT(PageLocked(page));
135         
136         /* XXX */
137         if (rc)
138                 SetPageError(page);
139         
140         spin_lock_irqsave(&set->es_lock, flags);
141         LASSERT(!list_empty(&set->es_pages));
142         LASSERT(!list_empty(&cmap->cmap_link));
143         
144         list_del_init(&cmap->cmap_link);
145         if (list_empty(&set->es_pages) && !set->es_count)
146                 wakeup = 1;
147         spin_unlock_irqrestore(&set->es_lock, flags);
148
149         obd_teardown_async_page(set->es_exp, set->es_lsm, NULL, 
150                                 cmap->cmap_cookie);
151         OBD_FREE(cmap, sizeof(*cmap));
152
153         unlock_page(page);
154         page_cache_release(page);
155         
156         if (wakeup)
157                 wake_up(&set->es_waitq);
158         EXIT;
159         return;
160 }
161
162 static struct obd_async_page_ops cmobd_async_page_ops = {
163         .ap_make_ready =        cmobd_ap_make_ready,
164         .ap_refresh_count =     cmobd_ap_refresh_count,
165         .ap_fill_obdo =         cmobd_ap_fill_obdo,
166         .ap_completion =        cmobd_ap_completion,
167 };
168
169 static int cmobd_send_pages(struct obd_device *obd, 
170                             struct niobuf_local *lnb,
171                             obd_count oa_bufs,
172                             struct cmobd_extent_set *set)
173 {
174         struct cm_obd *cmobd = &obd->u.cm;
175         struct obd_export *exp = cmobd->master_exp;
176         struct cmobd_async_page *cmap = NULL;
177         obd_count i;
178         int rc = 0;
179         unsigned long flags;
180         ENTRY;
181  
182         for (i = 0; i < oa_bufs; i++, lnb++) {
183                 
184                 OBD_ALLOC(cmap, sizeof(*cmap));
185                 if (cmap == NULL) {
186                         CERROR("Not enought memory\n");
187                         rc = -ENOMEM;
188                         break;
189                 }
190                 INIT_LIST_HEAD(&cmap->cmap_link);
191                 cmap->cmap_page = lnb->page;
192                 cmap->cmap_es = set;
193                         
194                 rc = obd_prep_async_page(exp, set->es_lsm, NULL, lnb->page,
195                                          lnb->offset, &cmobd_async_page_ops, 
196                                          cmap, &cmap->cmap_cookie);
197                 if (rc) {
198                         CERROR("cmobd prep async page failed page(%p) rc(%d)\n", 
199                                lnb->page, rc);
200                         OBD_FREE(cmap, sizeof(*cmap));
201                         break;
202                 }
203
204                 LASSERT(cmap->cmap_page);
205                 LASSERT(!PageLocked(cmap->cmap_page));
206                 LASSERT(Page_Uptodate(cmap->cmap_page));
207                 page_cache_get(cmap->cmap_page);
208
209                 spin_lock_irqsave(&set->es_lock, flags);
210                 list_add_tail(&cmap->cmap_link, &set->es_pages);
211                 spin_unlock_irqrestore(&set->es_lock, flags);
212                 
213                 rc = obd_queue_async_io(exp, set->es_lsm, NULL, cmap->cmap_cookie,
214                                         OBD_BRW_WRITE, 0, 0, 0, 0);
215                 if (rc) {  /* try sync io */
216                         struct obd_io_group *oig;
217                         
218                         spin_lock_irqsave(&set->es_lock, flags);
219                         list_del_init(&cmap->cmap_link);
220                         spin_unlock_irqrestore(&set->es_lock, flags);
221
222                         lock_page(cmap->cmap_page);
223                         
224                         rc = oig_init(&oig);
225                         if (rc)
226                                 GOTO(free_page, rc);
227
228                         rc = obd_queue_group_io(exp, set->es_lsm, NULL, oig,
229                                                 cmap->cmap_cookie,
230                                                 OBD_BRW_WRITE, 0, lnb->len, 0,
231                                                 ASYNC_READY | ASYNC_URGENT |
232                                                 ASYNC_COUNT_STABLE |
233                                                 ASYNC_GROUP_SYNC);
234
235                         if (rc)
236                                 GOTO(free_oig, rc);
237
238                         rc = obd_trigger_group_io(exp, set->es_lsm, NULL, oig);
239                         if (rc)
240                                 GOTO(free_oig, rc);
241
242                         rc = oig_wait(oig);
243 free_oig:
244                         oig_release(oig);
245 free_page:
246                         unlock_page(cmap->cmap_page);
247                         page_cache_release(cmap->cmap_page);
248                         obd_teardown_async_page(exp, set->es_lsm, NULL, 
249                                                 cmap->cmap_cookie);
250                         OBD_FREE(cmap, sizeof(*cmap));
251                         if (rc) {
252                                 CERROR("cmobd sync io failed\n");
253                                 break;
254                         }
255                 }
256         }
257         RETURN(rc);
258 }
259
260 static int cmobd_write_extent(struct obd_device *obd, 
261                               struct cmobd_extent_info *ei)
262 {
263         struct cmobd_extent_set *set = ei->ei_set;
264         struct cm_obd *cmobd = &obd->u.cm;
265         unsigned long flags;
266         struct obd_ioobj ioo;
267         struct niobuf_local *lnb;
268         struct niobuf_remote *rnb;
269         obd_count i, oa_bufs;
270         struct obdo *oa;
271         obd_off offset;
272         int ret, rc = 0, wakeup = 0;
273         ENTRY;
274
275         oa_bufs = split_extent(&ei->ei_extent, PAGE_SIZE);
276         LASSERT(oa_bufs > 0);
277
278         OBD_ALLOC(lnb, oa_bufs * sizeof(struct niobuf_local));
279         OBD_ALLOC(rnb, oa_bufs * sizeof(struct niobuf_remote));
280         oa = obdo_alloc();
281         
282         if (lnb == NULL || rnb == NULL || oa == NULL)
283                 GOTO(out, rc = -ENOMEM);
284
285         LASSERT(ei->ei_extent.end >= ei->ei_extent.start);
286         LASSERT((ei->ei_extent.start & (PAGE_SIZE -1)) == 0);
287         
288         for (i = 0, offset = ei->ei_extent.start; i < oa_bufs; 
289              i++, offset += PAGE_SIZE) {
290                 rnb[i].offset = offset;
291                 rnb[i].len = MIN(PAGE_SIZE, ei->ei_extent.end - offset + 1);
292         }
293
294         memcpy(oa, &set->es_oa, sizeof(*oa));
295         obdo_to_ioobj(oa, &ioo);
296         ioo.ioo_bufcnt = oa_bufs;
297
298         ret = obd_preprw(OBD_BRW_READ, cmobd->cache_exp, oa, 1, &ioo, 
299                          oa_bufs, rnb, lnb, NULL);
300         if (ret)
301                 GOTO(out, rc = ret);
302
303         rc = cmobd_send_pages(obd, lnb, oa_bufs, set);
304         if (rc)
305                 CERROR("cmobd_send_pages failed %d\n", rc);
306
307         rc = obd_commitrw(OBD_BRW_READ, cmobd->cache_exp, oa, 1, &ioo,
308                           oa_bufs, lnb, NULL, ret);
309
310         /* countdown and wake up */
311         spin_lock_irqsave(&set->es_lock, flags);
312         LASSERT(set->es_count);
313         set->es_count--;
314         if (!set->es_count)
315                 wakeup = 1;
316         spin_unlock_irqrestore(&set->es_lock, flags);
317
318         if (wakeup)
319                 wake_up(&set->es_waitq);
320
321 out: 
322         if (lnb)
323                 OBD_FREE(lnb, oa_bufs * sizeof(struct niobuf_local));
324         if (rnb)
325                 OBD_FREE(rnb, oa_bufs * sizeof(struct niobuf_remote));
326         if (oa)
327                 obdo_free(oa);
328
329         RETURN(rc);
330 }
331
332 static struct cmobd_extent_info* get_next_ei(struct cmobd_write_service *ws)
333 {
334         struct cmobd_extent_info *ei = NULL;
335         unsigned long flags;
336         int wakeup = 0;
337
338         spin_lock_irqsave(&ws->ws_extent_lock, flags);
339         if (!list_empty(&ws->ws_extents)) {
340                 ei = list_entry(ws->ws_extents.next, 
341                                 struct cmobd_extent_info, ei_link);
342                 list_del_init(&ei->ei_link);
343                 ws->ws_nextents--;
344                 if (ws->ws_nextents < CMOBD_MAX_EXTENTS)
345                         wakeup = 1;
346         }
347         spin_unlock_irqrestore(&ws->ws_extent_lock, flags);
348
349         if (wakeup)
350                 wake_up_all(&ws->ws_waitq_provider);
351
352         return ei;
353 }
354        
355 static int cmobd_write_main(void *arg)
356 {
357         struct ptlrpc_svc_data *data = (struct ptlrpc_svc_data *)arg;
358         struct ptlrpc_thread   *thread = data->thread;
359         struct obd_device *obd = data->dev;
360         struct cm_obd *cmobd = &obd->u.cm;
361         struct cmobd_write_service *ws = cmobd->write_srv;
362         struct cmobd_extent_info *extent = NULL;
363         unsigned long flags;
364         int rc;
365         ENTRY;
366
367         lock_kernel();
368         ptlrpc_daemonize();
369
370         SIGNAL_MASK_LOCK(current, flags);
371         sigfillset(&current->blocked);
372         RECALC_SIGPENDING;
373         SIGNAL_MASK_UNLOCK(current, flags);
374
375         LASSERTF(strlen(data->name) < sizeof(current->comm),
376                  "name %d > len %d\n",strlen(data->name),sizeof(current->comm));
377         THREAD_NAME(current->comm, sizeof(current->comm) - 1, "%s", data->name);
378
379         unlock_kernel();
380
381         thread->t_flags = SVC_RUNNING;
382         wake_up(&thread->t_ctl_waitq);
383
384         /* Record that the thread is running */
385         spin_lock_irqsave(&ws->ws_thread_lock, flags);
386         ws->ws_nthreads++;
387         spin_unlock_irqrestore(&ws->ws_thread_lock, flags);
388
389         while ((thread->t_flags & SVC_STOPPING) == 0) {
390                 struct l_wait_info lwi = { 0 };
391                                   
392                 l_wait_event_exclusive(ws->ws_waitq_consumer,
393                                        ((thread->t_flags & SVC_STOPPING) ||
394                                         ((extent = get_next_ei(ws)) != 
395                                           NULL)),
396                                        &lwi);
397                 if (extent == NULL)
398                         continue;
399                 rc = cmobd_write_extent(obd, extent);
400                 if (rc)
401                         CERROR("write extent failed rc=%d\n", rc);
402                 OBD_SLAB_FREE(extent, cmobd_extent_slab, sizeof(*extent));
403                 extent = NULL;
404         }
405  
406         thread->t_flags = SVC_STOPPED;
407         wake_up(&thread->t_ctl_waitq);
408        
409         spin_lock_irqsave(&ws->ws_thread_lock, flags);
410         ws->ws_nthreads--;                    /* must know immediately */
411         spin_unlock_irqrestore(&ws->ws_thread_lock, flags);
412
413         RETURN(0);
414 }
415
416 /* functions for manipulating cmobd write replay threads, similar with 
417  * ptlrpc threads functions */
418 static int cmobd_start_thread(struct obd_device *obd, char *name)
419 {
420         struct cm_obd *cmobd = &obd->u.cm;
421         struct cmobd_write_service *ws = cmobd->write_srv;
422         struct l_wait_info lwi = { 0 };
423         struct ptlrpc_svc_data d;
424         struct ptlrpc_thread *thread;
425         unsigned long flags;
426         int rc;
427         ENTRY;
428
429         OBD_ALLOC(thread, sizeof(*thread));
430         if (thread == NULL)
431                 RETURN(-ENOMEM);
432         init_waitqueue_head(&thread->t_ctl_waitq);
433         
434         d.dev = obd;
435         d.svc = NULL;
436         d.name = name;
437         d.thread = thread;
438
439         spin_lock_irqsave(&ws->ws_thread_lock, flags);
440         list_add(&thread->t_link, &ws->ws_threads);
441         spin_unlock_irqrestore(&ws->ws_thread_lock, flags);
442
443         /* CLONE_VM and CLONE_FILES just avoid a needless copy, because we
444          * just drop the VM and FILES in ptlrpc_daemonize() right away.
445          */
446         rc = kernel_thread(cmobd_write_main, &d, CLONE_VM | CLONE_FILES);
447         if (rc < 0) {
448                 CERROR("cannot start thread: %d\n", rc);
449                 spin_lock_irqsave(&ws->ws_thread_lock, flags);
450                 list_del_init(&thread->t_link);
451                 spin_unlock_irqrestore(&ws->ws_thread_lock, flags);
452                 OBD_FREE(thread, sizeof(*thread));
453                 RETURN(rc);
454         }
455         l_wait_event(thread->t_ctl_waitq, thread->t_flags & SVC_RUNNING, &lwi);
456
457         RETURN(0);
458
459 }
460
461 static void cmobd_stop_thread(struct obd_device *obd, 
462                               struct ptlrpc_thread *thread)
463 {
464         struct cm_obd *cmobd = &obd->u.cm;
465         struct cmobd_write_service *ws = cmobd->write_srv;
466         struct l_wait_info lwi = { 0 };
467         unsigned long flags;
468         ENTRY;
469
470         thread->t_flags = SVC_STOPPING;
471         wake_up_all(&ws->ws_waitq_consumer);
472
473         l_wait_event(thread->t_ctl_waitq, (thread->t_flags & SVC_STOPPED),
474                      &lwi);
475
476         spin_lock_irqsave(&ws->ws_thread_lock, flags);
477         list_del(&thread->t_link);
478         spin_unlock_irqrestore(&ws->ws_thread_lock, flags);
479         
480         OBD_FREE(thread, sizeof(*thread));
481         EXIT;
482 }
483
484 static void cmobd_stop_all_threads(struct obd_device *obd)
485 {
486         struct cm_obd *cmobd = &obd->u.cm;
487         struct cmobd_write_service *ws = cmobd->write_srv;
488         unsigned long flags;
489         struct ptlrpc_thread *thread;
490         ENTRY;
491
492         spin_lock_irqsave(&ws->ws_thread_lock, flags);
493         while (!list_empty(&ws->ws_threads)) {
494                 thread = list_entry(ws->ws_threads.next, 
495                                     struct ptlrpc_thread, t_link);
496
497                 spin_unlock_irqrestore(&ws->ws_thread_lock, flags);
498                 cmobd_stop_thread(obd, thread);
499                 spin_lock_irqsave(&ws->ws_thread_lock, flags);
500         }
501
502         spin_unlock_irqrestore(&ws->ws_thread_lock, flags);
503         EXIT;
504 }
505
506 static int cmobd_start_n_threads(struct obd_device *obd, int num_threads, 
507                                  char *base_name)
508 {
509         int i, rc = 0;
510         ENTRY;
511
512         for (i = 0; i < num_threads; i++) {
513                 char name[32];
514                 snprintf(name, sizeof(name) - 1, "%s_%02d", base_name, i);
515                 rc = cmobd_start_thread(obd, name);
516                 if (rc) {
517                         CERROR("cannot start %s thread #%d: rc %d\n", base_name,
518                                i, rc);
519                         cmobd_stop_all_threads(obd);
520                 }
521         }
522         RETURN(rc);
523 }
524
525 void cmobd_cleanup_write_srv(struct obd_device *obd)
526 {
527         struct cm_obd *cmobd = &obd->u.cm;
528         struct list_head *pos, *n;
529         struct cmobd_extent_info *ei;
530         ENTRY;
531         
532         cmobd_stop_all_threads(obd);
533         
534         list_for_each_safe(pos, n, &cmobd->write_srv->ws_extents) {
535                 ei = list_entry(pos, struct cmobd_extent_info, ei_link);
536                 list_del_init(&ei->ei_link);
537                 OBD_FREE(ei, sizeof(*ei));
538         }
539         OBD_FREE(cmobd->write_srv, sizeof(*cmobd->write_srv));
540         EXIT;
541 }
542
543 int cmobd_init_write_srv(struct obd_device *obd)
544 {
545         struct cm_obd *cmobd = &obd->u.cm;
546         struct cmobd_write_service *ws;
547         int rc;
548         ENTRY;
549
550         OBD_ALLOC(cmobd->write_srv, sizeof(*cmobd->write_srv));
551         if (cmobd->write_srv == NULL)
552                 RETURN(-ENOMEM);
553         ws = cmobd->write_srv;
554         
555         INIT_LIST_HEAD(&ws->ws_threads);
556         spin_lock_init(&ws->ws_thread_lock);
557         ws->ws_nthreads = 0;
558
559         INIT_LIST_HEAD(&ws->ws_extents);
560         spin_lock_init(&ws->ws_extent_lock);
561         ws->ws_nextents = 0;
562         init_waitqueue_head(&ws->ws_waitq_provider);
563         init_waitqueue_head(&ws->ws_waitq_consumer);
564
565         rc = cmobd_start_n_threads(obd, CMOBD_NUM_THREADS, "cm_write");
566         if (rc) 
567                 cmobd_cleanup_write_srv(obd);
568         
569         RETURN(rc);
570 }
571
572 static int extent_queue_full(struct cmobd_write_service *ws)
573 {
574         unsigned long flags;
575         int full = 0;
576         
577         spin_lock_irqsave(&ws->ws_extent_lock, flags);
578         full = (ws->ws_nextents >= CMOBD_MAX_EXTENTS) ? 1 : 0;
579         spin_unlock_irqrestore(&ws->ws_extent_lock, flags);
580
581         return full;
582 }
583         
584 static void cmobd_queue_extent(struct obd_device *obd, 
585                                struct cmobd_extent_info *ex)
586 {
587         struct cm_obd *cmobd = &obd->u.cm;
588         struct cmobd_write_service *ws = cmobd->write_srv;
589         struct cmobd_extent_set *set = ex->ei_set;
590         unsigned long flags;
591         struct l_wait_info lwi = { 0 };
592         ENTRY;
593
594 wait:
595         l_wait_event(ws->ws_waitq_provider, !extent_queue_full(ws), &lwi);
596         
597         spin_lock_irqsave(&ws->ws_extent_lock, flags);
598         if (ws->ws_nextents >= CMOBD_MAX_EXTENTS) {
599                 spin_unlock_irqrestore(&ws->ws_extent_lock, flags);
600                 goto wait;
601         }
602         list_add_tail(&ex->ei_link, &ws->ws_extents);
603         ws->ws_nextents++;
604         spin_unlock_irqrestore(&ws->ws_extent_lock, flags);
605                 
606         spin_lock_irqsave(&set->es_lock, flags);
607         set->es_count++;
608         spin_unlock_irqrestore(&set->es_lock, flags);        
609
610         wake_up_all(&ws->ws_waitq_consumer);
611
612         EXIT;
613
614
615 static obd_size cmobd_id2size(struct obd_export *exp, obd_id id, obd_gr grp)
616 {
617         struct lvfs_run_ctxt saved;
618         struct dentry *de = NULL;
619         obd_size size;
620         ENTRY;
621         
622         push_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
623         
624         de = obd_lvfs_id2dentry(exp, id, 0, grp);
625         LASSERT(de);
626
627         size = de->d_inode->i_size;
628
629         dput(de);
630         pop_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
631
632         RETURN(size);
633 }
634
635 static int extent_set_done(struct cmobd_extent_set *set, int phase)
636 {
637         int done = 0;
638         unsigned long flags;
639
640         spin_lock_irqsave(&set->es_lock, flags);
641         if (phase == 1)
642                 done = set->es_count ? 0 : 1;
643         else if (phase == 2) 
644                 done = (!set->es_count && list_empty(&set->es_pages)) ? 1 : 0;
645         spin_unlock_irqrestore(&set->es_lock, flags);
646
647         return done;
648 }
649
650 int cmobd_replay_write(struct obd_device *obd, struct obdo *oa, 
651                        struct ldlm_extent *ext)
652 {
653         struct cm_obd *cmobd = &obd->u.cm;
654         struct lov_stripe_md *lsm = NULL;
655         struct cmobd_extent_set set;
656         struct cmobd_extent_info *ex;
657         struct l_wait_info lwi = { 0 };
658         struct list_head *pos, *n;
659         struct cmobd_async_page *cmap;
660         struct lov_obd *lov;
661         unsigned long flags;
662         obd_count i, buf_count;
663         obd_off start;
664         int rc = 0;
665         ENTRY;
666
667         /* 
668          * nevertheless ost is not used anymore and lov should be always present
669          * as a object storage export, using ost is still possible (just
670          * deprecated) and we should make sure here, that this is really
671          * lov. --umka.
672          */
673         lov = &cmobd->master_exp->exp_obd->u.lov;
674         rc = cmobd_dummy_lsm(&lsm, lov->desc.ld_tgt_count, oa,
675                              (__u32)lov->desc.ld_default_stripe_size);
676         if (rc)
677                 RETURN(-ENOMEM);
678
679         set.es_extent.start = ext->start;
680         set.es_extent.end = ext->end;
681         set.es_lsm = lsm;
682         set.es_exp = cmobd->master_exp;
683         set.es_ext_sz = CMOBD_MAX_EXTENT_SZ;
684         set.es_count = 0;
685         memcpy(&set.es_oa, oa, sizeof(*oa));
686         
687         INIT_LIST_HEAD(&set.es_pages);
688         spin_lock_init(&set.es_lock);
689         init_waitqueue_head(&set.es_waitq);
690         
691         if (set.es_extent.end < set.es_extent.start) {
692                 CDEBUG(D_HA, "illegal extent in write replay\n");
693                 GOTO(out, rc = -EINVAL);
694         }
695         /* start of extent is extended to page boundaries */
696         set.es_extent.start -= set.es_extent.start & ~PAGE_MASK;
697         /* if the end of extent is EOF, set it as file size */
698         if (set.es_extent.end == OBD_OBJECT_EOF) {
699                 set.es_extent.end = cmobd_id2size(cmobd->cache_exp, 
700                                                   oa->o_id, oa->o_gr) - 1;
701                 if (set.es_extent.end <= 0)
702                         GOTO(out, rc = 0);
703         }
704         
705         buf_count = split_extent(&set.es_extent, set.es_ext_sz);
706         for (i = 0, start = set.es_extent.start; i < buf_count; 
707              i++, start += set.es_ext_sz) {
708                 OBD_SLAB_ALLOC(ex, cmobd_extent_slab, SLAB_NOFS, sizeof(*ex));
709                 if (ex == NULL) {
710                         CERROR("not enough memory\n");
711                         break;
712                 }
713
714                 INIT_LIST_HEAD(&ex->ei_link);
715                 ex->ei_set = &set;
716                 ex->ei_extent.start = start;
717                 ex->ei_extent.end = start + set.es_ext_sz - 1;
718                 if (ex->ei_extent.end > set.es_extent.end)
719                         ex->ei_extent.end = set.es_extent.end;
720
721                 cmobd_queue_extent(obd, ex);
722         }
723         
724         l_wait_event(set.es_waitq, extent_set_done(&set, 1), &lwi);
725         
726         /* fire remaining ios */
727         spin_lock_irqsave(&set.es_lock, flags);
728         list_for_each_safe (pos, n, &set.es_pages) {
729                 cmap = list_entry(pos, struct cmobd_async_page, cmap_link);
730
731                 /* locked pages are in flight */
732                 if (PageLocked(cmap->cmap_page))
733                         continue;
734                 
735                 spin_unlock_irqrestore(&set.es_lock, flags);
736                 rc = obd_set_async_flags(set.es_exp, set.es_lsm, NULL, 
737                                          cmap->cmap_cookie, 
738                                          ASYNC_URGENT);
739                 if (rc)
740                         CERROR("cmobd set async flags failed\n");
741                 spin_lock_irqsave(&set.es_lock, flags);
742                 break;
743         }
744         spin_unlock_irqrestore(&set.es_lock, flags);
745
746         l_wait_event(set.es_waitq, extent_set_done(&set, 2), &lwi);
747 out:
748         cmobd_free_lsm(&lsm);
749         RETURN(rc);
750 }