Whamcloud - gitweb
Land b_smallfix onto HEAD (20040512_1806)
[fs/lustre-release.git] / lustre / osc / osc_request.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001-2003 Cluster File Systems, Inc.
5  *   Author Peter Braam <braam@clusterfs.com>
6  *
7  *   This file is part of Lustre, http://www.lustre.org.
8  *
9  *   Lustre is free software; you can redistribute it and/or
10  *   modify it under the terms of version 2 of the GNU General Public
11  *   License as published by the Free Software Foundation.
12  *
13  *   Lustre is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with Lustre; if not, write to the Free Software
20  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  *  For testing and management it is treated as an obd_device,
23  *  although * it does not export a full OBD method table (the
24  *  requests are coming * in over the wire, so object target modules
25  *  do not have a full * method table.)
26  *
27  */
28
29 #ifndef EXPORT_SYMTAB
30 # define EXPORT_SYMTAB
31 #endif
32 #define DEBUG_SUBSYSTEM S_OSC
33
34 #ifdef __KERNEL__
35 # include <linux/version.h>
36 # include <linux/module.h>
37 # include <linux/mm.h>
38 # include <linux/highmem.h>
39 # include <linux/ctype.h>
40 # include <linux/init.h>
41 # if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
42 #  include <linux/workqueue.h>
43 #  include <linux/smp_lock.h>
44 # else
45 #  include <linux/locks.h>
46 # endif
47 #else /* __KERNEL__ */
48 # include <liblustre.h>
49 #endif
50
51 # include <linux/lustre_dlm.h>
52 #include <linux/kp30.h>
53 #include <linux/lustre_net.h>
54 #include <lustre/lustre_user.h>
55 #include <linux/obd_ost.h>
56 #include <linux/obd_lov.h>
57
58 #ifdef  __CYGWIN__
59 # include <ctype.h>
60 #endif
61
62 #include <linux/lustre_ha.h>
63 #include <linux/lprocfs_status.h>
64 #include <linux/lustre_log.h>
65 #include "osc_internal.h"
66
67 /* Pack OSC object metadata for disk storage (LE byte order). */
68 static int osc_packmd(struct obd_export *exp, struct lov_mds_md **lmmp,
69                       struct lov_stripe_md *lsm)
70 {
71         int lmm_size;
72         ENTRY;
73
74         lmm_size = sizeof(**lmmp);
75         if (!lmmp)
76                 RETURN(lmm_size);
77
78         if (*lmmp && !lsm) {
79                 OBD_FREE(*lmmp, lmm_size);
80                 *lmmp = NULL;
81                 RETURN(0);
82         }
83
84         if (!*lmmp) {
85                 OBD_ALLOC(*lmmp, lmm_size);
86                 if (!*lmmp)
87                         RETURN(-ENOMEM);
88         }
89
90         if (lsm) {
91                 LASSERT(lsm->lsm_object_id);
92                 (*lmmp)->lmm_object_id = cpu_to_le64(lsm->lsm_object_id);
93         }
94
95         RETURN(lmm_size);
96 }
97
98 /* Unpack OSC object metadata from disk storage (LE byte order). */
99 static int osc_unpackmd(struct obd_export *exp, struct lov_stripe_md **lsmp,
100                         struct lov_mds_md *lmm, int lmm_bytes)
101 {
102         int lsm_size;
103         ENTRY;
104
105         if (lmm != NULL) {
106                 if (lmm_bytes < sizeof (*lmm)) {
107                         CERROR("lov_mds_md too small: %d, need %d\n",
108                                lmm_bytes, (int)sizeof(*lmm));
109                         RETURN(-EINVAL);
110                 }
111                 /* XXX LOV_MAGIC etc check? */
112
113                 if (lmm->lmm_object_id == 0) {
114                         CERROR("lov_mds_md: zero lmm_object_id\n");
115                         RETURN(-EINVAL);
116                 }
117         }
118
119         lsm_size = lov_stripe_md_size(1);
120         if (lsmp == NULL)
121                 RETURN(lsm_size);
122
123         if (*lsmp != NULL && lmm == NULL) {
124                 OBD_FREE(*lsmp, lsm_size);
125                 *lsmp = NULL;
126                 RETURN(0);
127         }
128
129         if (*lsmp == NULL) {
130                 OBD_ALLOC(*lsmp, lsm_size);
131                 if (*lsmp == NULL)
132                         RETURN(-ENOMEM);
133                 loi_init((*lsmp)->lsm_oinfo);
134         }
135
136         if (lmm != NULL) {
137                 /* XXX zero *lsmp? */
138                 (*lsmp)->lsm_object_id = le64_to_cpu (lmm->lmm_object_id);
139                 LASSERT((*lsmp)->lsm_object_id);
140         }
141
142         (*lsmp)->lsm_maxbytes = LUSTRE_STRIPE_MAXBYTES;
143
144         RETURN(lsm_size);
145 }
146
147 static int osc_getattr_interpret(struct ptlrpc_request *req,
148                                  struct osc_getattr_async_args *aa, int rc)
149 {
150         struct ost_body *body;
151         ENTRY;
152
153         if (rc != 0)
154                 RETURN(rc);
155
156         body = lustre_swab_repbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
157         if (body) {
158                 CDEBUG(D_INODE, "mode: %o\n", body->oa.o_mode);
159                 memcpy(aa->aa_oa, &body->oa, sizeof(*aa->aa_oa));
160
161                 /* This should really be sent by the OST */
162                 aa->aa_oa->o_blksize = PTLRPC_MAX_BRW_SIZE;
163                 aa->aa_oa->o_valid |= OBD_MD_FLBLKSZ;
164         } else {
165                 CERROR("can't unpack ost_body\n");
166                 rc = -EPROTO;
167                 aa->aa_oa->o_valid = 0;
168         }
169
170         RETURN(rc);
171 }
172
173 static int osc_getattr_async(struct obd_export *exp, struct obdo *oa,
174                              struct lov_stripe_md *md,
175                              struct ptlrpc_request_set *set)
176 {
177         struct ptlrpc_request *request;
178         struct ost_body *body;
179         int size = sizeof(*body);
180         struct osc_getattr_async_args *aa;
181         ENTRY;
182
183         request = ptlrpc_prep_req(class_exp2cliimp(exp), OST_GETATTR, 1,
184                                   &size, NULL);
185         if (!request)
186                 RETURN(-ENOMEM);
187
188         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
189         memcpy(&body->oa, oa, sizeof(*oa));
190
191         request->rq_replen = lustre_msg_size(1, &size);
192         request->rq_interpret_reply = osc_getattr_interpret;
193
194         LASSERT (sizeof (*aa) <= sizeof (request->rq_async_args));
195         aa = (struct osc_getattr_async_args *)&request->rq_async_args;
196         aa->aa_oa = oa;
197
198         ptlrpc_set_add_req (set, request);
199         RETURN (0);
200 }
201
202 static int osc_getattr(struct obd_export *exp, struct obdo *oa,
203                        struct lov_stripe_md *md)
204 {
205         struct ptlrpc_request *request;
206         struct ost_body *body;
207         int rc, size = sizeof(*body);
208         ENTRY;
209
210         request = ptlrpc_prep_req(class_exp2cliimp(exp), OST_GETATTR, 1,
211                                   &size, NULL);
212         if (!request)
213                 RETURN(-ENOMEM);
214
215         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
216         memcpy(&body->oa, oa, sizeof(*oa));
217
218         request->rq_replen = lustre_msg_size(1, &size);
219
220         rc = ptlrpc_queue_wait(request);
221         if (rc) {
222                 CERROR("%s failed: rc = %d\n", __FUNCTION__, rc);
223                 GOTO(out, rc);
224         }
225
226         body = lustre_swab_repbuf(request, 0, sizeof (*body),
227                                   lustre_swab_ost_body);
228         if (body == NULL) {
229                 CERROR ("can't unpack ost_body\n");
230                 GOTO (out, rc = -EPROTO);
231         }
232
233         CDEBUG(D_INODE, "mode: %o\n", body->oa.o_mode);
234         memcpy(oa, &body->oa, sizeof(*oa));
235
236         /* This should really be sent by the OST */
237         oa->o_blksize = PTLRPC_MAX_BRW_SIZE;
238         oa->o_valid |= OBD_MD_FLBLKSZ;
239
240         EXIT;
241  out:
242         ptlrpc_req_finished(request);
243         return rc;
244 }
245
246 static int osc_setattr(struct obd_export *exp, struct obdo *oa,
247                        struct lov_stripe_md *md, struct obd_trans_info *oti)
248 {
249         struct ptlrpc_request *request;
250         struct ost_body *body;
251         int rc, size = sizeof(*body);
252         ENTRY;
253
254         request = ptlrpc_prep_req(class_exp2cliimp(exp), OST_SETATTR, 1, &size,
255                                   NULL);
256         if (!request)
257                 RETURN(-ENOMEM);
258
259         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof(*body));
260         memcpy(&body->oa, oa, sizeof(*oa));
261
262         request->rq_replen = lustre_msg_size(1, &size);
263
264         rc = ptlrpc_queue_wait(request);
265         if (rc)
266                 GOTO(out, rc);
267
268         body = lustre_swab_repbuf(request, 0, sizeof(*body),
269                                   lustre_swab_ost_body);
270         if (body == NULL)
271                 GOTO(out, rc = -EPROTO);
272
273         memcpy(oa, &body->oa, sizeof(*oa));
274
275         EXIT;
276 out:
277         ptlrpc_req_finished(request);
278         RETURN(0);
279 }
280
281 int osc_real_create(struct obd_export *exp, struct obdo *oa,
282                     struct lov_stripe_md **ea, struct obd_trans_info *oti)
283 {
284         struct ptlrpc_request *request;
285         struct ost_body *body;
286         struct lov_stripe_md *lsm;
287         int rc, size = sizeof(*body);
288         ENTRY;
289
290         LASSERT(oa);
291         LASSERT(ea);
292
293         lsm = *ea;
294         if (!lsm) {
295                 rc = obd_alloc_memmd(exp, &lsm);
296                 if (rc < 0)
297                         RETURN(rc);
298         }
299
300         request = ptlrpc_prep_req(class_exp2cliimp(exp), OST_CREATE, 1, &size,
301                                   NULL);
302         if (!request)
303                 GOTO(out, rc = -ENOMEM);
304
305         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
306         memcpy(&body->oa, oa, sizeof(body->oa));
307
308         request->rq_replen = lustre_msg_size(1, &size);
309         if (oa->o_valid & OBD_MD_FLINLINE) {
310                 LASSERT((oa->o_valid & OBD_MD_FLFLAGS) &&
311                         oa->o_flags == OBD_FL_DELORPHAN);
312                 DEBUG_REQ(D_HA, request,
313                           "delorphan from OST integration");
314         }
315
316         rc = ptlrpc_queue_wait(request);
317         if (rc)
318                 GOTO(out_req, rc);
319
320         body = lustre_swab_repbuf(request, 0, sizeof(*body),
321                                   lustre_swab_ost_body);
322         if (body == NULL) {
323                 CERROR ("can't unpack ost_body\n");
324                 GOTO (out_req, rc = -EPROTO);
325         }
326
327         memcpy(oa, &body->oa, sizeof(*oa));
328
329         /* This should really be sent by the OST */
330         oa->o_blksize = PTLRPC_MAX_BRW_SIZE;
331         oa->o_valid |= OBD_MD_FLBLKSZ;
332
333         /* XXX LOV STACKING: the lsm that is passed to us from LOV does not
334          * have valid lsm_oinfo data structs, so don't go touching that.
335          * This needs to be fixed in a big way.
336          */
337         lsm->lsm_object_id = oa->o_id;
338         *ea = lsm;
339
340         if (oti != NULL) {
341                 oti->oti_transno = request->rq_repmsg->transno;
342
343                 if (oa->o_valid & OBD_MD_FLCOOKIE) {
344                         if (!oti->oti_logcookies)
345                                 oti_alloc_cookies(oti, 1);
346                         memcpy(oti->oti_logcookies, obdo_logcookie(oa),
347                                sizeof(oti->oti_onecookie));
348                 }
349         }
350
351         CDEBUG(D_HA, "transno: "LPD64"\n", request->rq_repmsg->transno);
352         EXIT;
353 out_req:
354         ptlrpc_req_finished(request);
355 out:
356         if (rc && !*ea)
357                 obd_free_memmd(exp, &lsm);
358         return rc;
359 }
360
361 static int osc_punch(struct obd_export *exp, struct obdo *oa,
362                      struct lov_stripe_md *md, obd_size start,
363                      obd_size end, struct obd_trans_info *oti)
364 {
365         struct ptlrpc_request *request;
366         struct ost_body *body;
367         int rc, size = sizeof(*body);
368         ENTRY;
369
370         if (!oa) {
371                 CERROR("oa NULL\n");
372                 RETURN(-EINVAL);
373         }
374
375         request = ptlrpc_prep_req(class_exp2cliimp(exp), OST_PUNCH, 1, &size,
376                                   NULL);
377         if (!request)
378                 RETURN(-ENOMEM);
379
380         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
381         memcpy(&body->oa, oa, sizeof(*oa));
382
383         /* overload the size and blocks fields in the oa with start/end */
384         body->oa.o_size = start;
385         body->oa.o_blocks = end;
386         body->oa.o_valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS);
387
388         request->rq_replen = lustre_msg_size(1, &size);
389
390         rc = ptlrpc_queue_wait(request);
391         if (rc)
392                 GOTO(out, rc);
393
394         body = lustre_swab_repbuf (request, 0, sizeof (*body),
395                                    lustre_swab_ost_body);
396         if (body == NULL) {
397                 CERROR ("can't unpack ost_body\n");
398                 GOTO (out, rc = -EPROTO);
399         }
400
401         memcpy(oa, &body->oa, sizeof(*oa));
402
403         EXIT;
404  out:
405         ptlrpc_req_finished(request);
406         return rc;
407 }
408
409 static int osc_sync(struct obd_export *exp, struct obdo *oa,
410                     struct lov_stripe_md *md, obd_size start, obd_size end)
411 {
412         struct ptlrpc_request *request;
413         struct ost_body *body;
414         int rc, size = sizeof(*body);
415         ENTRY;
416
417         if (!oa) {
418                 CERROR("oa NULL\n");
419                 RETURN(-EINVAL);
420         }
421
422         request = ptlrpc_prep_req(class_exp2cliimp(exp), OST_SYNC, 1, &size,
423                                   NULL);
424         if (!request)
425                 RETURN(-ENOMEM);
426
427         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
428         memcpy(&body->oa, oa, sizeof(*oa));
429
430         /* overload the size and blocks fields in the oa with start/end */
431         body->oa.o_size = start;
432         body->oa.o_blocks = end;
433         body->oa.o_valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS);
434
435         request->rq_replen = lustre_msg_size(1, &size);
436
437         rc = ptlrpc_queue_wait(request);
438         if (rc)
439                 GOTO(out, rc);
440
441         body = lustre_swab_repbuf(request, 0, sizeof(*body),
442                                   lustre_swab_ost_body);
443         if (body == NULL) {
444                 CERROR ("can't unpack ost_body\n");
445                 GOTO (out, rc = -EPROTO);
446         }
447
448         memcpy(oa, &body->oa, sizeof(*oa));
449
450         EXIT;
451  out:
452         ptlrpc_req_finished(request);
453         return rc;
454 }
455
456 static int osc_destroy(struct obd_export *exp, struct obdo *oa,
457                        struct lov_stripe_md *ea, struct obd_trans_info *oti)
458 {
459         struct ptlrpc_request *request;
460         struct ost_body *body;
461         int rc, size = sizeof(*body);
462         ENTRY;
463
464         if (!oa) {
465                 CERROR("oa NULL\n");
466                 RETURN(-EINVAL);
467         }
468
469         request = ptlrpc_prep_req(class_exp2cliimp(exp), OST_DESTROY, 1,
470                                   &size, NULL);
471         if (!request)
472                 RETURN(-ENOMEM);
473
474         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
475
476         if (oti != NULL && oa->o_valid & OBD_MD_FLCOOKIE) {
477                 memcpy(obdo_logcookie(oa), oti->oti_logcookies,
478                        sizeof(*oti->oti_logcookies));
479                 oti->oti_logcookies++;
480         }
481
482         memcpy(&body->oa, oa, sizeof(*oa));
483         request->rq_replen = lustre_msg_size(1, &size);
484
485         rc = ptlrpc_queue_wait(request);
486         if (rc)
487                 GOTO(out, rc);
488
489         body = lustre_swab_repbuf(request, 0, sizeof(*body),
490                                   lustre_swab_ost_body);
491         if (body == NULL) {
492                 CERROR ("Can't unpack body\n");
493                 GOTO (out, rc = -EPROTO);
494         }
495
496         memcpy(oa, &body->oa, sizeof(*oa));
497
498         EXIT;
499  out:
500         ptlrpc_req_finished(request);
501         return rc;
502 }
503
504 static void osc_announce_cached(struct client_obd *cli, struct obdo *oa,
505                                 long writing_bytes)
506 {
507         obd_flag bits = OBD_MD_FLBLOCKS|OBD_MD_FLGRANT;
508
509         LASSERT(!(oa->o_valid & bits));
510
511         oa->o_valid |= bits;
512         spin_lock(&cli->cl_loi_list_lock);
513         oa->o_dirty = cli->cl_dirty;
514         oa->o_undirty = cli->cl_dirty_max - oa->o_dirty;
515         oa->o_grant = cli->cl_avail_grant;
516         oa->o_dropped = cli->cl_lost_grant;
517         cli->cl_lost_grant = 0;
518         spin_unlock(&cli->cl_loi_list_lock);
519         CDEBUG(D_CACHE,"dirty: "LPU64" undirty: %u dropped %u grant: "LPU64"\n",
520                oa->o_dirty, oa->o_undirty, oa->o_dropped, oa->o_grant);
521 }
522
523 /* caller must hold loi_list_lock */
524 static void osc_consume_write_grant(struct client_obd *cli,
525                                     struct osc_async_page *oap)
526 {
527         cli->cl_dirty += PAGE_SIZE;
528         cli->cl_avail_grant -= PAGE_SIZE;
529         oap->oap_brw_flags |= OBD_BRW_FROM_GRANT;
530         CDEBUG(D_CACHE, "using %lu grant credits for oap %p\n", PAGE_SIZE, oap);
531         LASSERT(cli->cl_avail_grant >= 0);
532 }
533
534 /* caller must hold loi_list_lock */
535 void osc_wake_cache_waiters(struct client_obd *cli)
536 {
537         struct list_head *l, *tmp;
538         struct osc_cache_waiter *ocw;
539
540         list_for_each_safe(l, tmp, &cli->cl_cache_waiters) {
541                 /* if we can't dirty more, we must wait until some is written */
542                 if (cli->cl_dirty + PAGE_SIZE > cli->cl_dirty_max) {
543                         CDEBUG(D_CACHE, "no dirty room: dirty: %ld max %ld\n",
544                                cli->cl_dirty, cli->cl_dirty_max);
545                         return;
546                 }
547
548                 /* if still dirty cache but no grant wait for pending RPCs that
549                  * may yet return us some grant before doing sync writes */
550                 if (cli->cl_brw_in_flight && cli->cl_avail_grant < PAGE_SIZE) {
551                         CDEBUG(D_CACHE, "%d BRWs in flight, no grant\n",
552                                cli->cl_brw_in_flight);
553                         return;
554                 }
555
556                 ocw = list_entry(l, struct osc_cache_waiter, ocw_entry);
557                 list_del_init(&ocw->ocw_entry);
558                 if (cli->cl_avail_grant < PAGE_SIZE) {
559                         /* no more RPCs in flight to return grant, do sync IO */
560                         ocw->ocw_rc = -EDQUOT;
561                         CDEBUG(D_INODE, "wake oap %p for sync\n", ocw->ocw_oap);
562                 } else {
563                         osc_consume_write_grant(cli, ocw->ocw_oap);
564                 }
565
566                 wake_up(&ocw->ocw_waitq);
567         }
568
569         EXIT;
570 }
571
572 static void osc_update_grant(struct client_obd *cli, struct ost_body *body)
573 {
574         spin_lock(&cli->cl_loi_list_lock);
575         CDEBUG(D_CACHE, "got "LPU64" extra grant\n", body->oa.o_grant);
576         cli->cl_avail_grant += body->oa.o_grant;
577         /* waiters are woken in brw_interpret_oap */
578         spin_unlock(&cli->cl_loi_list_lock);
579 }
580
581 /* We assume that the reason this OSC got a short read is because it read
582  * beyond the end of a stripe file; i.e. lustre is reading a sparse file
583  * via the LOV, and it _knows_ it's reading inside the file, it's just that
584  * this stripe never got written at or beyond this stripe offset yet. */
585 static void handle_short_read(int nob_read, obd_count page_count,
586                               struct brw_page *pga)
587 {
588         char *ptr;
589
590         /* skip bytes read OK */
591         while (nob_read > 0) {
592                 LASSERT (page_count > 0);
593
594                 if (pga->count > nob_read) {
595                         /* EOF inside this page */
596                         ptr = kmap(pga->pg) + (pga->page_offset & ~PAGE_MASK);
597                         memset(ptr + nob_read, 0, pga->count - nob_read);
598                         kunmap(pga->pg);
599                         page_count--;
600                         pga++;
601                         break;
602                 }
603
604                 nob_read -= pga->count;
605                 page_count--;
606                 pga++;
607         }
608
609         /* zero remaining pages */
610         while (page_count-- > 0) {
611                 ptr = kmap(pga->pg) + (pga->page_offset & ~PAGE_MASK);
612                 memset(ptr, 0, pga->count);
613                 kunmap(pga->pg);
614                 pga++;
615         }
616 }
617
618 static int check_write_rcs(struct ptlrpc_request *request,
619                            int requested_nob, int niocount,
620                            obd_count page_count, struct brw_page *pga)
621 {
622         int    *remote_rcs, i;
623
624         /* return error if any niobuf was in error */
625         remote_rcs = lustre_swab_repbuf(request, 1,
626                                         sizeof(*remote_rcs) * niocount, NULL);
627         if (remote_rcs == NULL) {
628                 CERROR("Missing/short RC vector on BRW_WRITE reply\n");
629                 return(-EPROTO);
630         }
631         if (lustre_msg_swabbed(request->rq_repmsg))
632                 for (i = 0; i < niocount; i++)
633                         __swab32s(&remote_rcs[i]);
634
635         for (i = 0; i < niocount; i++) {
636                 if (remote_rcs[i] < 0)
637                         return(remote_rcs[i]);
638
639                 if (remote_rcs[i] != 0) {
640                         CERROR("rc[%d] invalid (%d) req %p\n",
641                                 i, remote_rcs[i], request);
642                         return(-EPROTO);
643                 }
644         }
645
646         if (request->rq_bulk->bd_nob_transferred != requested_nob) {
647                 CERROR("Unexpected # bytes transferred: %d (requested %d)\n",
648                        requested_nob, request->rq_bulk->bd_nob_transferred);
649                 return(-EPROTO);
650         }
651
652         return (0);
653 }
654
655 static inline int can_merge_pages(struct brw_page *p1, struct brw_page *p2)
656 {
657         if (p1->flag != p2->flag) {
658                 unsigned mask = ~OBD_BRW_FROM_GRANT;
659
660                 /* warn if we try to combine flags that we don't know to be
661                  * safe to combine */
662                 if ((p1->flag & mask) != (p2->flag & mask))
663                         CERROR("is it ok to have flags 0x%x and 0x%x in the "
664                                "same brw?\n", p1->flag, p2->flag);
665                 return 0;
666         }
667
668         return (p1->disk_offset + p1->count == p2->disk_offset);
669 }
670
671 #if CHECKSUM_BULK
672 static obd_count cksum_pages(int nob, obd_count page_count,
673                              struct brw_page *pga)
674 {
675         obd_count cksum = 0;
676         char *ptr;
677
678         while (nob > 0) {
679                 LASSERT (page_count > 0);
680
681                 ptr = kmap(pga->pg);
682                 ost_checksum(&cksum, ptr + (pga->off & (PAGE_SIZE - 1)),
683                              pga->count > nob ? nob : pga->count);
684                 kunmap(pga->pg);
685
686                 nob -= pga->count;
687                 page_count--;
688                 pga++;
689         }
690
691         return (cksum);
692 }
693 #endif
694
695 static int osc_brw_prep_request(int cmd, struct obd_import *imp,struct obdo *oa,
696                                 struct lov_stripe_md *lsm, obd_count page_count,
697                                 struct brw_page *pga, int *requested_nobp,
698                                 int *niocountp, struct ptlrpc_request **reqp)
699 {
700         struct ptlrpc_request   *req;
701         struct ptlrpc_bulk_desc *desc;
702         struct client_obd       *cli = &imp->imp_obd->u.cli;
703         struct ost_body         *body;
704         struct obd_ioobj        *ioobj;
705         struct niobuf_remote    *niobuf;
706         unsigned long            flags;
707         int                      niocount;
708         int                      size[3];
709         int                      i;
710         int                      requested_nob;
711         int                      opc;
712         int                      rc;
713
714         opc = ((cmd & OBD_BRW_WRITE) != 0) ? OST_WRITE : OST_READ;
715
716         for (niocount = i = 1; i < page_count; i++)
717                 if (!can_merge_pages(&pga[i - 1], &pga[i]))
718                         niocount++;
719
720         size[0] = sizeof(*body);
721         size[1] = sizeof(*ioobj);
722         size[2] = niocount * sizeof(*niobuf);
723
724         req = ptlrpc_prep_req(imp, opc, 3, size, NULL);
725         if (req == NULL)
726                 return (-ENOMEM);
727
728         if (opc == OST_WRITE)
729                 desc = ptlrpc_prep_bulk_imp (req, page_count,
730                                              BULK_GET_SOURCE, OST_BULK_PORTAL);
731         else
732                 desc = ptlrpc_prep_bulk_imp (req, page_count,
733                                              BULK_PUT_SINK, OST_BULK_PORTAL);
734         if (desc == NULL)
735                 GOTO(out, rc = -ENOMEM);
736         /* NB request now owns desc and will free it when it gets freed */
737
738         body = lustre_msg_buf(req->rq_reqmsg, 0, sizeof(*body));
739         ioobj = lustre_msg_buf(req->rq_reqmsg, 1, sizeof(*ioobj));
740         niobuf = lustre_msg_buf(req->rq_reqmsg, 2, niocount * sizeof(*niobuf));
741
742         memcpy(&body->oa, oa, sizeof(*oa));
743
744         obdo_to_ioobj(oa, ioobj);
745         ioobj->ioo_bufcnt = niocount;
746
747         LASSERT (page_count > 0);
748         for (requested_nob = i = 0; i < page_count; i++, niobuf++) {
749                 struct brw_page *pg = &pga[i];
750                 struct brw_page *pg_prev = pg - 1;
751
752                 LASSERT(pg->count > 0);
753                 LASSERT((pg->page_offset & ~PAGE_MASK)+ pg->count <= PAGE_SIZE);
754                 LASSERTF(i == 0 || pg->disk_offset > pg_prev->disk_offset,
755                          "i %d p_c %u pg %p [pri %lu ind %lu] off "LPU64
756                          " prev_pg %p [pri %lu ind %lu] off "LPU64"\n",
757                          i, page_count,
758                         pg->pg, pg->pg->private, pg->pg->index, pg->disk_offset,
759                          pg_prev->pg, pg_prev->pg->private, pg_prev->pg->index,
760                                  pg_prev->disk_offset);
761
762                 ptlrpc_prep_bulk_page(desc, pg->pg,
763                                       pg->page_offset & ~PAGE_MASK, pg->count);
764                 requested_nob += pg->count;
765
766                 if (i > 0 && can_merge_pages(pg_prev, pg)) {
767                         niobuf--;
768                         niobuf->len += pg->count;
769                 } else {
770                         niobuf->offset = pg->disk_offset;
771                         niobuf->len    = pg->count;
772                         niobuf->flags  = pg->flag;
773                 }
774         }
775
776         LASSERT((void *)(niobuf - niocount) ==
777                 lustre_msg_buf(req->rq_reqmsg, 2, niocount * sizeof(*niobuf)));
778         osc_announce_cached(cli, &body->oa, opc == OST_WRITE ? requested_nob:0);
779         spin_lock_irqsave(&req->rq_lock, flags);
780         req->rq_no_resend = 1;
781         spin_unlock_irqrestore(&req->rq_lock, flags);
782
783         /* size[0] still sizeof (*body) */
784         if (opc == OST_WRITE) {
785 #if CHECKSUM_BULK
786                 body->oa.o_valid |= OBD_MD_FLCKSUM;
787                 body->oa.o_cksum = cksum_pages(requested_nob, page_count, pga);
788 #endif
789                 /* 1 RC per niobuf */
790                 size[1] = sizeof(__u32) * niocount;
791                 req->rq_replen = lustre_msg_size(2, size);
792         } else {
793                 /* 1 RC for the whole I/O */
794                 req->rq_replen = lustre_msg_size(1, size);
795         }
796
797         *niocountp = niocount;
798         *requested_nobp = requested_nob;
799         *reqp = req;
800         return (0);
801
802  out:
803         ptlrpc_req_finished (req);
804         return (rc);
805 }
806
807 static int osc_brw_fini_request(struct ptlrpc_request *req, struct obdo *oa,
808                                 int requested_nob, int niocount,
809                                 obd_count page_count, struct brw_page *pga,
810                                 int rc)
811 {
812         struct client_obd *cli = &req->rq_import->imp_obd->u.cli;
813         struct ost_body *body;
814         ENTRY;
815
816         if (rc < 0)
817                 RETURN(rc);
818
819         body = lustre_swab_repbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
820         if (body == NULL) {
821                 CERROR ("Can't unpack body\n");
822                 RETURN(-EPROTO);
823         }
824
825         osc_update_grant(cli, body);
826         memcpy(oa, &body->oa, sizeof(*oa));
827
828         if (req->rq_reqmsg->opc == OST_WRITE) {
829                 if (rc > 0) {
830                         CERROR ("Unexpected +ve rc %d\n", rc);
831                         RETURN(-EPROTO);
832                 }
833                 LASSERT (req->rq_bulk->bd_nob == requested_nob);
834
835                 RETURN(check_write_rcs(req, requested_nob, niocount,
836                                        page_count, pga));
837         }
838
839         if (rc > requested_nob) {
840                 CERROR("Unexpected rc %d (%d requested)\n", rc, requested_nob);
841                 RETURN(-EPROTO);
842         }
843
844         if (rc != req->rq_bulk->bd_nob_transferred) {
845                 CERROR ("Unexpected rc %d (%d transferred)\n",
846                         rc, req->rq_bulk->bd_nob_transferred);
847                 return (-EPROTO);
848         }
849
850         if (rc < requested_nob)
851                 handle_short_read(rc, page_count, pga);
852
853 #if CHECKSUM_BULK
854         if (oa->o_valid & OBD_MD_FLCKSUM) {
855                 const struct ptlrpc_peer *peer =
856                         &req->rq_import->imp_connection->c_peer;
857                 static int cksum_counter;
858                 obd_count server_cksum = oa->o_cksum;
859                 obd_count cksum = cksum_pages(rc, page_count, pga);
860                 char str[PTL_NALFMT_SIZE];
861
862                 ptlrpc_peernid2str(peer, str);
863
864                 cksum_counter++;
865                 if (server_cksum != cksum) {
866                         CERROR("Bad checksum: server %x, client %x, server NID "
867                                LPX64" (%s)\n", server_cksum, cksum,
868                                peer->peer_nid, str);
869                         cksum_counter = 0;
870                         oa->o_cksum = cksum;
871                 } else if ((cksum_counter & (-cksum_counter)) == cksum_counter){
872                         CWARN("Checksum %u from "LPX64" (%s) OK: %x\n",
873                               cksum_counter, peer->peer_nid, str, cksum);
874                 }
875         } else {
876                 static int cksum_missed;
877
878                 cksum_missed++;
879                 if ((cksum_missed & (-cksum_missed)) == cksum_missed)
880                         CERROR("Request checksum %u from "LPX64", no reply\n",
881                                cksum_missed,
882                                req->rq_import->imp_connection->c_peer.peer_nid);
883         }
884 #endif
885         RETURN(0);
886 }
887
888 static int osc_brw_internal(int cmd, struct obd_export *exp,struct obdo *oa,
889                             struct lov_stripe_md *lsm,
890                             obd_count page_count, struct brw_page *pga)
891 {
892         int                    requested_nob;
893         int                    niocount;
894         struct ptlrpc_request *request;
895         int                    rc;
896         ENTRY;
897
898 restart_bulk:
899         rc = osc_brw_prep_request(cmd, class_exp2cliimp(exp), oa, lsm,
900                                   page_count, pga, &requested_nob, &niocount,
901                                   &request);
902         /* NB ^ sets rq_no_resend */
903
904         if (rc != 0)
905                 return (rc);
906
907         rc = ptlrpc_queue_wait(request);
908
909         if (rc == -ETIMEDOUT && request->rq_resend) {
910                 DEBUG_REQ(D_HA, request,  "BULK TIMEOUT");
911                 ptlrpc_req_finished(request);
912                 goto restart_bulk;
913         }
914
915         rc = osc_brw_fini_request(request, oa, requested_nob, niocount,
916                                   page_count, pga, rc);
917
918         ptlrpc_req_finished(request);
919         RETURN (rc);
920 }
921
922 static int brw_interpret(struct ptlrpc_request *request,
923                          struct osc_brw_async_args *aa, int rc)
924 {
925         struct obdo *oa      = aa->aa_oa;
926         int requested_nob    = aa->aa_requested_nob;
927         int niocount         = aa->aa_nio_count;
928         obd_count page_count = aa->aa_page_count;
929         struct brw_page *pga = aa->aa_pga;
930         ENTRY;
931
932         /* XXX bug 937 here */
933         if (rc == -ETIMEDOUT && request->rq_resend) {
934                 DEBUG_REQ(D_HA, request,  "BULK TIMEOUT");
935                 LBUG(); /* re-send.  later. */
936                 //goto restart_bulk;
937         }
938
939         rc = osc_brw_fini_request(request, oa, requested_nob, niocount,
940                                   page_count, pga, rc);
941         RETURN (rc);
942 }
943
944 static int async_internal(int cmd, struct obd_export *exp, struct obdo *oa,
945                           struct lov_stripe_md *lsm, obd_count page_count,
946                           struct brw_page *pga, struct ptlrpc_request_set *set)
947 {
948         struct ptlrpc_request     *request;
949         int                        requested_nob;
950         int                        nio_count;
951         struct osc_brw_async_args *aa;
952         int                        rc;
953         ENTRY;
954
955         rc = osc_brw_prep_request(cmd, class_exp2cliimp(exp), oa, lsm,
956                                   page_count, pga, &requested_nob, &nio_count,
957                                   &request);
958         /* NB ^ sets rq_no_resend */
959
960         if (rc == 0) {
961                 LASSERT(sizeof(*aa) <= sizeof(request->rq_async_args));
962                 aa = (struct osc_brw_async_args *)&request->rq_async_args;
963                 aa->aa_oa = oa;
964                 aa->aa_requested_nob = requested_nob;
965                 aa->aa_nio_count = nio_count;
966                 aa->aa_page_count = page_count;
967                 aa->aa_pga = pga;
968
969                 request->rq_interpret_reply = brw_interpret;
970                 ptlrpc_set_add_req(set, request);
971         }
972         RETURN (rc);
973 }
974
975 #ifndef min_t
976 #define min_t(type,x,y) \
977         ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
978 #endif
979
980 /*
981  * ugh, we want disk allocation on the target to happen in offset order.  we'll
982  * follow sedgewicks advice and stick to the dead simple shellsort -- it'll do
983  * fine for our small page arrays and doesn't require allocation.  its an
984  * insertion sort that swaps elements that are strides apart, shrinking the
985  * stride down until its '1' and the array is sorted.
986  */
987 static void sort_brw_pages(struct brw_page *array, int num)
988 {
989         int stride, i, j;
990         struct brw_page tmp;
991
992         if (num == 1)
993                 return;
994         for (stride = 1; stride < num ; stride = (stride * 3) + 1)
995                 ;
996
997         do {
998                 stride /= 3;
999                 for (i = stride ; i < num ; i++) {
1000                         tmp = array[i];
1001                         j = i;
1002                         while (j >= stride && array[j - stride].disk_offset >
1003                                tmp.disk_offset) {
1004                                 array[j] = array[j - stride];
1005                                 j -= stride;
1006                         }
1007                         array[j] = tmp;
1008                 }
1009         } while (stride > 1);
1010 }
1011
1012 /* make sure we the regions we're passing to elan don't violate its '4
1013  * fragments' constraint.  portal headers are a fragment, all full
1014  * PAGE_SIZE long pages count as 1 fragment, and each partial page
1015  * counts as a fragment.  I think.  see bug 934. */
1016 static obd_count check_elan_limit(struct brw_page *pg, obd_count pages)
1017 {
1018         int frags_left = 3;
1019         int saw_whole_frag = 0;
1020         int i;
1021
1022         for (i = 0 ; frags_left && i < pages ; pg++, i++) {
1023                 if (pg->count == PAGE_SIZE) {
1024                         if (!saw_whole_frag) {
1025                                 saw_whole_frag = 1;
1026                                 frags_left--;
1027                         }
1028                 } else {
1029                         frags_left--;
1030                 }
1031         }
1032         return i;
1033 }
1034
1035 static int osc_brw(int cmd, struct obd_export *exp, struct obdo *oa,
1036                    struct lov_stripe_md *md, obd_count page_count,
1037                    struct brw_page *pga, struct obd_trans_info *oti)
1038 {
1039         ENTRY;
1040
1041         if (cmd == OBD_BRW_CHECK) {
1042                 /* The caller just wants to know if there's a chance that this
1043                  * I/O can succeed */
1044                 struct obd_import *imp = class_exp2cliimp(exp);
1045
1046                 if (imp == NULL || imp->imp_invalid)
1047                         RETURN(-EIO);
1048                 RETURN(0);
1049         }
1050
1051         while (page_count) {
1052                 obd_count pages_per_brw;
1053                 int rc;
1054
1055                 if (page_count > PTLRPC_MAX_BRW_PAGES)
1056                         pages_per_brw = PTLRPC_MAX_BRW_PAGES;
1057                 else
1058                         pages_per_brw = page_count;
1059
1060                 sort_brw_pages(pga, pages_per_brw);
1061                 pages_per_brw = check_elan_limit(pga, pages_per_brw);
1062
1063                 rc = osc_brw_internal(cmd, exp, oa, md, pages_per_brw, pga);
1064
1065                 if (rc != 0)
1066                         RETURN(rc);
1067
1068                 page_count -= pages_per_brw;
1069                 pga += pages_per_brw;
1070         }
1071         RETURN(0);
1072 }
1073
1074 static int osc_brw_async(int cmd, struct obd_export *exp, struct obdo *oa,
1075                          struct lov_stripe_md *md, obd_count page_count,
1076                          struct brw_page *pga, struct ptlrpc_request_set *set,
1077                          struct obd_trans_info *oti)
1078 {
1079         ENTRY;
1080
1081         if (cmd == OBD_BRW_CHECK) {
1082                 /* The caller just wants to know if there's a chance that this
1083                  * I/O can succeed */
1084                 struct obd_import *imp = class_exp2cliimp(exp);
1085
1086                 if (imp == NULL || imp->imp_invalid)
1087                         RETURN(-EIO);
1088                 RETURN(0);
1089         }
1090
1091         while (page_count) {
1092                 obd_count pages_per_brw;
1093                 int rc;
1094
1095                 if (page_count > PTLRPC_MAX_BRW_PAGES)
1096                         pages_per_brw = PTLRPC_MAX_BRW_PAGES;
1097                 else
1098                         pages_per_brw = page_count;
1099
1100                 sort_brw_pages(pga, pages_per_brw);
1101                 pages_per_brw = check_elan_limit(pga, pages_per_brw);
1102
1103                 rc = async_internal(cmd, exp, oa, md, pages_per_brw, pga, set);
1104
1105                 if (rc != 0)
1106                         RETURN(rc);
1107
1108                 page_count -= pages_per_brw;
1109                 pga += pages_per_brw;
1110         }
1111         RETURN(0);
1112 }
1113
1114 static void osc_check_rpcs(struct client_obd *cli);
1115 static void osc_exit_cache(struct client_obd *cli, struct osc_async_page *oap,
1116                            int sent);
1117 static void loi_list_maint(struct client_obd *cli, struct lov_oinfo *loi);
1118 static void lop_update_pending(struct client_obd *cli,
1119                                struct loi_oap_pages *lop, int cmd, int delta);
1120
1121 /* this is called when a sync waiter receives an interruption.  Its job is to
1122  * get the caller woken as soon as possible.  If its page hasn't been put in an
1123  * rpc yet it can dequeue immediately.  Otherwise it has to mark the rpc as
1124  * desiring interruption which will forcefully complete the rpc once the rpc
1125  * has timed out */
1126 static void osc_occ_interrupted(struct oig_callback_context *occ)
1127 {
1128         struct osc_async_page *oap;
1129         struct loi_oap_pages *lop;
1130         struct lov_oinfo *loi;
1131         ENTRY;
1132
1133         /* XXX member_of() */
1134         oap = list_entry(occ, struct osc_async_page, oap_occ);
1135
1136         spin_lock(&oap->oap_cli->cl_loi_list_lock);
1137
1138         oap->oap_interrupted = 1;
1139
1140         /* ok, it's been put in an rpc. */
1141         if (oap->oap_request != NULL) {
1142                 ptlrpc_mark_interrupted(oap->oap_request);
1143                 ptlrpcd_wake(oap->oap_request);
1144                 GOTO(unlock, 0);
1145         }
1146
1147         /* we don't get interruption callbacks until osc_trigger_sync_io()
1148          * has been called and put the sync oaps in the pending/urgent lists.*/
1149         if (!list_empty(&oap->oap_pending_item)) {
1150                 list_del_init(&oap->oap_pending_item);
1151                 if (oap->oap_async_flags & ASYNC_URGENT)
1152                         list_del_init(&oap->oap_urgent_item);
1153
1154                 loi = oap->oap_loi;
1155                 lop = (oap->oap_cmd == OBD_BRW_WRITE) ?
1156                         &loi->loi_write_lop : &loi->loi_read_lop;
1157                 lop_update_pending(oap->oap_cli, lop, oap->oap_cmd, -1);
1158                 loi_list_maint(oap->oap_cli, oap->oap_loi);
1159
1160                 oig_complete_one(oap->oap_oig, &oap->oap_occ, 0);
1161                 oap->oap_oig = NULL;
1162         }
1163
1164 unlock:
1165         spin_unlock(&oap->oap_cli->cl_loi_list_lock);
1166 }
1167
1168 /* this must be called holding the loi list lock to give coverage to exit_cache,
1169  * async_flag maintenance, and oap_request */
1170 static void osc_ap_completion(struct client_obd *cli, struct obdo *oa,
1171                               struct osc_async_page *oap, int sent, int rc)
1172 {
1173         osc_exit_cache(cli, oap, sent);
1174         oap->oap_async_flags = 0;
1175         oap->oap_interrupted = 0;
1176
1177         if (oap->oap_request != NULL) {
1178                 ptlrpc_req_finished(oap->oap_request);
1179                 oap->oap_request = NULL;
1180         }
1181
1182         if (rc == 0 && oa != NULL)
1183                 oap->oap_loi->loi_blocks = oa->o_blocks;
1184
1185         if (oap->oap_oig) {
1186                 oig_complete_one(oap->oap_oig, &oap->oap_occ, rc);
1187                 oap->oap_oig = NULL;
1188                 EXIT;
1189                 return;
1190         }
1191
1192         oap->oap_caller_ops->ap_completion(oap->oap_caller_data, oap->oap_cmd,
1193                                            oa, rc);
1194 }
1195
1196 static int brw_interpret_oap(struct ptlrpc_request *request,
1197                              struct osc_brw_async_args *aa, int rc)
1198 {
1199         struct osc_async_page *oap;
1200         struct client_obd *cli;
1201         struct list_head *pos, *n;
1202         ENTRY;
1203
1204
1205         rc = osc_brw_fini_request(request, aa->aa_oa, aa->aa_requested_nob,
1206                                   aa->aa_nio_count, aa->aa_page_count,
1207                                   aa->aa_pga, rc);
1208
1209         CDEBUG(D_INODE, "request %p aa %p rc %d\n", request, aa, rc);
1210
1211         cli = aa->aa_cli;
1212         /* in failout recovery we ignore writeback failure and want
1213          * to just tell llite to unlock the page and continue */
1214         if (request->rq_reqmsg->opc == OST_WRITE && 
1215             (cli->cl_import == NULL || cli->cl_import->imp_invalid)) {
1216                 CDEBUG(D_INODE, "flipping to rc 0 imp %p inv %d\n", 
1217                        cli->cl_import, 
1218                        cli->cl_import ? cli->cl_import->imp_invalid : -1);
1219                 rc = 0;
1220         }
1221
1222         spin_lock(&cli->cl_loi_list_lock);
1223
1224         /* We need to decrement before osc_ap_completion->osc_wake_cache_waiters
1225          * is called so we know whether to go to sync BRWs or wait for more
1226          * RPCs to complete */
1227         cli->cl_brw_in_flight--;
1228
1229         /* the caller may re-use the oap after the completion call so
1230          * we need to clean it up a little */
1231         list_for_each_safe(pos, n, &aa->aa_oaps) {
1232                 oap = list_entry(pos, struct osc_async_page, oap_rpc_item);
1233
1234                 //CDEBUG(D_INODE, "page %p index %lu oap %p\n",
1235                        //oap->oap_page, oap->oap_page->index, oap);
1236
1237                 list_del_init(&oap->oap_rpc_item);
1238                 osc_ap_completion(cli, aa->aa_oa, oap, 1, rc);
1239         }
1240
1241         osc_wake_cache_waiters(cli);
1242         osc_check_rpcs(cli);
1243
1244         spin_unlock(&cli->cl_loi_list_lock);
1245
1246         obdo_free(aa->aa_oa);
1247         OBD_FREE(aa->aa_pga, aa->aa_page_count * sizeof(struct brw_page));
1248
1249         RETURN(0);
1250 }
1251
1252 static struct ptlrpc_request *osc_build_req(struct client_obd *cli,
1253                                             struct list_head *rpc_list,
1254                                             int page_count, int cmd)
1255 {
1256         struct ptlrpc_request *req;
1257         struct brw_page *pga = NULL;
1258         int requested_nob, nio_count;
1259         struct osc_brw_async_args *aa;
1260         struct obdo *oa = NULL;
1261         struct obd_async_page_ops *ops = NULL;
1262         void *caller_data = NULL;
1263         struct list_head *pos;
1264         int i, rc;
1265
1266         LASSERT(!list_empty(rpc_list));
1267
1268         OBD_ALLOC(pga, sizeof(*pga) * page_count);
1269         if (pga == NULL)
1270                 RETURN(ERR_PTR(-ENOMEM));
1271
1272         oa = obdo_alloc();
1273         if (oa == NULL)
1274                 GOTO(out, req = ERR_PTR(-ENOMEM));
1275
1276         i = 0;
1277         list_for_each(pos, rpc_list) {
1278                 struct osc_async_page *oap;
1279
1280                 oap = list_entry(pos, struct osc_async_page, oap_rpc_item);
1281                 if (ops == NULL) {
1282                         ops = oap->oap_caller_ops;
1283                         caller_data = oap->oap_caller_data;
1284                 }
1285                 pga[i].disk_offset = oap->oap_obj_off + oap->oap_page_off;
1286                 pga[i].page_offset = pga[i].disk_offset;
1287                 pga[i].pg = oap->oap_page;
1288                 pga[i].count = oap->oap_count;
1289                 pga[i].flag = oap->oap_brw_flags;
1290                 CDEBUG(0, "put page %p index %lu oap %p flg %x to pga\n",
1291                        pga[i].pg, oap->oap_page->index, oap, pga[i].flag);
1292                 i++;
1293         }
1294
1295         /* always get the data for the obdo for the rpc */
1296         LASSERT(ops != NULL);
1297         ops->ap_fill_obdo(caller_data, cmd, oa);
1298
1299         sort_brw_pages(pga, page_count);
1300         rc = osc_brw_prep_request(cmd, cli->cl_import, oa, NULL, page_count,
1301                                   pga, &requested_nob, &nio_count, &req);
1302         if (rc != 0) {
1303                 CERROR("prep_req failed: %d\n", rc);
1304                 GOTO(out, req = ERR_PTR(rc));
1305         }
1306
1307         LASSERT(sizeof(*aa) <= sizeof(req->rq_async_args));
1308         aa = (struct osc_brw_async_args *)&req->rq_async_args;
1309         aa->aa_oa = oa;
1310         aa->aa_requested_nob = requested_nob;
1311         aa->aa_nio_count = nio_count;
1312         aa->aa_page_count = page_count;
1313         aa->aa_pga = pga;
1314         aa->aa_cli = cli;
1315
1316 out:
1317         if (IS_ERR(req)) {
1318                 if (oa)
1319                         obdo_free(oa);
1320                 if (pga)
1321                         OBD_FREE(pga, sizeof(*pga) * page_count);
1322         }
1323         RETURN(req);
1324 }
1325
1326 static void lop_update_pending(struct client_obd *cli,
1327                                struct loi_oap_pages *lop, int cmd, int delta)
1328 {
1329         lop->lop_num_pending += delta;
1330         if (cmd == OBD_BRW_WRITE)
1331                 cli->cl_pending_w_pages += delta;
1332         else
1333                 cli->cl_pending_r_pages += delta;
1334 }
1335
1336 /* the loi lock is held across this function but it's allowed to release
1337  * and reacquire it during its work */
1338 static int osc_send_oap_rpc(struct client_obd *cli, struct lov_oinfo *loi,
1339                             int cmd, struct loi_oap_pages *lop)
1340 {
1341         struct ptlrpc_request *request;
1342         obd_count page_count = 0;
1343         struct list_head *tmp, *pos;
1344         struct osc_async_page *oap = NULL;
1345         struct osc_brw_async_args *aa;
1346         struct obd_async_page_ops *ops;
1347         LIST_HEAD(rpc_list);
1348         ENTRY;
1349
1350         /* first we find the pages we're allowed to work with */
1351         list_for_each_safe(pos, tmp, &lop->lop_pending) {
1352                 oap = list_entry(pos, struct osc_async_page, oap_pending_item);
1353                 ops = oap->oap_caller_ops;
1354
1355                 LASSERT(oap->oap_magic == OAP_MAGIC);
1356
1357                 /* in llite being 'ready' equates to the page being locked
1358                  * until completion unlocks it.  commit_write submits a page
1359                  * as not ready because its unlock will happen unconditionally
1360                  * as the call returns.  if we race with commit_write giving
1361                  * us that page we dont' want to create a hole in the page
1362                  * stream, so we stop and leave the rpc to be fired by
1363                  * another dirtier or kupdated interval (the not ready page
1364                  * will still be on the dirty list).  we could call in
1365                  * at the end of ll_file_write to process the queue again. */
1366                 if (!(oap->oap_async_flags & ASYNC_READY)) {
1367                         int rc = ops->ap_make_ready(oap->oap_caller_data, cmd);
1368                         if (rc < 0)
1369                                 CDEBUG(D_INODE, "oap %p page %p returned %d "
1370                                                 "instead of ready\n", oap,
1371                                                 oap->oap_page, rc);
1372                         switch (rc) {
1373                         case -EAGAIN:
1374                                 /* llite is telling us that the page is still
1375                                  * in commit_write and that we should try
1376                                  * and put it in an rpc again later.  we
1377                                  * break out of the loop so we don't create
1378                                  * a hole in the sequence of pages in the rpc
1379                                  * stream.*/
1380                                 pos = NULL;
1381                                 break;
1382                         case -EINTR:
1383                                 /* the io isn't needed.. tell the checks
1384                                  * below to complete the rpc with EINTR */
1385                                 oap->oap_async_flags |= ASYNC_COUNT_STABLE;
1386                                 oap->oap_count = -EINTR;
1387                                 break;
1388                         case 0:
1389                                 oap->oap_async_flags |= ASYNC_READY;
1390                                 break;
1391                         default:
1392                                 LASSERTF(0, "oap %p page %p returned %d "
1393                                             "from make_ready\n", oap,
1394                                             oap->oap_page, rc);
1395                                 break;
1396                         }
1397                 }
1398                 if (pos == NULL)
1399                         break;
1400
1401                 /* take the page out of our book-keeping */
1402                 list_del_init(&oap->oap_pending_item);
1403                 lop_update_pending(cli, lop, cmd, -1);
1404                 list_del_init(&oap->oap_urgent_item);
1405
1406                 /* ask the caller for the size of the io as the rpc leaves. */
1407                 if (!(oap->oap_async_flags & ASYNC_COUNT_STABLE))
1408                         oap->oap_count =
1409                                 ops->ap_refresh_count(oap->oap_caller_data,cmd);
1410                 if (oap->oap_count <= 0) {
1411                         CDEBUG(D_CACHE, "oap %p count %d, completing\n", oap,
1412                                oap->oap_count);
1413                         osc_ap_completion(cli, NULL, oap, 0, oap->oap_count);
1414                         continue;
1415                 }
1416
1417                 /* now put the page back in our accounting */
1418                 list_add_tail(&oap->oap_rpc_item, &rpc_list);
1419                 if (++page_count >= cli->cl_max_pages_per_rpc)
1420                         break;
1421         }
1422
1423         osc_wake_cache_waiters(cli);
1424
1425         if (page_count == 0)
1426                 RETURN(0);
1427
1428         loi_list_maint(cli, loi);
1429         spin_unlock(&cli->cl_loi_list_lock);
1430
1431         request = osc_build_req(cli, &rpc_list, page_count, cmd);
1432         if (IS_ERR(request)) {
1433                 /* this should happen rarely and is pretty bad, it makes the
1434                  * pending list not follow the dirty order */
1435                 spin_lock(&cli->cl_loi_list_lock);
1436                 list_for_each_safe(pos, tmp, &rpc_list) {
1437                         oap = list_entry(pos, struct osc_async_page,
1438                                          oap_rpc_item);
1439                         list_del_init(&oap->oap_rpc_item);
1440
1441                         /* queued sync pages can be torn down while the pages
1442                          * were between the pending list and the rpc */
1443                         if (oap->oap_interrupted) {
1444                                 CDEBUG(D_INODE, "oap %p interrupted\n", oap);
1445                                 osc_ap_completion(cli, NULL, oap, 0,
1446                                                   oap->oap_count);
1447                                 continue;
1448                         }
1449
1450                         /* put the page back in the loi/lop lists */
1451                         list_add_tail(&oap->oap_pending_item,
1452                                       &lop->lop_pending);
1453                         lop_update_pending(cli, lop, cmd, 1);
1454                         if (oap->oap_async_flags & ASYNC_URGENT)
1455                                 list_add(&oap->oap_urgent_item,
1456                                          &lop->lop_urgent);
1457                 }
1458                 loi_list_maint(cli, loi);
1459                 RETURN(PTR_ERR(request));
1460         }
1461
1462         LASSERT(sizeof(*aa) <= sizeof(request->rq_async_args));
1463         aa = (struct osc_brw_async_args *)&request->rq_async_args;
1464         INIT_LIST_HEAD(&aa->aa_oaps);
1465         list_splice(&rpc_list, &aa->aa_oaps);
1466         INIT_LIST_HEAD(&rpc_list);
1467
1468 #ifdef __KERNEL__
1469         if (cmd == OBD_BRW_READ) {
1470                 lprocfs_oh_tally_log2(&cli->cl_read_page_hist, page_count);
1471                 lprocfs_oh_tally(&cli->cl_read_rpc_hist, cli->cl_brw_in_flight);
1472         } else {
1473                 lprocfs_oh_tally_log2(&cli->cl_write_page_hist, page_count);
1474                 lprocfs_oh_tally(&cli->cl_write_rpc_hist,
1475                                  cli->cl_brw_in_flight);
1476         }
1477 #endif
1478
1479         spin_lock(&cli->cl_loi_list_lock);
1480
1481         cli->cl_brw_in_flight++;
1482         /* queued sync pages can be torn down while the pages
1483          * were between the pending list and the rpc */
1484         list_for_each(pos, &aa->aa_oaps) {
1485                 oap = list_entry(pos, struct osc_async_page, oap_rpc_item);
1486                 if (oap->oap_interrupted) {
1487                         CDEBUG(D_INODE, "oap %p in req %p interrupted\n",
1488                                oap, request);
1489                         ptlrpc_mark_interrupted(request);
1490                         break;
1491                 }
1492         }
1493
1494         CDEBUG(D_INODE, "req %p: %d pages, aa %p.  now %d in flight\n", request,
1495                page_count, aa, cli->cl_brw_in_flight);
1496
1497         oap->oap_request = ptlrpc_request_addref(request);
1498         request->rq_interpret_reply = brw_interpret_oap;
1499         ptlrpcd_add_req(request);
1500         RETURN(1);
1501 }
1502
1503 static int lop_makes_rpc(struct client_obd *cli, struct loi_oap_pages *lop,
1504                          int cmd)
1505 {
1506         int optimal;
1507         ENTRY;
1508
1509         if (lop->lop_num_pending == 0)
1510                 RETURN(0);
1511
1512         /* if we have an invalid import we want to drain the queued pages
1513          * by forcing them through rpcs that immediately fail and complete
1514          * the pages.  recovery relies on this to empty the queued pages
1515          * before canceling the locks and evicting down the llite pages */
1516         if (cli->cl_import == NULL || cli->cl_import->imp_invalid)
1517                 RETURN(1);
1518
1519         /* stream rpcs in queue order as long as as there is an urgent page
1520          * queued.  this is our cheap solution for good batching in the case
1521          * where writepage marks some random page in the middle of the file as
1522          * urgent because of, say, memory pressure */
1523         if (!list_empty(&lop->lop_urgent))
1524                 RETURN(1);
1525
1526         /* fire off rpcs when we have 'optimal' rpcs as tuned for the wire. */
1527         optimal = cli->cl_max_pages_per_rpc;
1528         if (cmd == OBD_BRW_WRITE) {
1529                 /* trigger a write rpc stream as long as there are dirtiers
1530                  * waiting for space.  as they're waiting, they're not going to
1531                  * create more pages to coallesce with what's waiting.. */
1532                 if (!list_empty(&cli->cl_cache_waiters))
1533                         RETURN(1);
1534
1535                 /* *2 to avoid triggering rpcs that would want to include pages
1536                  * that are being queued but which can't be made ready until
1537                  * the queuer finishes with the page. this is a wart for
1538                  * llite::commit_write() */
1539                 optimal += 16;
1540         }
1541         if (lop->lop_num_pending >= optimal)
1542                 RETURN(1);
1543
1544         RETURN(0);
1545 }
1546
1547 static void on_list(struct list_head *item, struct list_head *list,
1548                     int should_be_on)
1549 {
1550         if (list_empty(item) && should_be_on)
1551                 list_add_tail(item, list);
1552         else if (!list_empty(item) && !should_be_on)
1553                 list_del_init(item);
1554 }
1555
1556 /* maintain the loi's cli list membership invariants so that osc_send_oap_rpc
1557  * can find pages to build into rpcs quickly */
1558 static void loi_list_maint(struct client_obd *cli, struct lov_oinfo *loi)
1559 {
1560         on_list(&loi->loi_cli_item, &cli->cl_loi_ready_list,
1561                 lop_makes_rpc(cli, &loi->loi_write_lop, OBD_BRW_WRITE) ||
1562                 lop_makes_rpc(cli, &loi->loi_read_lop, OBD_BRW_READ));
1563
1564         on_list(&loi->loi_write_item, &cli->cl_loi_write_list,
1565                 loi->loi_write_lop.lop_num_pending);
1566
1567         on_list(&loi->loi_read_item, &cli->cl_loi_read_list,
1568                 loi->loi_read_lop.lop_num_pending);
1569 }
1570
1571 #define LOI_DEBUG(LOI, STR, args...)                                     \
1572         CDEBUG(D_INODE, "loi ready %d wr %d:%d rd %d:%d " STR,           \
1573                !list_empty(&(LOI)->loi_cli_item),                        \
1574                (LOI)->loi_write_lop.lop_num_pending,                     \
1575                !list_empty(&(LOI)->loi_write_lop.lop_urgent),            \
1576                (LOI)->loi_read_lop.lop_num_pending,                      \
1577                !list_empty(&(LOI)->loi_read_lop.lop_urgent),             \
1578                args)                                                     \
1579
1580 struct lov_oinfo *osc_next_loi(struct client_obd *cli)
1581 {
1582         ENTRY;
1583         /* first return all objects which we already know to have
1584          * pages ready to be stuffed into rpcs */
1585         if (!list_empty(&cli->cl_loi_ready_list))
1586                 RETURN(list_entry(cli->cl_loi_ready_list.next,
1587                                   struct lov_oinfo, loi_cli_item));
1588
1589         /* then if we have cache waiters, return all objects with queued
1590          * writes.  This is especially important when many small files
1591          * have filled up the cache and not been fired into rpcs because
1592          * they don't pass the nr_pending/object threshhold */
1593         if (!list_empty(&cli->cl_cache_waiters) &&
1594             !list_empty(&cli->cl_loi_write_list))
1595                 RETURN(list_entry(cli->cl_loi_write_list.next,
1596                                   struct lov_oinfo, loi_write_item));
1597
1598         /* then return all queued objects when we have an invalid import
1599          * so that they get flushed */
1600         if (cli->cl_import == NULL || cli->cl_import->imp_invalid) {
1601                 if (!list_empty(&cli->cl_loi_write_list))
1602                         RETURN(list_entry(cli->cl_loi_write_list.next,
1603                                           struct lov_oinfo, loi_write_item));
1604                 if (!list_empty(&cli->cl_loi_read_list))
1605                         RETURN(list_entry(cli->cl_loi_read_list.next,
1606                                           struct lov_oinfo, loi_read_item));
1607         }
1608         RETURN(NULL);
1609 }
1610
1611 /* called with the loi list lock held */
1612 static void osc_check_rpcs(struct client_obd *cli)
1613 {
1614         struct lov_oinfo *loi;
1615         int rc = 0, race_counter = 0;
1616         ENTRY;
1617
1618         while ((loi = osc_next_loi(cli)) != NULL) {
1619                 LOI_DEBUG(loi, "%d in flight\n", cli->cl_brw_in_flight);
1620
1621                 if (cli->cl_brw_in_flight >= cli->cl_max_rpcs_in_flight)
1622                         break;
1623
1624                 /* attempt some read/write balancing by alternating between
1625                  * reads and writes in an object.  The makes_rpc checks here
1626                  * would be redundant if we were getting read/write work items
1627                  * instead of objects.  we don't want send_oap_rpc to drain a
1628                  * partial read pending queue when we're given this object to
1629                  * do io on writes while there are cache waiters */
1630                 if (lop_makes_rpc(cli, &loi->loi_write_lop, OBD_BRW_WRITE)) {
1631                         rc = osc_send_oap_rpc(cli, loi, OBD_BRW_WRITE,
1632                                               &loi->loi_write_lop);
1633                         if (rc < 0)
1634                                 break;
1635                         if (rc > 0)
1636                                 race_counter = 0;
1637                         else
1638                                 race_counter++;
1639                 }
1640                 if (lop_makes_rpc(cli, &loi->loi_read_lop, OBD_BRW_READ)) {
1641                         rc = osc_send_oap_rpc(cli, loi, OBD_BRW_READ,
1642                                               &loi->loi_read_lop);
1643                         if (rc < 0)
1644                                 break;
1645                         if (rc > 0)
1646                                 race_counter = 0;
1647                         else
1648                                 race_counter++;
1649                 }
1650
1651                 /* attempt some inter-object balancing by issueing rpcs
1652                  * for each object in turn */
1653                 if (!list_empty(&loi->loi_cli_item))
1654                         list_del_init(&loi->loi_cli_item);
1655                 if (!list_empty(&loi->loi_write_item))
1656                         list_del_init(&loi->loi_write_item);
1657                 if (!list_empty(&loi->loi_read_item))
1658                         list_del_init(&loi->loi_read_item);
1659
1660                 loi_list_maint(cli, loi);
1661
1662                 /* send_oap_rpc fails with 0 when make_ready tells it to
1663                  * back off.  llite's make_ready does this when it tries
1664                  * to lock a page queued for write that is already locked.
1665                  * we want to try sending rpcs from many objects, but we
1666                  * don't want to spin failing with 0.  */
1667                 if (race_counter == 10)
1668                         break;
1669         }
1670         EXIT;
1671 }
1672
1673 /* we're trying to queue a page in the osc so we're subject to the
1674  * 'cl_dirty_max' limit on the number of pages that can be queued in the osc.
1675  * If the osc's queued pages are already at that limit, then we want to sleep
1676  * until there is space in the osc's queue for us.  We also may be waiting for
1677  * write credits from the OST if there are RPCs in flight that may return some
1678  * before we fall back to sync writes.
1679  *
1680  * We need this know our allocation was granted in the presence of signals */
1681 static int ocw_granted(struct client_obd *cli, struct osc_cache_waiter *ocw)
1682 {
1683         int rc;
1684         ENTRY;
1685         spin_lock(&cli->cl_loi_list_lock);
1686         rc = list_empty(&ocw->ocw_entry) || cli->cl_brw_in_flight == 0;
1687         spin_unlock(&cli->cl_loi_list_lock);
1688         RETURN(rc);
1689 };
1690
1691 /* Caller must hold loi_list_lock - we drop/regain it if we need to wait for
1692  * grant or cache space. */
1693 static int osc_enter_cache(struct client_obd *cli, struct lov_oinfo *loi,
1694                            struct osc_async_page *oap)
1695 {
1696         struct osc_cache_waiter ocw;
1697         struct l_wait_info lwi = { 0 };
1698
1699         CDEBUG(D_CACHE, "dirty: %ld dirty_max: %ld dropped: %lu grant: %lu\n",
1700                cli->cl_dirty, cli->cl_dirty_max, cli->cl_lost_grant,
1701                cli->cl_avail_grant);
1702
1703         if (cli->cl_dirty_max < PAGE_SIZE)
1704                 return(-EDQUOT);
1705
1706         /* Hopefully normal case - cache space and write credits available */
1707         if (cli->cl_dirty + PAGE_SIZE <= cli->cl_dirty_max &&
1708             cli->cl_avail_grant >= PAGE_SIZE) {
1709                 /* account for ourselves */
1710                 osc_consume_write_grant(cli, oap);
1711                 return(0);
1712         }
1713
1714         /* Make sure that there are write rpcs in flight to wait for.  This
1715          * is a little silly as this object may not have any pending but
1716          * other objects sure might. */
1717         if (cli->cl_brw_in_flight) {
1718                 list_add_tail(&ocw.ocw_entry, &cli->cl_cache_waiters);
1719                 init_waitqueue_head(&ocw.ocw_waitq);
1720                 ocw.ocw_oap = oap;
1721                 ocw.ocw_rc = 0;
1722
1723                 loi_list_maint(cli, loi);
1724                 osc_check_rpcs(cli);
1725                 spin_unlock(&cli->cl_loi_list_lock);
1726
1727                 CDEBUG(0, "sleeping for cache space\n");
1728                 l_wait_event(ocw.ocw_waitq, ocw_granted(cli, &ocw), &lwi);
1729
1730                 spin_lock(&cli->cl_loi_list_lock);
1731                 if (!list_empty(&ocw.ocw_entry)) {
1732                         list_del(&ocw.ocw_entry);
1733                         RETURN(-EINTR);
1734                 }
1735                 RETURN(ocw.ocw_rc);
1736         }
1737
1738         RETURN(-EDQUOT);
1739 }
1740
1741 /* the companion to enter_cache, called when an oap is no longer part of the
1742  * dirty accounting.. so writeback completes or truncate happens before writing
1743  * starts.  must be called with the loi lock held. */
1744 static void osc_exit_cache(struct client_obd *cli, struct osc_async_page *oap,
1745                            int sent)
1746 {
1747         ENTRY;
1748
1749         if (!(oap->oap_brw_flags & OBD_BRW_FROM_GRANT)) {
1750                 EXIT;
1751                 return;
1752         }
1753
1754         oap->oap_brw_flags &= ~OBD_BRW_FROM_GRANT;
1755         cli->cl_dirty -= PAGE_SIZE;
1756         if (!sent) {
1757                 cli->cl_lost_grant += PAGE_SIZE;
1758                 CDEBUG(D_CACHE, "lost grant: %lu avail grant: %lu dirty: %lu\n",
1759                        cli->cl_lost_grant, cli->cl_avail_grant, cli->cl_dirty);
1760         }
1761
1762         EXIT;
1763 }
1764
1765 int osc_prep_async_page(struct obd_export *exp, struct lov_stripe_md *lsm,
1766                         struct lov_oinfo *loi, struct page *page,
1767                         obd_off offset, struct obd_async_page_ops *ops,
1768                         void *data, void **res)
1769 {
1770         struct osc_async_page *oap;
1771         ENTRY;
1772
1773         OBD_ALLOC(oap, sizeof(*oap));
1774         if (oap == NULL)
1775                 return -ENOMEM;
1776
1777         oap->oap_magic = OAP_MAGIC;
1778         oap->oap_cli = &exp->exp_obd->u.cli;
1779         oap->oap_loi = loi;
1780
1781         oap->oap_caller_ops = ops;
1782         oap->oap_caller_data = data;
1783
1784         oap->oap_page = page;
1785         oap->oap_obj_off = offset;
1786
1787         INIT_LIST_HEAD(&oap->oap_pending_item);
1788         INIT_LIST_HEAD(&oap->oap_urgent_item);
1789         INIT_LIST_HEAD(&oap->oap_rpc_item);
1790
1791         oap->oap_occ.occ_interrupted = osc_occ_interrupted;
1792
1793         CDEBUG(D_CACHE, "oap %p page %p obj off "LPU64"\n", oap, page, offset);
1794         *res = oap;
1795         RETURN(0);
1796 }
1797
1798 struct osc_async_page *oap_from_cookie(void *cookie)
1799 {
1800         struct osc_async_page *oap = cookie;
1801         if (oap->oap_magic != OAP_MAGIC)
1802                 return ERR_PTR(-EINVAL);
1803         return oap;
1804 };
1805
1806 static int osc_queue_async_io(struct obd_export *exp, struct lov_stripe_md *lsm,
1807                               struct lov_oinfo *loi, void *cookie,
1808                               int cmd, obd_off off, int count,
1809                               obd_flag brw_flags, enum async_flags async_flags)
1810 {
1811         struct client_obd *cli = &exp->exp_obd->u.cli;
1812         struct osc_async_page *oap;
1813         struct loi_oap_pages *lop;
1814         int rc;
1815         ENTRY;
1816
1817         oap = oap_from_cookie(cookie);
1818         if (IS_ERR(oap))
1819                 RETURN(PTR_ERR(oap));
1820
1821         if (cli->cl_import == NULL || cli->cl_import->imp_invalid)
1822                 RETURN(-EIO);
1823
1824         if (!list_empty(&oap->oap_pending_item) ||
1825             !list_empty(&oap->oap_urgent_item) ||
1826             !list_empty(&oap->oap_rpc_item))
1827                 RETURN(-EBUSY);
1828
1829         if (loi == NULL)
1830                 loi = &lsm->lsm_oinfo[0];
1831
1832         spin_lock(&cli->cl_loi_list_lock);
1833
1834         oap->oap_cmd = cmd;
1835         oap->oap_async_flags = async_flags;
1836         oap->oap_page_off = off;
1837         oap->oap_count = count;
1838         oap->oap_brw_flags = brw_flags;
1839
1840         if (cmd == OBD_BRW_WRITE) {
1841                 rc = osc_enter_cache(cli, loi, oap);
1842                 if (rc) {
1843                         spin_unlock(&cli->cl_loi_list_lock);
1844                         RETURN(rc);
1845                 }
1846                 lop = &loi->loi_write_lop;
1847         } else {
1848                 lop = &loi->loi_read_lop;
1849         }
1850
1851         if (oap->oap_async_flags & ASYNC_URGENT)
1852                 list_add(&oap->oap_urgent_item, &lop->lop_urgent);
1853         list_add_tail(&oap->oap_pending_item, &lop->lop_pending);
1854         lop_update_pending(cli, lop, cmd, 1);
1855
1856         loi_list_maint(cli, loi);
1857
1858         LOI_DEBUG(loi, "oap %p page %p added for cmd %d\n", oap, oap->oap_page,
1859                   cmd);
1860
1861         osc_check_rpcs(cli);
1862         spin_unlock(&cli->cl_loi_list_lock);
1863
1864         RETURN(0);
1865 }
1866
1867 /* aka (~was & now & flag), but this is more clear :) */
1868 #define SETTING(was, now, flag) (!(was & flag) && (now & flag))
1869
1870 static int osc_set_async_flags(struct obd_export *exp,
1871                                struct lov_stripe_md *lsm,
1872                                struct lov_oinfo *loi, void *cookie,
1873                                obd_flag async_flags)
1874 {
1875         struct client_obd *cli = &exp->exp_obd->u.cli;
1876         struct loi_oap_pages *lop;
1877         struct osc_async_page *oap;
1878         int rc = 0;
1879         ENTRY;
1880
1881         oap = oap_from_cookie(cookie);
1882         if (IS_ERR(oap))
1883                 RETURN(PTR_ERR(oap));
1884
1885         if (cli->cl_import == NULL || cli->cl_import->imp_invalid)
1886                 RETURN(-EIO);
1887
1888         if (loi == NULL)
1889                 loi = &lsm->lsm_oinfo[0];
1890
1891         if (oap->oap_cmd == OBD_BRW_WRITE) {
1892                 lop = &loi->loi_write_lop;
1893         } else {
1894                 lop = &loi->loi_read_lop;
1895         }
1896
1897         spin_lock(&cli->cl_loi_list_lock);
1898
1899         if (list_empty(&oap->oap_pending_item))
1900                 GOTO(out, rc = -EINVAL);
1901
1902         if ((oap->oap_async_flags & async_flags) == async_flags)
1903                 GOTO(out, rc = 0);
1904
1905         if (SETTING(oap->oap_async_flags, async_flags, ASYNC_READY))
1906                 oap->oap_async_flags |= ASYNC_READY;
1907
1908         if (SETTING(oap->oap_async_flags, async_flags, ASYNC_URGENT)) {
1909                 if (list_empty(&oap->oap_rpc_item)) {
1910                         list_add(&oap->oap_urgent_item, &lop->lop_urgent);
1911                         loi_list_maint(cli, loi);
1912                 }
1913         }
1914
1915         LOI_DEBUG(loi, "oap %p page %p has flags %x\n", oap, oap->oap_page,
1916                         oap->oap_async_flags);
1917 out:
1918         osc_check_rpcs(cli);
1919         spin_unlock(&cli->cl_loi_list_lock);
1920         RETURN(rc);
1921 }
1922
1923 static int osc_queue_group_io(struct obd_export *exp, struct lov_stripe_md *lsm,
1924                              struct lov_oinfo *loi,
1925                              struct obd_io_group *oig, void *cookie,
1926                              int cmd, obd_off off, int count,
1927                              obd_flag brw_flags,
1928                              obd_flag async_flags)
1929 {
1930         struct client_obd *cli = &exp->exp_obd->u.cli;
1931         struct osc_async_page *oap;
1932         struct loi_oap_pages *lop;
1933         ENTRY;
1934
1935         oap = oap_from_cookie(cookie);
1936         if (IS_ERR(oap))
1937                 RETURN(PTR_ERR(oap));
1938
1939         if (cli->cl_import == NULL || cli->cl_import->imp_invalid)
1940                 RETURN(-EIO);
1941
1942         if (!list_empty(&oap->oap_pending_item) ||
1943             !list_empty(&oap->oap_urgent_item) ||
1944             !list_empty(&oap->oap_rpc_item))
1945                 RETURN(-EBUSY);
1946
1947         if (loi == NULL)
1948                 loi = &lsm->lsm_oinfo[0];
1949
1950         spin_lock(&cli->cl_loi_list_lock);
1951
1952         oap->oap_cmd = cmd;
1953         oap->oap_page_off = off;
1954         oap->oap_count = count;
1955         oap->oap_brw_flags = brw_flags;
1956         oap->oap_async_flags = async_flags;
1957
1958         if (cmd == OBD_BRW_WRITE)
1959                 lop = &loi->loi_write_lop;
1960         else
1961                 lop = &loi->loi_read_lop;
1962
1963         list_add_tail(&oap->oap_pending_item, &lop->lop_pending_group);
1964         if (oap->oap_async_flags & ASYNC_GROUP_SYNC) {
1965                 oap->oap_oig = oig;
1966                 oig_add_one(oig, &oap->oap_occ);
1967         }
1968
1969         LOI_DEBUG(loi, "oap %p page %p on group pending\n", oap, oap->oap_page);
1970
1971         spin_unlock(&cli->cl_loi_list_lock);
1972
1973         RETURN(0);
1974 }
1975
1976 static void osc_group_to_pending(struct client_obd *cli, struct lov_oinfo *loi,
1977                                  struct loi_oap_pages *lop, int cmd)
1978 {
1979         struct list_head *pos, *tmp;
1980         struct osc_async_page *oap;
1981
1982         list_for_each_safe(pos, tmp, &lop->lop_pending_group) {
1983                 oap = list_entry(pos, struct osc_async_page, oap_pending_item);
1984                 list_del(&oap->oap_pending_item);
1985                 list_add_tail(&oap->oap_pending_item, &lop->lop_pending);
1986                 list_add(&oap->oap_urgent_item, &lop->lop_urgent);
1987                 lop_update_pending(cli, lop, cmd, 1);
1988         }
1989         loi_list_maint(cli, loi);
1990 }
1991
1992 static int osc_trigger_group_io(struct obd_export *exp,
1993                                 struct lov_stripe_md *lsm,
1994                                 struct lov_oinfo *loi,
1995                                 struct obd_io_group *oig)
1996 {
1997         struct client_obd *cli = &exp->exp_obd->u.cli;
1998         ENTRY;
1999
2000         if (loi == NULL)
2001                 loi = &lsm->lsm_oinfo[0];
2002
2003         spin_lock(&cli->cl_loi_list_lock);
2004
2005         osc_group_to_pending(cli, loi, &loi->loi_write_lop, OBD_BRW_WRITE);
2006         osc_group_to_pending(cli, loi, &loi->loi_read_lop, OBD_BRW_READ);
2007
2008         osc_check_rpcs(cli);
2009         spin_unlock(&cli->cl_loi_list_lock);
2010
2011         RETURN(0);
2012 }
2013
2014 static int osc_teardown_async_page(struct obd_export *exp,
2015                                    struct lov_stripe_md *lsm,
2016                                    struct lov_oinfo *loi, void *cookie)
2017 {
2018         struct client_obd *cli = &exp->exp_obd->u.cli;
2019         struct loi_oap_pages *lop;
2020         struct osc_async_page *oap;
2021         int rc = 0;
2022         ENTRY;
2023
2024         oap = oap_from_cookie(cookie);
2025         if (IS_ERR(oap))
2026                 RETURN(PTR_ERR(oap));
2027
2028         if (loi == NULL)
2029                 loi = &lsm->lsm_oinfo[0];
2030
2031         if (oap->oap_cmd == OBD_BRW_WRITE) {
2032                 lop = &loi->loi_write_lop;
2033         } else {
2034                 lop = &loi->loi_read_lop;
2035         }
2036
2037         spin_lock(&cli->cl_loi_list_lock);
2038
2039         if (!list_empty(&oap->oap_rpc_item))
2040                 GOTO(out, rc = -EBUSY);
2041
2042         osc_exit_cache(cli, oap, 0);
2043         osc_wake_cache_waiters(cli);
2044
2045         if (!list_empty(&oap->oap_urgent_item)) {
2046                 list_del_init(&oap->oap_urgent_item);
2047                 oap->oap_async_flags &= ~ASYNC_URGENT;
2048         }
2049         if (!list_empty(&oap->oap_pending_item)) {
2050                 list_del_init(&oap->oap_pending_item);
2051                 lop_update_pending(cli, lop, oap->oap_cmd, -1);
2052         }
2053         loi_list_maint(cli, loi);
2054
2055         LOI_DEBUG(loi, "oap %p page %p torn down\n", oap, oap->oap_page);
2056 out:
2057         spin_unlock(&cli->cl_loi_list_lock);
2058         if (rc == 0)
2059                 OBD_FREE(oap, sizeof(*oap));
2060         RETURN(rc);
2061 }
2062
2063 #ifdef __KERNEL__
2064 /* Note: caller will lock/unlock, and set uptodate on the pages */
2065 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
2066 static int sanosc_brw_read(struct obd_export *exp, struct obdo *oa,
2067                            struct lov_stripe_md *lsm, obd_count page_count,
2068                            struct brw_page *pga)
2069 {
2070         struct ptlrpc_request *request = NULL;
2071         struct ost_body *body;
2072         struct niobuf_remote *nioptr;
2073         struct obd_ioobj *iooptr;
2074         int rc, size[3] = {sizeof(*body)}, mapped = 0;
2075         int swab;
2076         ENTRY;
2077
2078         /* XXX does not handle 'new' brw protocol */
2079
2080         size[1] = sizeof(struct obd_ioobj);
2081         size[2] = page_count * sizeof(*nioptr);
2082
2083         request = ptlrpc_prep_req(class_exp2cliimp(exp), OST_SAN_READ, 3,
2084                                   size, NULL);
2085         if (!request)
2086                 RETURN(-ENOMEM);
2087
2088         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof(*body));
2089         iooptr = lustre_msg_buf(request->rq_reqmsg, 1, sizeof(*iooptr));
2090         nioptr = lustre_msg_buf(request->rq_reqmsg, 2,
2091                                 sizeof(*nioptr) * page_count);
2092
2093         memcpy(&body->oa, oa, sizeof(body->oa));
2094
2095         obdo_to_ioobj(oa, iooptr);
2096         iooptr->ioo_bufcnt = page_count;
2097
2098         for (mapped = 0; mapped < page_count; mapped++, nioptr++) {
2099                 LASSERT(PageLocked(pga[mapped].pg));
2100                 LASSERT(mapped == 0 ||
2101                         pga[mapped].disk_offset > pga[mapped - 1].disk_offset);
2102
2103                 nioptr->offset = pga[mapped].disk_offset;
2104                 nioptr->len    = pga[mapped].count;
2105                 nioptr->flags  = pga[mapped].flag;
2106         }
2107
2108         size[1] = page_count * sizeof(*nioptr);
2109         request->rq_replen = lustre_msg_size(2, size);
2110
2111         rc = ptlrpc_queue_wait(request);
2112         if (rc)
2113                 GOTO(out_req, rc);
2114
2115         body = lustre_swab_repbuf(request, 0, sizeof(*body),
2116                                   lustre_swab_ost_body);
2117         if (body == NULL) {
2118                 CERROR("Can't unpack body\n");
2119                 GOTO(out_req, rc = -EPROTO);
2120         }
2121
2122         memcpy(oa, &body->oa, sizeof(*oa));
2123
2124         swab = lustre_msg_swabbed(request->rq_repmsg);
2125         LASSERT_REPSWAB(request, 1);
2126         nioptr = lustre_msg_buf(request->rq_repmsg, 1, size[1]);
2127         if (!nioptr) {
2128                 /* nioptr missing or short */
2129                 GOTO(out_req, rc = -EPROTO);
2130         }
2131
2132         /* actual read */
2133         for (mapped = 0; mapped < page_count; mapped++, nioptr++) {
2134                 struct page *page = pga[mapped].pg;
2135                 struct buffer_head *bh;
2136                 kdev_t dev;
2137
2138                 if (swab)
2139                         lustre_swab_niobuf_remote (nioptr);
2140
2141                 /* got san device associated */
2142                 LASSERT(exp->exp_obd != NULL);
2143                 dev = exp->exp_obd->u.cli.cl_sandev;
2144
2145                 /* hole */
2146                 if (!nioptr->offset) {
2147                         CDEBUG(D_PAGE, "hole at ino %lu; index %ld\n",
2148                                         page->mapping->host->i_ino,
2149                                         page->index);
2150                         memset(page_address(page), 0, PAGE_SIZE);
2151                         continue;
2152                 }
2153
2154                 if (!page->buffers) {
2155                         create_empty_buffers(page, dev, PAGE_SIZE);
2156                         bh = page->buffers;
2157
2158                         clear_bit(BH_New, &bh->b_state);
2159                         set_bit(BH_Mapped, &bh->b_state);
2160                         bh->b_blocknr = (unsigned long)nioptr->offset;
2161
2162                         clear_bit(BH_Uptodate, &bh->b_state);
2163
2164                         ll_rw_block(READ, 1, &bh);
2165                 } else {
2166                         bh = page->buffers;
2167
2168                         /* if buffer already existed, it must be the
2169                          * one we mapped before, check it */
2170                         LASSERT(!test_bit(BH_New, &bh->b_state));
2171                         LASSERT(test_bit(BH_Mapped, &bh->b_state));
2172                         LASSERT(bh->b_blocknr == (unsigned long)nioptr->offset);
2173
2174                         /* wait it's io completion */
2175                         if (test_bit(BH_Lock, &bh->b_state))
2176                                 wait_on_buffer(bh);
2177
2178                         if (!test_bit(BH_Uptodate, &bh->b_state))
2179                                 ll_rw_block(READ, 1, &bh);
2180                 }
2181
2182
2183                 /* must do syncronous write here */
2184                 wait_on_buffer(bh);
2185                 if (!buffer_uptodate(bh)) {
2186                         /* I/O error */
2187                         rc = -EIO;
2188                         goto out_req;
2189                 }
2190         }
2191
2192 out_req:
2193         ptlrpc_req_finished(request);
2194         RETURN(rc);
2195 }
2196
2197 static int sanosc_brw_write(struct obd_export *exp, struct obdo *oa,
2198                             struct lov_stripe_md *lsm, obd_count page_count,
2199                             struct brw_page *pga)
2200 {
2201         struct ptlrpc_request *request = NULL;
2202         struct ost_body *body;
2203         struct niobuf_remote *nioptr;
2204         struct obd_ioobj *iooptr;
2205         int rc, size[3] = {sizeof(*body)}, mapped = 0;
2206         int swab;
2207         ENTRY;
2208
2209         size[1] = sizeof(struct obd_ioobj);
2210         size[2] = page_count * sizeof(*nioptr);
2211
2212         request = ptlrpc_prep_req(class_exp2cliimp(exp), OST_SAN_WRITE,
2213                                   3, size, NULL);
2214         if (!request)
2215                 RETURN(-ENOMEM);
2216
2217         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
2218         iooptr = lustre_msg_buf(request->rq_reqmsg, 1, sizeof (*iooptr));
2219         nioptr = lustre_msg_buf(request->rq_reqmsg, 2,
2220                                 sizeof (*nioptr) * page_count);
2221
2222         memcpy(&body->oa, oa, sizeof(body->oa));
2223
2224         obdo_to_ioobj(oa, iooptr);
2225         iooptr->ioo_bufcnt = page_count;
2226
2227         /* pack request */
2228         for (mapped = 0; mapped < page_count; mapped++, nioptr++) {
2229                 LASSERT(PageLocked(pga[mapped].pg));
2230                 LASSERT(mapped == 0 ||
2231                         pga[mapped].disk_offset > pga[mapped - 1].disk_offset);
2232
2233                 nioptr->offset = pga[mapped].disk_offset;
2234                 nioptr->len    = pga[mapped].count;
2235                 nioptr->flags  = pga[mapped].flag;
2236         }
2237
2238         size[1] = page_count * sizeof(*nioptr);
2239         request->rq_replen = lustre_msg_size(2, size);
2240
2241         rc = ptlrpc_queue_wait(request);
2242         if (rc)
2243                 GOTO(out_req, rc);
2244
2245         swab = lustre_msg_swabbed (request->rq_repmsg);
2246         LASSERT_REPSWAB (request, 1);
2247         nioptr = lustre_msg_buf(request->rq_repmsg, 1, size[1]);
2248         if (!nioptr) {
2249                 CERROR("absent/short niobuf array\n");
2250                 GOTO(out_req, rc = -EPROTO);
2251         }
2252
2253         /* actual write */
2254         for (mapped = 0; mapped < page_count; mapped++, nioptr++) {
2255                 struct page *page = pga[mapped].pg;
2256                 struct buffer_head *bh;
2257                 kdev_t dev;
2258
2259                 if (swab)
2260                         lustre_swab_niobuf_remote (nioptr);
2261
2262                 /* got san device associated */
2263                 LASSERT(exp->exp_obd != NULL);
2264                 dev = exp->exp_obd->u.cli.cl_sandev;
2265
2266                 if (!page->buffers) {
2267                         create_empty_buffers(page, dev, PAGE_SIZE);
2268                 } else {
2269                         /* checking */
2270                         LASSERT(!test_bit(BH_New, &page->buffers->b_state));
2271                         LASSERT(test_bit(BH_Mapped, &page->buffers->b_state));
2272                         LASSERT(page->buffers->b_blocknr ==
2273                                 (unsigned long)nioptr->offset);
2274                 }
2275                 bh = page->buffers;
2276
2277                 LASSERT(bh);
2278
2279                 /* if buffer locked, wait it's io completion */
2280                 if (test_bit(BH_Lock, &bh->b_state))
2281                         wait_on_buffer(bh);
2282
2283                 clear_bit(BH_New, &bh->b_state);
2284                 set_bit(BH_Mapped, &bh->b_state);
2285
2286                 /* override the block nr */
2287                 bh->b_blocknr = (unsigned long)nioptr->offset;
2288
2289                 /* we are about to write it, so set it
2290                  * uptodate/dirty
2291                  * page lock should garentee no race condition here */
2292                 set_bit(BH_Uptodate, &bh->b_state);
2293                 set_bit(BH_Dirty, &bh->b_state);
2294
2295                 ll_rw_block(WRITE, 1, &bh);
2296
2297                 /* must do syncronous write here */
2298                 wait_on_buffer(bh);
2299                 if (!buffer_uptodate(bh) || test_bit(BH_Dirty, &bh->b_state)) {
2300                         /* I/O error */
2301                         rc = -EIO;
2302                         goto out_req;
2303                 }
2304         }
2305
2306 out_req:
2307         ptlrpc_req_finished(request);
2308         RETURN(rc);
2309 }
2310
2311 static int sanosc_brw(int cmd, struct obd_export *exp, struct obdo *oa,
2312                       struct lov_stripe_md *lsm, obd_count page_count,
2313                       struct brw_page *pga, struct obd_trans_info *oti)
2314 {
2315         ENTRY;
2316
2317         while (page_count) {
2318                 obd_count pages_per_brw;
2319                 int rc;
2320
2321                 if (page_count > PTLRPC_MAX_BRW_PAGES)
2322                         pages_per_brw = PTLRPC_MAX_BRW_PAGES;
2323                 else
2324                         pages_per_brw = page_count;
2325
2326                 if (cmd & OBD_BRW_WRITE)
2327                         rc = sanosc_brw_write(exp, oa, lsm, pages_per_brw,pga);
2328                 else
2329                         rc = sanosc_brw_read(exp, oa, lsm, pages_per_brw, pga);
2330
2331                 if (rc != 0)
2332                         RETURN(rc);
2333
2334                 page_count -= pages_per_brw;
2335                 pga += pages_per_brw;
2336         }
2337         RETURN(0);
2338 }
2339 #endif
2340 #endif
2341
2342 static void osc_set_data_with_check(struct lustre_handle *lockh, void *data)
2343 {
2344         struct ldlm_lock *lock = ldlm_handle2lock(lockh);
2345
2346         LASSERT(lock != NULL);
2347         l_lock(&lock->l_resource->lr_namespace->ns_lock);
2348 #ifdef __KERNEL__
2349         if (lock->l_ast_data && lock->l_ast_data != data) {
2350                 struct inode *new_inode = data;
2351                 struct inode *old_inode = lock->l_ast_data;
2352                 LASSERTF(old_inode->i_state & I_FREEING,
2353                          "Found existing inode %p/%lu/%u state %lu in lock: "
2354                          "setting data to %p/%lu/%u\n", old_inode,
2355                          old_inode->i_ino, old_inode->i_generation,
2356                          old_inode->i_state,
2357                          new_inode, new_inode->i_ino, new_inode->i_generation);
2358         }
2359 #endif
2360         lock->l_ast_data = data;
2361         l_unlock(&lock->l_resource->lr_namespace->ns_lock);
2362         LDLM_LOCK_PUT(lock);
2363 }
2364
2365 static int osc_change_cbdata(struct obd_export *exp, struct lov_stripe_md *lsm,
2366                              ldlm_iterator_t replace, void *data)
2367 {
2368         struct ldlm_res_id res_id = { .name = {lsm->lsm_object_id} };
2369         struct obd_device *obd = class_exp2obd(exp);
2370
2371         ldlm_change_cbdata(obd->obd_namespace, &res_id, replace, data);
2372         return 0;
2373 }
2374
2375 static int osc_enqueue(struct obd_export *exp, struct lov_stripe_md *lsm,
2376                        __u32 type, ldlm_policy_data_t *policy, __u32 mode,
2377                        int *flags, void *bl_cb, void *cp_cb, void *gl_cb,
2378                        void *data, __u32 lvb_len, void *lvb_swabber,
2379                        struct lustre_handle *lockh)
2380 {
2381         struct ldlm_res_id res_id = { .name = {lsm->lsm_object_id} };
2382         struct obd_device *obd = exp->exp_obd;
2383         struct ost_lvb lvb;
2384         int rc;
2385         ENTRY;
2386
2387         /* Filesystem lock extents are extended to page boundaries so that
2388          * dealing with the page cache is a little smoother.  */
2389         policy->l_extent.start -= policy->l_extent.start & ~PAGE_MASK;
2390         policy->l_extent.end |= ~PAGE_MASK;
2391
2392         if (lsm->lsm_oinfo->loi_kms_valid == 0)
2393                 goto no_match;
2394
2395         /* Next, search for already existing extent locks that will cover us */
2396         rc = ldlm_lock_match(obd->obd_namespace, 0, &res_id, type, policy, mode,
2397                              lockh);
2398         if (rc == 1) {
2399                 osc_set_data_with_check(lockh, data);
2400                 if (*flags & LDLM_FL_HAS_INTENT) {
2401                         /* I would like to be able to ASSERT here that rss <=
2402                          * kms, but I can't, for reasons which are explained in
2403                          * lov_enqueue() */
2404                 }
2405                 /* We already have a lock, and it's referenced */
2406                 RETURN(ELDLM_OK);
2407         }
2408
2409         /* If we're trying to read, we also search for an existing PW lock.  The
2410          * VFS and page cache already protect us locally, so lots of readers/
2411          * writers can share a single PW lock.
2412          *
2413          * There are problems with conversion deadlocks, so instead of
2414          * converting a read lock to a write lock, we'll just enqueue a new
2415          * one.
2416          *
2417          * At some point we should cancel the read lock instead of making them
2418          * send us a blocking callback, but there are problems with canceling
2419          * locks out from other users right now, too. */
2420
2421         if (mode == LCK_PR) {
2422                 rc = ldlm_lock_match(obd->obd_namespace, 0, &res_id, type,
2423                                      policy, LCK_PW, lockh);
2424                 if (rc == 1) {
2425                         /* FIXME: This is not incredibly elegant, but it might
2426                          * be more elegant than adding another parameter to
2427                          * lock_match.  I want a second opinion. */
2428                         ldlm_lock_addref(lockh, LCK_PR);
2429                         ldlm_lock_decref(lockh, LCK_PW);
2430                         osc_set_data_with_check(lockh, data);
2431                         RETURN(ELDLM_OK);
2432                 }
2433         }
2434
2435  no_match:
2436         rc = ldlm_cli_enqueue(exp, NULL, obd->obd_namespace, res_id, type,
2437                               policy, mode, flags, bl_cb, cp_cb, gl_cb, data,
2438                               &lvb, sizeof(lvb), lustre_swab_ost_lvb, lockh);
2439
2440         if ((*flags & LDLM_FL_HAS_INTENT && rc == ELDLM_LOCK_ABORTED) || !rc) {
2441                 CDEBUG(D_INODE, "received kms == "LPU64", blocks == "LPU64"\n",
2442                        lvb.lvb_size, lvb.lvb_blocks);
2443                 lsm->lsm_oinfo->loi_rss = lvb.lvb_size;
2444                 lsm->lsm_oinfo->loi_blocks = lvb.lvb_blocks;
2445         }
2446
2447         RETURN(rc);
2448 }
2449
2450 static int osc_match(struct obd_export *exp, struct lov_stripe_md *lsm,
2451                      __u32 type, ldlm_policy_data_t *policy, __u32 mode,
2452                      int *flags, void *data, struct lustre_handle *lockh)
2453 {
2454         struct ldlm_res_id res_id = { .name = {lsm->lsm_object_id} };
2455         struct obd_device *obd = exp->exp_obd;
2456         int rc;
2457         ENTRY;
2458
2459         OBD_FAIL_RETURN(OBD_FAIL_OSC_MATCH, -EIO);
2460
2461         /* Filesystem lock extents are extended to page boundaries so that
2462          * dealing with the page cache is a little smoother */
2463         policy->l_extent.start -= policy->l_extent.start & ~PAGE_MASK;
2464         policy->l_extent.end |= ~PAGE_MASK;
2465
2466         /* Next, search for already existing extent locks that will cover us */
2467         rc = ldlm_lock_match(obd->obd_namespace, *flags, &res_id, type,
2468                              policy, mode, lockh);
2469         if (rc) {
2470                 osc_set_data_with_check(lockh, data);
2471                 RETURN(rc);
2472         }
2473         /* If we're trying to read, we also search for an existing PW lock.  The
2474          * VFS and page cache already protect us locally, so lots of readers/
2475          * writers can share a single PW lock. */
2476         if (mode == LCK_PR) {
2477                 rc = ldlm_lock_match(obd->obd_namespace, *flags, &res_id, type,
2478                                      policy, LCK_PW, lockh);
2479                 if (rc == 1 && !(*flags & LDLM_FL_TEST_LOCK)) {
2480                         /* FIXME: This is not incredibly elegant, but it might
2481                          * be more elegant than adding another parameter to
2482                          * lock_match.  I want a second opinion. */
2483                         osc_set_data_with_check(lockh, data);
2484                         ldlm_lock_addref(lockh, LCK_PR);
2485                         ldlm_lock_decref(lockh, LCK_PW);
2486                 }
2487         }
2488         RETURN(rc);
2489 }
2490
2491 static int osc_cancel(struct obd_export *exp, struct lov_stripe_md *md,
2492                       __u32 mode, struct lustre_handle *lockh)
2493 {
2494         ENTRY;
2495
2496         if (mode == LCK_GROUP)
2497                 ldlm_lock_decref_and_cancel(lockh, mode);
2498         else
2499                 ldlm_lock_decref(lockh, mode);
2500
2501         RETURN(0);
2502 }
2503
2504 static int osc_cancel_unused(struct obd_export *exp,
2505                              struct lov_stripe_md *lsm, int flags, void *opaque)
2506 {
2507         struct obd_device *obd = class_exp2obd(exp);
2508         struct ldlm_res_id res_id = { .name = {lsm->lsm_object_id} };
2509
2510         return ldlm_cli_cancel_unused(obd->obd_namespace, &res_id, flags,
2511                                       opaque);
2512 }
2513
2514 static int osc_statfs(struct obd_device *obd, struct obd_statfs *osfs,
2515                       unsigned long max_age)
2516 {
2517         struct obd_statfs *msfs;
2518         struct ptlrpc_request *request;
2519         int rc, size = sizeof(*osfs);
2520         ENTRY;
2521
2522         /* We could possibly pass max_age in the request (as an absolute
2523          * timestamp or a "seconds.usec ago") so the target can avoid doing
2524          * extra calls into the filesystem if that isn't necessary (e.g.
2525          * during mount that would help a bit).  Having relative timestamps
2526          * is not so great if request processing is slow, while absolute
2527          * timestamps are not ideal because they need time synchronization. */
2528         request = ptlrpc_prep_req(obd->u.cli.cl_import, OST_STATFS,0,NULL,NULL);
2529         if (!request)
2530                 RETURN(-ENOMEM);
2531
2532         request->rq_replen = lustre_msg_size(1, &size);
2533         request->rq_request_portal = OST_CREATE_PORTAL; //XXX FIXME bug 249
2534
2535         rc = ptlrpc_queue_wait(request);
2536         if (rc)
2537                 GOTO(out, rc);
2538
2539         msfs = lustre_swab_repbuf(request, 0, sizeof(*msfs),
2540                                   lustre_swab_obd_statfs);
2541         if (msfs == NULL) {
2542                 CERROR("Can't unpack obd_statfs\n");
2543                 GOTO(out, rc = -EPROTO);
2544         }
2545
2546         memcpy(osfs, msfs, sizeof(*osfs));
2547
2548         EXIT;
2549  out:
2550         ptlrpc_req_finished(request);
2551         return rc;
2552 }
2553
2554 /* Retrieve object striping information.
2555  *
2556  * @lmmu is a pointer to an in-core struct with lmm_ost_count indicating
2557  * the maximum number of OST indices which will fit in the user buffer.
2558  * lmm_magic must be LOV_MAGIC (we only use 1 slot here).
2559  */
2560 static int osc_getstripe(struct lov_stripe_md *lsm, struct lov_user_md *lump)
2561 {
2562         struct lov_user_md lum, *lumk;
2563         int rc, lum_size;
2564         ENTRY;
2565
2566         if (!lsm)
2567                 RETURN(-ENODATA);
2568
2569         rc = copy_from_user(&lum, lump, sizeof(lum));
2570         if (rc)
2571                 RETURN(-EFAULT);
2572
2573         if (lum.lmm_magic != LOV_USER_MAGIC)
2574                 RETURN(-EINVAL);
2575
2576         if (lum.lmm_stripe_count > 0) {
2577                 lum_size = sizeof(lum) + sizeof(lum.lmm_objects[0]);
2578                 OBD_ALLOC(lumk, lum_size);
2579                 if (!lumk)
2580                         RETURN(-ENOMEM);
2581
2582                 lumk->lmm_objects[0].l_object_id = lsm->lsm_object_id;
2583         } else {
2584                 lum_size = sizeof(lum);
2585                 lumk = &lum;
2586         }
2587
2588         lumk->lmm_object_id = lsm->lsm_object_id;
2589         lumk->lmm_stripe_count = 1;
2590
2591         if (copy_to_user(lump, lumk, lum_size))
2592                 rc = -EFAULT;
2593
2594         if (lumk != &lum)
2595                 OBD_FREE(lumk, lum_size);
2596
2597         RETURN(rc);
2598 }
2599
2600 static int osc_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
2601                          void *karg, void *uarg)
2602 {
2603         struct obd_device *obd = exp->exp_obd;
2604         struct obd_ioctl_data *data = karg;
2605         int err = 0;
2606         ENTRY;
2607
2608 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
2609         MOD_INC_USE_COUNT;
2610 #else
2611         if (!try_module_get(THIS_MODULE)) {
2612                 CERROR("Can't get module. Is it alive?");
2613                 return -EINVAL;
2614         }
2615 #endif
2616         switch (cmd) {
2617         case OBD_IOC_LOV_GET_CONFIG: {
2618                 char *buf;
2619                 struct lov_desc *desc;
2620                 struct obd_uuid uuid;
2621
2622                 buf = NULL;
2623                 len = 0;
2624                 if (obd_ioctl_getdata(&buf, &len, (void *)uarg))
2625                         GOTO(out, err = -EINVAL);
2626
2627                 data = (struct obd_ioctl_data *)buf;
2628
2629                 if (sizeof(*desc) > data->ioc_inllen1) {
2630                         OBD_FREE(buf, len);
2631                         GOTO(out, err = -EINVAL);
2632                 }
2633
2634                 if (data->ioc_inllen2 < sizeof(uuid)) {
2635                         OBD_FREE(buf, len);
2636                         GOTO(out, err = -EINVAL);
2637                 }
2638
2639                 desc = (struct lov_desc *)data->ioc_inlbuf1;
2640                 desc->ld_tgt_count = 1;
2641                 desc->ld_active_tgt_count = 1;
2642                 desc->ld_default_stripe_count = 1;
2643                 desc->ld_default_stripe_size = 0;
2644                 desc->ld_default_stripe_offset = 0;
2645                 desc->ld_pattern = 0;
2646                 memcpy(&desc->ld_uuid, &obd->obd_uuid, sizeof(uuid));
2647
2648                 memcpy(data->ioc_inlbuf2, &obd->obd_uuid, sizeof(uuid));
2649
2650                 err = copy_to_user((void *)uarg, buf, len);
2651                 if (err)
2652                         err = -EFAULT;
2653                 obd_ioctl_freedata(buf, len);
2654                 GOTO(out, err);
2655         }
2656         case LL_IOC_LOV_SETSTRIPE:
2657                 err = obd_alloc_memmd(exp, karg);
2658                 if (err > 0)
2659                         err = 0;
2660                 GOTO(out, err);
2661         case LL_IOC_LOV_GETSTRIPE:
2662                 err = osc_getstripe(karg, uarg);
2663                 GOTO(out, err);
2664         case OBD_IOC_CLIENT_RECOVER:
2665                 err = ptlrpc_recover_import(obd->u.cli.cl_import,
2666                                             data->ioc_inlbuf1);
2667                 if (err > 0)
2668                         err = 0;
2669                 GOTO(out, err);
2670         case IOC_OSC_SET_ACTIVE:
2671                 err = ptlrpc_set_import_active(obd->u.cli.cl_import,
2672                                                data->ioc_offset);
2673                 GOTO(out, err);
2674         default:
2675                 CDEBUG(D_INODE, "unrecognised ioctl %#x by %s\n", cmd, current->comm);
2676                 GOTO(out, err = -ENOTTY);
2677         }
2678 out:
2679 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
2680         MOD_DEC_USE_COUNT;
2681 #else
2682         module_put(THIS_MODULE);
2683 #endif
2684         return err;
2685 }
2686
2687 static int osc_get_info(struct obd_export *exp, obd_count keylen,
2688                         void *key, __u32 *vallen, void *val)
2689 {
2690         ENTRY;
2691         if (!vallen || !val)
2692                 RETURN(-EFAULT);
2693
2694         if (keylen > strlen("lock_to_stripe") &&
2695             strcmp(key, "lock_to_stripe") == 0) {
2696                 __u32 *stripe = val;
2697                 *vallen = sizeof(*stripe);
2698                 *stripe = 0;
2699                 RETURN(0);
2700         } else if (keylen >= strlen("last_id") && strcmp(key, "last_id") == 0) {
2701                 struct ptlrpc_request *req;
2702                 obd_id *reply;
2703                 char *bufs[1] = {key};
2704                 int rc;
2705                 req = ptlrpc_prep_req(class_exp2cliimp(exp), OST_GET_INFO, 1,
2706                                       &keylen, bufs);
2707                 if (req == NULL)
2708                         RETURN(-ENOMEM);
2709
2710                 req->rq_replen = lustre_msg_size(1, vallen);
2711                 rc = ptlrpc_queue_wait(req);
2712                 if (rc)
2713                         GOTO(out, rc);
2714
2715                 reply = lustre_swab_repbuf(req, 0, sizeof(*reply),
2716                                            lustre_swab_ost_last_id);
2717                 if (reply == NULL) {
2718                         CERROR("Can't unpack OST last ID\n");
2719                         GOTO(out, rc = -EPROTO);
2720                 }
2721                 *((obd_id *)val) = *reply;
2722         out:
2723                 ptlrpc_req_finished(req);
2724                 RETURN(rc);
2725         }
2726         RETURN(-EINVAL);
2727 }
2728
2729 static int osc_set_info(struct obd_export *exp, obd_count keylen,
2730                         void *key, obd_count vallen, void *val)
2731 {
2732         struct ptlrpc_request *req;
2733         struct obd_device  *obd = exp->exp_obd;
2734         struct obd_import *imp = class_exp2cliimp(exp);
2735         struct llog_ctxt *ctxt;
2736         int rc, size = keylen;
2737         char *bufs[1] = {key};
2738         ENTRY;
2739
2740         if (keylen == strlen("next_id") &&
2741             memcmp(key, "next_id", strlen("next_id")) == 0) {
2742                 if (vallen != sizeof(obd_id))
2743                         RETURN(-EINVAL);
2744                 obd->u.cli.cl_oscc.oscc_next_id = *((obd_id*)val) + 1;
2745                 CDEBUG(D_HA, "%s: set oscc_next_id = "LPU64"\n",
2746                        exp->exp_obd->obd_name,
2747                        obd->u.cli.cl_oscc.oscc_next_id);
2748
2749                 RETURN(0);
2750         }
2751
2752         if (keylen == strlen("growth_count") &&
2753             memcmp(key, "growth_count", strlen("growth_count")) == 0) {
2754                 if (vallen != sizeof(int))
2755                         RETURN(-EINVAL);
2756                 obd->u.cli.cl_oscc.oscc_grow_count = *((int*)val);
2757                 RETURN(0);
2758         }
2759
2760         if (keylen == strlen("unlinked") &&
2761             memcmp(key, "unlinked", keylen) == 0) {
2762                 struct osc_creator *oscc = &obd->u.cli.cl_oscc;
2763                 spin_lock(&oscc->oscc_lock);
2764                 oscc->oscc_flags &= ~OSCC_FLAG_NOSPC;
2765                 spin_unlock(&oscc->oscc_lock);
2766                 RETURN(0);
2767         }
2768
2769
2770         if (keylen == strlen("initial_recov") &&
2771             memcmp(key, "initial_recov", strlen("initial_recov")) == 0) {
2772                 struct obd_import *imp = exp->exp_obd->u.cli.cl_import;
2773                 if (vallen != sizeof(int))
2774                         RETURN(-EINVAL);
2775                 imp->imp_initial_recov = *(int *)val;
2776                 CDEBUG(D_HA, "%s: set imp_no_init_recov = %d\n",
2777                        exp->exp_obd->obd_name,
2778                        imp->imp_initial_recov);
2779                 RETURN(0);
2780         }
2781
2782         if (keylen < strlen("mds_conn") ||
2783             memcmp(key, "mds_conn", strlen("mds_conn")) != 0)
2784                 RETURN(-EINVAL);
2785
2786
2787         req = ptlrpc_prep_req(imp, OST_SET_INFO, 1, &size, bufs);
2788         if (req == NULL)
2789                 RETURN(-ENOMEM);
2790
2791         req->rq_replen = lustre_msg_size(0, NULL);
2792         rc = ptlrpc_queue_wait(req);
2793         ptlrpc_req_finished(req);
2794
2795         ctxt = llog_get_context(exp->exp_obd, LLOG_UNLINK_ORIG_CTXT);
2796         if (ctxt) {
2797                 rc = llog_initiator_connect(ctxt);
2798                 if (rc)
2799                         RETURN(rc);
2800         }
2801
2802         imp->imp_server_timeout = 1;
2803         CDEBUG(D_HA, "pinging OST %s\n", imp->imp_target_uuid.uuid);
2804         imp->imp_pingable = 1;
2805
2806         RETURN(rc);
2807 }
2808
2809
2810 static struct llog_operations osc_size_repl_logops = {
2811         lop_cancel: llog_obd_repl_cancel
2812 };
2813
2814 static struct llog_operations osc_unlink_orig_logops;
2815 static int osc_llog_init(struct obd_device *obd, struct obd_device *tgt,
2816                         int count, struct llog_catid *catid)
2817 {
2818         int rc;
2819         ENTRY;
2820
2821         osc_unlink_orig_logops = llog_lvfs_ops;
2822         osc_unlink_orig_logops.lop_setup = llog_obd_origin_setup;
2823         osc_unlink_orig_logops.lop_cleanup = llog_catalog_cleanup;
2824         osc_unlink_orig_logops.lop_add = llog_catalog_add;
2825         osc_unlink_orig_logops.lop_connect = llog_origin_connect;
2826
2827         rc = obd_llog_setup(obd, LLOG_UNLINK_ORIG_CTXT, tgt, count,
2828                             &catid->lci_logid, &osc_unlink_orig_logops);
2829         if (rc)
2830                 RETURN(rc);
2831
2832         rc = obd_llog_setup(obd, LLOG_SIZE_REPL_CTXT, tgt, count, NULL,
2833                             &osc_size_repl_logops);
2834         RETURN(rc);
2835 }
2836
2837 static int osc_llog_finish(struct obd_device *obd, int count)
2838 {
2839         int rc;
2840         ENTRY;
2841
2842         rc = obd_llog_cleanup(llog_get_context(obd, LLOG_UNLINK_ORIG_CTXT));
2843         if (rc)
2844                 RETURN(rc);
2845
2846         rc = obd_llog_cleanup(llog_get_context(obd, LLOG_SIZE_REPL_CTXT));
2847         RETURN(rc);
2848 }
2849
2850
2851 static int osc_connect(struct lustre_handle *exph,
2852                        struct obd_device *obd, struct obd_uuid *cluuid)
2853 {
2854         int rc;
2855
2856         rc = client_connect_import(exph, obd, cluuid);
2857
2858         return rc;
2859 }
2860
2861 static int osc_disconnect(struct obd_export *exp, int flags)
2862 {
2863         struct obd_device *obd = class_exp2obd(exp);
2864         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_SIZE_REPL_CTXT);
2865         int rc;
2866
2867         if (obd->u.cli.cl_conn_count == 1)
2868                 /* flush any remaining cancel messages out to the target */
2869                 llog_sync(ctxt, exp);
2870
2871         rc = client_disconnect_export(exp, flags);
2872         return rc;
2873 }
2874
2875 static int osc_import_event(struct obd_device *obd,
2876                             struct obd_import *imp, 
2877                             enum obd_import_event event)
2878 {
2879         struct client_obd *cli;
2880         int rc = 0;
2881
2882         LASSERT(imp->imp_obd == obd);
2883
2884         switch (event) {
2885         case IMP_EVENT_DISCON: {
2886                 /* Only do this on the MDS OSC's */
2887                 if (imp->imp_server_timeout) {
2888                         struct osc_creator *oscc = &obd->u.cli.cl_oscc;
2889                         
2890                         spin_lock(&oscc->oscc_lock);
2891                         oscc->oscc_flags |= OSCC_FLAG_RECOVERING;
2892                         spin_unlock(&oscc->oscc_lock);
2893                 }
2894                 break;
2895         }
2896         case IMP_EVENT_INACTIVE: {
2897                 if (obd->obd_observer)
2898                         rc = obd_notify(obd->obd_observer, obd, 0);
2899                 break;
2900         }
2901         case IMP_EVENT_INVALIDATE: {
2902                 struct ldlm_namespace *ns = obd->obd_namespace;
2903
2904                 /* Reset grants */
2905                 cli = &obd->u.cli;
2906                 spin_lock(&cli->cl_loi_list_lock);
2907                 cli->cl_avail_grant = 0;
2908                 cli->cl_lost_grant = 0;
2909                 /* all pages go to failing rpcs due to the invalid import */
2910                 osc_check_rpcs(cli);
2911                 spin_unlock(&cli->cl_loi_list_lock);
2912                 
2913                 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
2914
2915                 break;
2916         }
2917         case IMP_EVENT_ACTIVE: {
2918                 if (obd->obd_observer)
2919                         rc = obd_notify(obd->obd_observer, obd, 1);
2920                 break;
2921         }
2922         default:
2923                 CERROR("Unknown import event %d\n", event);
2924                 LBUG();
2925         }
2926         RETURN(rc);
2927 }
2928
2929 int osc_setup(struct obd_device *obd, obd_count len, void *buf)
2930 {
2931         int rc;
2932
2933         rc = ptlrpcd_addref();
2934         if (rc)
2935                 return rc;
2936
2937         rc = client_obd_setup(obd, len, buf);
2938         if (rc) {
2939                 ptlrpcd_decref();
2940         } else {
2941                 struct lprocfs_static_vars lvars;
2942
2943                 lprocfs_init_vars(osc, &lvars);
2944                 if (lprocfs_obd_setup(obd, lvars.obd_vars) == 0) {
2945                         lproc_osc_attach_seqstat(obd);
2946                         ptlrpc_lprocfs_register_obd(obd);
2947                 }
2948
2949                 oscc_init(obd);
2950         }
2951
2952         RETURN(rc);
2953 }
2954
2955 int osc_cleanup(struct obd_device *obd, int flags)
2956 {
2957         int rc;
2958
2959         ptlrpc_lprocfs_unregister_obd(obd);
2960         lprocfs_obd_cleanup(obd);
2961
2962         rc = client_obd_cleanup(obd, flags);
2963         ptlrpcd_decref();
2964         RETURN(rc);
2965 }
2966
2967
2968 struct obd_ops osc_obd_ops = {
2969         .o_owner                = THIS_MODULE,
2970         .o_setup                = osc_setup,
2971         .o_cleanup              = osc_cleanup,
2972         .o_connect              = osc_connect,
2973         .o_disconnect           = osc_disconnect,
2974         .o_statfs               = osc_statfs,
2975         .o_packmd               = osc_packmd,
2976         .o_unpackmd             = osc_unpackmd,
2977         .o_create               = osc_create,
2978         .o_destroy              = osc_destroy,
2979         .o_getattr              = osc_getattr,
2980         .o_getattr_async        = osc_getattr_async,
2981         .o_setattr              = osc_setattr,
2982         .o_brw                  = osc_brw,
2983         .o_brw_async            = osc_brw_async,
2984         .o_prep_async_page      = osc_prep_async_page,
2985         .o_queue_async_io       = osc_queue_async_io,
2986         .o_set_async_flags      = osc_set_async_flags,
2987         .o_queue_group_io       = osc_queue_group_io,
2988         .o_trigger_group_io     = osc_trigger_group_io,
2989         .o_teardown_async_page  = osc_teardown_async_page,
2990         .o_punch                = osc_punch,
2991         .o_sync                 = osc_sync,
2992         .o_enqueue              = osc_enqueue,
2993         .o_match                = osc_match,
2994         .o_change_cbdata        = osc_change_cbdata,
2995         .o_cancel               = osc_cancel,
2996         .o_cancel_unused        = osc_cancel_unused,
2997         .o_iocontrol            = osc_iocontrol,
2998         .o_get_info             = osc_get_info,
2999         .o_set_info             = osc_set_info,
3000         .o_import_event         = osc_import_event,
3001         .o_llog_init            = osc_llog_init,
3002         .o_llog_finish          = osc_llog_finish,
3003 };
3004
3005 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
3006 struct obd_ops sanosc_obd_ops = {
3007         .o_owner                = THIS_MODULE,
3008         .o_cleanup              = client_obd_cleanup,
3009         .o_connect              = osc_connect,
3010         .o_disconnect           = client_disconnect_export,
3011         .o_statfs               = osc_statfs,
3012         .o_packmd               = osc_packmd,
3013         .o_unpackmd             = osc_unpackmd,
3014         .o_create               = osc_real_create,
3015         .o_destroy              = osc_destroy,
3016         .o_getattr              = osc_getattr,
3017         .o_getattr_async        = osc_getattr_async,
3018         .o_setattr              = osc_setattr,
3019         .o_setup                = client_sanobd_setup,
3020         .o_brw                  = sanosc_brw,
3021         .o_punch                = osc_punch,
3022         .o_sync                 = osc_sync,
3023         .o_enqueue              = osc_enqueue,
3024         .o_match                = osc_match,
3025         .o_change_cbdata        = osc_change_cbdata,
3026         .o_cancel               = osc_cancel,
3027         .o_cancel_unused        = osc_cancel_unused,
3028         .o_iocontrol            = osc_iocontrol,
3029         .o_import_event         = osc_import_event,
3030         .o_llog_init            = osc_llog_init,
3031         .o_llog_finish          = osc_llog_finish,
3032 };
3033 #endif
3034
3035 int __init osc_init(void)
3036 {
3037         struct lprocfs_static_vars lvars;
3038 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
3039         struct lprocfs_static_vars sanlvars;
3040 #endif
3041         int rc;
3042         ENTRY;
3043
3044         lprocfs_init_vars(osc, &lvars);
3045 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
3046         lprocfs_init_vars(osc, &sanlvars);
3047 #endif
3048
3049         rc = class_register_type(&osc_obd_ops, lvars.module_vars,
3050                                  LUSTRE_OSC_NAME);
3051         if (rc)
3052                 RETURN(rc);
3053
3054 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
3055         rc = class_register_type(&sanosc_obd_ops, sanlvars.module_vars,
3056                                  LUSTRE_SANOSC_NAME);
3057         if (rc)
3058                 class_unregister_type(LUSTRE_OSC_NAME);
3059 #endif
3060
3061         RETURN(rc);
3062 }
3063
3064 #ifdef __KERNEL__
3065 static void /*__exit*/ osc_exit(void)
3066 {
3067 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
3068         class_unregister_type(LUSTRE_SANOSC_NAME);
3069 #endif
3070         class_unregister_type(LUSTRE_OSC_NAME);
3071 }
3072
3073 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
3074 MODULE_DESCRIPTION("Lustre Object Storage Client (OSC)");
3075 MODULE_LICENSE("GPL");
3076
3077 module_init(osc_init);
3078 module_exit(osc_exit);
3079 #endif