Whamcloud - gitweb
r=zab,phil
[fs/lustre-release.git] / lustre / ost / ost_handler.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 J. Braam <braam@clusterfs.com>
6  *   Author: Phil Schwan <phil@clusterfs.com>
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  *  Storage Target Handling functions
24  *  Lustre Object Server Module (OST)
25  *
26  *  This server is single threaded at present (but can easily be multi
27  *  threaded). For testing and management it is treated as an
28  *  obd_device, although it does not export a full OBD method table
29  *  (the requests are coming in over the wire, so object target
30  *  modules do not have a full method table.)
31  */
32
33 #ifndef EXPORT_SYMTAB
34 # define EXPORT_SYMTAB
35 #endif
36 #define DEBUG_SUBSYSTEM S_OST
37
38 #include <linux/module.h>
39 #include <linux/obd_ost.h>
40 #include <linux/lustre_net.h>
41 #include <linux/lustre_dlm.h>
42 #include <linux/lustre_export.h>
43 #include <linux/init.h>
44 #include <linux/lprocfs_status.h>
45 #include <linux/lustre_commit_confd.h>
46 #include <portals/list.h>
47
48 void oti_init(struct obd_trans_info *oti, struct ptlrpc_request *req)
49 {
50         if (oti == NULL)
51                 return;
52         memset(oti, 0, sizeof *oti);
53
54         if (req->rq_repmsg && req->rq_reqmsg != 0)
55                 oti->oti_transno = req->rq_repmsg->transno;
56 }
57
58 void oti_to_request(struct obd_trans_info *oti, struct ptlrpc_request *req)
59 {
60         struct oti_req_ack_lock *ack_lock;
61         int i;
62
63         if (oti == NULL)
64                 return;
65
66         if (req->rq_repmsg)
67                 req->rq_repmsg->transno = oti->oti_transno;
68
69         /* XXX 4 == entries in oti_ack_locks??? */
70         for (ack_lock = oti->oti_ack_locks, i = 0; i < 4; i++, ack_lock++) {
71                 if (!ack_lock->mode)
72                         break;
73                 ldlm_put_lock_into_req(req, &ack_lock->lock, ack_lock->mode);
74         }
75 }
76
77 static int ost_destroy(struct obd_export *exp, struct ptlrpc_request *req, 
78                        struct obd_trans_info *oti)
79 {
80         struct ost_body *body, *repbody;
81         int rc, size = sizeof(*body);
82         ENTRY;
83
84         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
85         if (body == NULL)
86                 RETURN(-EFAULT);
87
88         rc = lustre_pack_reply(req, 1, &size, NULL);
89         if (rc)
90                 RETURN(rc);
91
92         if (body->oa.o_valid & OBD_MD_FLCOOKIE)
93                 oti->oti_logcookies = obdo_logcookie(&body->oa);
94         repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*repbody));
95         memcpy(&repbody->oa, &body->oa, sizeof(body->oa));
96         req->rq_status = obd_destroy(exp, &body->oa, NULL, oti);
97         RETURN(0);
98 }
99
100 static int ost_getattr(struct obd_export *exp, struct ptlrpc_request *req)
101 {
102         struct ost_body *body, *repbody;
103         int rc, size = sizeof(*body);
104         ENTRY;
105
106         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
107         if (body == NULL)
108                 RETURN(-EFAULT);
109
110         rc = lustre_pack_reply(req, 1, &size, NULL);
111         if (rc)
112                 RETURN(rc);
113
114         repbody = lustre_msg_buf (req->rq_repmsg, 0, sizeof(*repbody));
115         memcpy(&repbody->oa, &body->oa, sizeof(body->oa));
116         req->rq_status = obd_getattr(exp, &repbody->oa, NULL);
117         RETURN(0);
118 }
119
120 static int ost_statfs(struct ptlrpc_request *req)
121 {
122         struct obd_statfs *osfs;
123         int rc, size = sizeof(*osfs);
124         ENTRY;
125
126         rc = lustre_pack_reply(req, 1, &size, NULL);
127         if (rc)
128                 RETURN(rc);
129
130         osfs = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*osfs));
131
132         req->rq_status = obd_statfs(req->rq_export->exp_obd, osfs, jiffies-HZ);
133         if (req->rq_status != 0)
134                 CERROR("ost: statfs failed: rc %d\n", req->rq_status);
135
136         RETURN(0);
137 }
138
139 static int ost_create(struct obd_export *exp, struct ptlrpc_request *req,
140                       struct obd_trans_info *oti)
141 {
142         struct ost_body *body, *repbody;
143         int rc, size = sizeof(*repbody);
144         ENTRY;
145
146         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
147         if (body == NULL)
148                 RETURN(-EFAULT);
149
150         rc = lustre_pack_reply(req, 1, &size, NULL);
151         if (rc)
152                 RETURN(rc);
153
154         repbody = lustre_msg_buf (req->rq_repmsg, 0, sizeof(*repbody));
155         memcpy(&repbody->oa, &body->oa, sizeof(body->oa));
156         oti->oti_logcookies = obdo_logcookie(&repbody->oa);
157         req->rq_status = obd_create(exp, &repbody->oa, NULL, oti);
158         //obd_log_cancel(conn, NULL, 1, oti->oti_logcookies, 0);
159         RETURN(0);
160 }
161
162 static int ost_punch(struct obd_export *exp, struct ptlrpc_request *req, 
163                      struct obd_trans_info *oti)
164 {
165         struct ost_body *body, *repbody;
166         int rc, size = sizeof(*repbody);
167         ENTRY;
168
169         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
170         if (body == NULL)
171                 RETURN(-EFAULT);
172
173         if ((body->oa.o_valid & (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS)) !=
174             (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS))
175                 RETURN(-EINVAL);
176
177         rc = lustre_pack_reply(req, 1, &size, NULL);
178         if (rc)
179                 RETURN(rc);
180
181         repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*repbody));
182         memcpy(&repbody->oa, &body->oa, sizeof(body->oa));
183         req->rq_status = obd_punch(exp, &repbody->oa, NULL, repbody->oa.o_size,
184                                    repbody->oa.o_blocks, oti);
185         RETURN(0);
186 }
187
188 static int ost_sync(struct obd_export *exp, struct ptlrpc_request *req)
189 {
190         struct ost_body *body, *repbody;
191         int rc, size = sizeof(*repbody);
192         ENTRY;
193
194         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
195         if (body == NULL)
196                 RETURN(-EFAULT);
197
198         rc = lustre_pack_reply(req, 1, &size, NULL);
199         if (rc)
200                 RETURN(rc);
201
202         repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*repbody));
203         memcpy(&repbody->oa, &body->oa, sizeof(body->oa));
204         req->rq_status = obd_sync(exp, &repbody->oa, NULL, repbody->oa.o_size,
205                                   repbody->oa.o_blocks);
206         RETURN(0);
207 }
208
209 static int ost_setattr(struct obd_export *exp, struct ptlrpc_request *req, 
210                        struct obd_trans_info *oti)
211 {
212         struct ost_body *body, *repbody;
213         int rc, size = sizeof(*repbody);
214         ENTRY;
215
216         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
217         if (body == NULL)
218                 RETURN(-EFAULT);
219
220         rc = lustre_pack_reply(req, 1, &size, NULL);
221         if (rc)
222                 RETURN(rc);
223
224         repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*repbody));
225         memcpy(&repbody->oa, &body->oa, sizeof(body->oa));
226
227         req->rq_status = obd_setattr(exp, &repbody->oa, NULL, oti);
228         RETURN(0);
229 }
230
231 static int ost_bulk_timeout(void *data)
232 {
233         ENTRY;
234         /* We don't fail the connection here, because having the export
235          * killed makes the (vital) call to commitrw very sad.
236          */
237         RETURN(1);
238 }
239
240 static int get_per_page_niobufs(struct obd_ioobj *ioo, int nioo,
241                                 struct niobuf_remote *rnb, int nrnb,
242                                 struct niobuf_remote **pp_rnbp)
243 {
244         /* Copy a remote niobuf, splitting it into page-sized chunks
245          * and setting ioo[i].ioo_bufcnt accordingly */
246         struct niobuf_remote *pp_rnb;
247         int   i;
248         int   j;
249         int   page;
250         int   rnbidx = 0;
251         int   npages = 0;
252
253         /* first count and check the number of pages required */
254         for (i = 0; i < nioo; i++)
255                 for (j = 0; j < ioo->ioo_bufcnt; j++, rnbidx++) {
256                         obd_off offset = rnb[rnbidx].offset;
257                         obd_off p0 = offset >> PAGE_SHIFT;
258                         obd_off pn = (offset + rnb[rnbidx].len - 1)>>PAGE_SHIFT;
259
260                         LASSERT(rnbidx < nrnb);
261
262                         npages += (pn + 1 - p0);
263
264                         if (rnb[rnbidx].len == 0) {
265                                 CERROR("zero len BRW: obj %d objid "LPX64
266                                        " buf %u\n", i, ioo[i].ioo_id, j);
267                                 return -EINVAL;
268                         }
269                         if (j > 0 &&
270                             rnb[rnbidx].offset <= rnb[rnbidx-1].offset) {
271                                 CERROR("unordered BRW: obj %d objid "LPX64
272                                        " buf %u offset "LPX64" <= "LPX64"\n",
273                                        i, ioo[i].ioo_id, j, rnb[rnbidx].offset,
274                                        rnb[rnbidx].offset);
275                                 return -EINVAL;
276                         }
277                 }
278
279         LASSERT(rnbidx == nrnb);
280
281         if (npages == nrnb) {       /* all niobufs are for single pages */
282                 *pp_rnbp = rnb;
283                 return npages;
284         }
285
286         OBD_ALLOC(pp_rnb, sizeof(*pp_rnb) * npages);
287         if (pp_rnb == NULL)
288                 return -ENOMEM;
289
290         /* now do the actual split */
291         page = rnbidx = 0;
292         for (i = 0; i < nioo; i++) {
293                 int  obj_pages = 0;
294
295                 for (j = 0; j < ioo[i].ioo_bufcnt; j++, rnbidx++) {
296                         obd_off off = rnb[rnbidx].offset;
297                         int     nob = rnb[rnbidx].len;
298
299                         LASSERT(rnbidx < nrnb);
300                         do {
301                                 obd_off  poff = off & (PAGE_SIZE - 1);
302                                 int      pnob = (poff + nob > PAGE_SIZE) ?
303                                                 PAGE_SIZE - poff : nob;
304
305                                 LASSERT(page < npages);
306                                 pp_rnb[page].len = pnob;
307                                 pp_rnb[page].offset = off;
308                                 pp_rnb[page].flags = rnb->flags;
309
310                                 CDEBUG(D_PAGE, "   obj %d id "LPX64
311                                        "page %d(%d) "LPX64" for %d\n",
312                                        i, ioo[i].ioo_id, obj_pages, page,
313                                        pp_rnb[page].offset, pp_rnb[page].len);
314                                 page++;
315                                 obj_pages++;
316
317                                 off += pnob;
318                                 nob -= pnob;
319                         } while (nob > 0);
320                         LASSERT(nob == 0);
321                 }
322                 ioo[i].ioo_bufcnt = obj_pages;
323         }
324         LASSERT(page == npages);
325
326         *pp_rnbp = pp_rnb;
327         return npages;
328 }
329
330 static void free_per_page_niobufs (int npages, struct niobuf_remote *pp_rnb,
331                                    struct niobuf_remote *rnb)
332 {
333         if (pp_rnb == rnb)                      /* didn't allocate above */
334                 return;
335
336         OBD_FREE(pp_rnb, sizeof(*pp_rnb) * npages);
337 }
338
339 #if CHECKSUM_BULK
340 obd_count ost_checksum_bulk(struct ptlrpc_bulk_desc *desc)
341 {
342         obd_count cksum = 0;
343         struct ptlrpc_bulk_page *bp;
344
345         list_for_each_entry(bp, &desc->bd_page_list, bp_link) {
346                 ost_checksum(&cksum, kmap(bp->bp_page) + bp->bp_pageoffset,
347                              bp->bp_buflen);
348                 kunmap(bp->bp_page);
349         }
350
351         return cksum;
352 }
353 #endif
354
355 static int ost_brw_read(struct ptlrpc_request *req)
356 {
357         struct ptlrpc_bulk_desc *desc;
358         struct niobuf_remote    *remote_nb;
359         struct niobuf_remote    *pp_rnb;
360         struct niobuf_local     *local_nb;
361         struct obd_ioobj        *ioo;
362         struct ost_body         *body, *repbody;
363         struct l_wait_info       lwi;
364         struct obd_trans_info    oti = { 0 };
365         char                     str[PTL_NALFMT_SIZE];
366         int                      size[1] = { sizeof(*body) };
367         int                      comms_error = 0;
368         int                      niocount;
369         int                      npages;
370         int                      nob = 0;
371         int                      rc;
372         int                      i;
373         ENTRY;
374
375         if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_READ_BULK))
376                 GOTO(out, rc = -EIO);
377
378         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_BRW_PAUSE_BULK | OBD_FAIL_ONCE,
379                          (obd_timeout + 1) / 4);
380
381         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
382         if (body == NULL) {
383                 CERROR("Missing/short ost_body\n");
384                 GOTO(out, rc = -EFAULT);
385         }
386
387         ioo = lustre_swab_reqbuf(req, 1, sizeof(*ioo), lustre_swab_obd_ioobj);
388         if (ioo == NULL) {
389                 CERROR("Missing/short ioobj\n");
390                 GOTO(out, rc = -EFAULT);
391         }
392
393         niocount = ioo->ioo_bufcnt;
394         remote_nb = lustre_swab_reqbuf(req, 2, niocount * sizeof(*remote_nb),
395                                        lustre_swab_niobuf_remote);
396         if (remote_nb == NULL) {
397                 CERROR("Missing/short niobuf\n");
398                 GOTO(out, rc = -EFAULT);
399         }
400         if (lustre_msg_swabbed(req->rq_reqmsg)) { /* swab remaining niobufs */
401                 for (i = 1; i < niocount; i++)
402                         lustre_swab_niobuf_remote (&remote_nb[i]);
403         }
404
405         rc = lustre_pack_reply(req, 1, size, NULL);
406         if (rc)
407                 GOTO(out, rc);
408
409         /* FIXME all niobuf splitting should be done in obdfilter if needed */
410         /* CAVEAT EMPTOR this sets ioo->ioo_bufcnt to # pages */
411         npages = get_per_page_niobufs(ioo, 1, remote_nb, niocount, &pp_rnb);
412         if (npages < 0)
413                 GOTO(out, rc = npages);
414
415         OBD_ALLOC(local_nb, sizeof(*local_nb) * npages);
416         if (local_nb == NULL)
417                 GOTO(out_pp_rnb, rc = -ENOMEM);
418
419         desc = ptlrpc_prep_bulk_exp(req, BULK_PUT_SOURCE, OST_BULK_PORTAL);
420         if (desc == NULL)
421                 GOTO(out_local, rc = -ENOMEM);
422
423         rc = obd_preprw(OBD_BRW_READ, req->rq_export, &body->oa, 1,
424                         ioo, npages, pp_rnb, local_nb, &oti);
425         if (rc != 0)
426                 GOTO(out_bulk, rc);
427
428         nob = 0;
429         for (i = 0; i < npages; i++) {
430                 int page_rc = local_nb[i].rc;
431
432                 if (page_rc < 0) {              /* error */
433                         rc = page_rc;
434                         break;
435                 }
436
437                 LASSERT(page_rc <= pp_rnb[i].len);
438                 nob += page_rc;
439                 if (page_rc != 0) {             /* some data! */
440                         LASSERT (local_nb[i].page != NULL);
441                         rc = ptlrpc_prep_bulk_page(desc, local_nb[i].page,
442                                                    pp_rnb[i].offset& ~PAGE_MASK,
443                                                    page_rc);
444                         if (rc != 0)
445                                 break;
446                 }
447
448                 if (page_rc != pp_rnb[i].len) { /* short read */
449                         /* All subsequent pages should be 0 */
450                         while(++i < npages)
451                                 LASSERT(local_nb[i].rc == 0);
452                         break;
453                 }
454         }
455
456         if (rc == 0) {
457                 rc = ptlrpc_bulk_put(desc);
458                 if (rc == 0) {
459                         lwi = LWI_TIMEOUT(obd_timeout * HZ / 4,
460                                           ost_bulk_timeout, desc);
461                         rc = l_wait_event(desc->bd_waitq,
462                                           ptlrpc_bulk_complete(desc), &lwi);
463                         if (rc) {
464                                 LASSERT(rc == -ETIMEDOUT);
465                                 DEBUG_REQ(D_ERROR, req, "timeout on bulk PUT");
466                                 ptlrpc_abort_bulk(desc);
467                         }
468                 } else {
469                         DEBUG_REQ(D_ERROR, req, "bulk PUT failed: rc %d\n", rc);
470                 }
471                 comms_error = rc != 0;
472         }
473
474         /* Must commit after prep above in all cases */
475         rc = obd_commitrw(OBD_BRW_READ, req->rq_export, &body->oa, 1,
476                           ioo, npages, local_nb, &oti);
477
478         if (rc == 0) {
479                 repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*repbody));
480                 memcpy(&repbody->oa, &body->oa, sizeof(repbody->oa));
481
482 #if CHECKSUM_BULK
483                 repbody->oa.o_nlink = ost_checksum_bulk(desc);
484                 repbody->oa.o_valid |= OBD_MD_FLCKSUM;
485 #endif
486         }
487
488  out_bulk:
489         ptlrpc_free_bulk(desc);
490  out_local:
491         OBD_FREE(local_nb, sizeof(*local_nb) * npages);
492  out_pp_rnb:
493         free_per_page_niobufs(npages, pp_rnb, remote_nb);
494  out:
495         LASSERT(rc <= 0);
496         if (rc == 0) {
497                 req->rq_status = nob;
498                 ptlrpc_reply(req);
499         } else if (!comms_error) {
500                 /* only reply if comms OK */
501                 req->rq_status = rc;
502                 ptlrpc_error(req);
503         } else {
504                 if (req->rq_repmsg != NULL) {
505                         /* reply out callback would free */
506                         OBD_FREE(req->rq_repmsg, req->rq_replen);
507                 }
508                 if (req->rq_reqmsg->conn_cnt == req->rq_export->exp_conn_cnt) {
509                         CERROR("bulk IO comms error: "
510                                "evicting %s@%s nid "LPX64" (%s)\n",
511                                req->rq_export->exp_client_uuid.uuid,
512                                req->rq_connection->c_remote_uuid.uuid,
513                                req->rq_connection->c_peer.peer_nid,
514                                portals_nid2str(req->rq_connection->c_peer.peer_ni->pni_number,
515                                                req->rq_connection->c_peer.peer_nid,
516                                                str));
517                         ptlrpc_fail_export(req->rq_export);
518                 } else {
519                         CERROR("ignoring bulk IO comms error: "
520                                "client reconnected %s@%s nid "LPX64" (%s)\n",  
521                                req->rq_export->exp_client_uuid.uuid,
522                                req->rq_connection->c_remote_uuid.uuid,
523                                req->rq_connection->c_peer.peer_nid,
524                                portals_nid2str(req->rq_connection->c_peer.peer_ni->pni_number,
525                                                req->rq_connection->c_peer.peer_nid,
526                                                str));
527                 }
528         }
529
530         RETURN(rc);
531 }
532
533 static int ost_brw_write(struct ptlrpc_request *req, struct obd_trans_info *oti)
534 {
535         struct ptlrpc_bulk_desc *desc;
536         struct niobuf_remote    *remote_nb;
537         struct niobuf_remote    *pp_rnb;
538         struct niobuf_local     *local_nb;
539         struct obd_ioobj        *ioo;
540         struct ost_body         *body, *repbody;
541         struct l_wait_info       lwi;
542         __u32                   *rcs;
543         int                      size[2] = { sizeof(*body) };
544         int                      objcount, niocount, npages;
545         int                      comms_error = 0;
546         int                      rc, rc2, swab, i, j;
547         char                    str[PTL_NALFMT_SIZE];
548         ENTRY;
549
550         if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_WRITE_BULK))
551                 GOTO(out, rc = -EIO);
552
553         /* pause before transaction has been started */
554         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_BRW_PAUSE_BULK | OBD_FAIL_ONCE,
555                          (obd_timeout + 1) / 4);
556
557         swab = lustre_msg_swabbed(req->rq_reqmsg);
558         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
559         if (body == NULL) {
560                 CERROR("Missing/short ost_body\n");
561                 GOTO(out, rc = -EFAULT);
562         }
563
564         LASSERT_REQSWAB(req, 1);
565         objcount = req->rq_reqmsg->buflens[1] / sizeof(*ioo);
566         if (objcount == 0) {
567                 CERROR("Missing/short ioobj\n");
568                 GOTO(out, rc = -EFAULT);
569         }
570         ioo = lustre_msg_buf (req->rq_reqmsg, 1, objcount * sizeof(*ioo));
571         LASSERT (ioo != NULL);
572         for (niocount = i = 0; i < objcount; i++) {
573                 if (swab)
574                         lustre_swab_obd_ioobj (&ioo[i]);
575                 if (ioo[i].ioo_bufcnt == 0) {
576                         CERROR("ioo[%d] has zero bufcnt\n", i);
577                         GOTO(out, rc = -EFAULT);
578                 }
579                 niocount += ioo[i].ioo_bufcnt;
580         }
581
582         remote_nb = lustre_swab_reqbuf(req, 2, niocount * sizeof(*remote_nb),
583                                        lustre_swab_niobuf_remote);
584         if (remote_nb == NULL) {
585                 CERROR("Missing/short niobuf\n");
586                 GOTO(out, rc = -EFAULT);
587         }
588         if (swab) {                             /* swab the remaining niobufs */
589                 for (i = 1; i < niocount; i++)
590                         lustre_swab_niobuf_remote (&remote_nb[i]);
591         }
592
593         size[1] = niocount * sizeof(*rcs);
594         rc = lustre_pack_reply(req, 2, size, NULL);
595         if (rc != 0)
596                 GOTO(out, rc);
597         rcs = lustre_msg_buf(req->rq_repmsg, 1, niocount * sizeof(*rcs));
598
599         /* FIXME all niobuf splitting should be done in obdfilter if needed */
600         /* CAVEAT EMPTOR this sets ioo->ioo_bufcnt to # pages */
601         npages = get_per_page_niobufs(ioo, objcount,remote_nb,niocount,&pp_rnb);
602         if (npages < 0)
603                 GOTO(out, rc = npages);
604
605         OBD_ALLOC(local_nb, sizeof(*local_nb) * npages);
606         if (local_nb == NULL)
607                 GOTO(out_pp_rnb, rc = -ENOMEM);
608
609         desc = ptlrpc_prep_bulk_exp(req, BULK_GET_SINK, OST_BULK_PORTAL);
610         if (desc == NULL)
611                 GOTO(out_local, rc = -ENOMEM);
612
613         rc = obd_preprw(OBD_BRW_WRITE, req->rq_export, &body->oa, objcount,
614                         ioo, npages, pp_rnb, local_nb, oti);
615         if (rc != 0)
616                 GOTO(out_bulk, rc);
617
618         /* NB Having prepped, we must commit... */
619
620         for (i = 0; i < npages; i++) {
621                 rc = ptlrpc_prep_bulk_page(desc, local_nb[i].page,
622                                            pp_rnb[i].offset & (PAGE_SIZE - 1),
623                                            pp_rnb[i].len);
624                 if (rc != 0)
625                         break;
626         }
627
628         if (rc == 0) {
629                 rc = ptlrpc_bulk_get(desc);
630                 if (rc == 0) {
631                         lwi = LWI_TIMEOUT(obd_timeout * HZ / 4,
632                                           ost_bulk_timeout, desc);
633                         rc = l_wait_event(desc->bd_waitq,
634                                           ptlrpc_bulk_complete(desc), &lwi);
635                         if (rc) {
636                                 LASSERT(rc == -ETIMEDOUT);
637                                 DEBUG_REQ(D_ERROR, req, "timeout on bulk GET");
638                                 ptlrpc_abort_bulk(desc);
639                         }
640                 } else {
641                         DEBUG_REQ(D_ERROR, req, "bulk GET failed: rc %d\n", rc);
642                 }
643                 comms_error = rc != 0;
644         }
645
646         repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*repbody));
647         memcpy(&repbody->oa, &body->oa, sizeof(repbody->oa));
648
649 #if CHECKSUM_BULK
650         if (rc == 0 && (body->oa.o_valid & OBD_MD_FLCKSUM) != 0) {
651                 static int cksum_counter;
652                 obd_count client_cksum = body->oa.o_nlink;
653                 obd_count cksum = ost_checksum_bulk(desc);
654
655                 portals_nid2str(req->rq_connection->c_peer.peer_ni->pni_number,
656                                 req->rq_connection->c_peer.peer_nid, str);
657                 if (client_cksum != cksum) {
658                         CERROR("Bad checksum: client %x, server %x, client NID "
659                                LPX64" (%s)\n", client_cksum, cksum,
660                                req->rq_connection->c_peer.peer_nid, str);
661                         cksum_counter = 1;
662                         repbody->oa.o_nlink = cksum;
663                 } else {
664                         cksum_counter++;
665                         if ((cksum_counter & (-cksum_counter)) == cksum_counter)
666                                 CWARN("Checksum %u from "LPX64": %x OK\n",
667                                       cksum_counter,
668                                       req->rq_connection->c_peer.peer_nid,
669                                       cksum);
670                 }
671         }
672 #endif
673         /* Must commit after prep above in all cases */
674         rc2 = obd_commitrw(OBD_BRW_WRITE, req->rq_export, &repbody->oa,
675                            objcount, ioo, npages, local_nb, oti);
676
677         if (rc == 0) {
678                 /* set per-requested niobuf return codes */
679                 for (i = j = 0; i < niocount; i++) {
680                         int nob = remote_nb[i].len;
681
682                         rcs[i] = 0;
683                         do {
684                                 LASSERT(j < npages);
685                                 if (local_nb[j].rc < 0)
686                                         rcs[i] = local_nb[j].rc;
687                                 nob -= pp_rnb[j].len;
688                                 j++;
689                         } while (nob > 0);
690                         LASSERT(nob == 0);
691                 }
692                 LASSERT(j == npages);
693         }
694         if (rc == 0)
695                 rc = rc2;
696
697  out_bulk:
698         ptlrpc_free_bulk(desc);
699  out_local:
700         OBD_FREE(local_nb, sizeof(*local_nb) * npages);
701  out_pp_rnb:
702         free_per_page_niobufs(npages, pp_rnb, remote_nb);
703  out:
704         if (rc == 0) {
705                 oti_to_request(oti, req);
706                 rc = ptlrpc_reply(req);
707         } else if (!comms_error) {
708                 /* Only reply if there was no comms problem with bulk */
709                 req->rq_status = rc;
710                 ptlrpc_error(req);
711         } else {
712                 if (req->rq_repmsg != NULL) {
713                         /* reply out callback would free */
714                         OBD_FREE (req->rq_repmsg, req->rq_replen);
715                 }
716                 if (req->rq_reqmsg->conn_cnt == req->rq_export->exp_conn_cnt) {
717                         CERROR("bulk IO comms error: "
718                                "evicting %s@%s nid "LPX64" (%s)\n",
719                                req->rq_export->exp_client_uuid.uuid,
720                                req->rq_connection->c_remote_uuid.uuid,
721                                req->rq_connection->c_peer.peer_nid,
722                                portals_nid2str(req->rq_connection->c_peer.peer_ni->pni_number,
723                                                req->rq_connection->c_peer.peer_nid,
724                                                str));
725                         ptlrpc_fail_export(req->rq_export);
726                 } else {
727                         CERROR("ignoring bulk IO comms error: "
728                                "client reconnected %s@%s nid "LPX64" (%s)\n",
729                                req->rq_export->exp_client_uuid.uuid,
730                                req->rq_connection->c_remote_uuid.uuid,
731                                req->rq_connection->c_peer.peer_nid,
732                                portals_nid2str(req->rq_connection->c_peer.peer_ni->pni_number,
733                                                req->rq_connection->c_peer.peer_nid,
734                                                str));
735                 }        
736         }
737         RETURN(rc);
738 }
739
740 static int ost_san_brw(struct ptlrpc_request *req, int cmd)
741 {
742         struct niobuf_remote *remote_nb, *res_nb, *pp_rnb;
743         struct obd_ioobj *ioo;
744         struct ost_body *body, *repbody;
745         int rc, i, objcount, niocount, size[2] = {sizeof(*body)}, npages;
746         int swab;
747         ENTRY;
748
749         /* XXX not set to use latest protocol */
750
751         swab = lustre_msg_swabbed(req->rq_reqmsg);
752         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_ost_body);
753         if (body == NULL) {
754                 CERROR("Missing/short ost_body\n");
755                 GOTO(out, rc = -EFAULT);
756         }
757
758         ioo = lustre_swab_reqbuf(req, 1, sizeof(*ioo), lustre_swab_obd_ioobj);
759         if (ioo == NULL) {
760                 CERROR("Missing/short ioobj\n");
761                 GOTO(out, rc = -EFAULT);
762         }
763         objcount = req->rq_reqmsg->buflens[1] / sizeof(*ioo);
764         niocount = ioo[0].ioo_bufcnt;
765         for (i = 1; i < objcount; i++) {
766                 if (swab)
767                         lustre_swab_obd_ioobj (&ioo[i]);
768                 niocount += ioo[i].ioo_bufcnt;
769         }
770
771         remote_nb = lustre_swab_reqbuf(req, 2, niocount * sizeof(*remote_nb),
772                                        lustre_swab_niobuf_remote);
773         if (remote_nb == NULL) {
774                 CERROR("Missing/short niobuf\n");
775                 GOTO(out, rc = -EFAULT);
776         }
777         if (swab) {                             /* swab the remaining niobufs */
778                 for (i = 1; i < niocount; i++)
779                         lustre_swab_niobuf_remote (&remote_nb[i]);
780         }
781
782         /* CAVEAT EMPTOR this sets ioo->ioo_bufcnt to # pages */
783         npages = get_per_page_niobufs(ioo, objcount,remote_nb,niocount,&pp_rnb);
784         if (npages < 0)
785                 GOTO (out, rc = npages);
786  
787         size[1] = npages * sizeof(*pp_rnb);
788         rc = lustre_pack_reply(req, 2, size, NULL);
789         if (rc)
790                 GOTO(out_pp_rnb, rc);
791
792         req->rq_status = obd_san_preprw(cmd, req->rq_export, &body->oa,
793                                         objcount, ioo, npages, pp_rnb);
794
795         if (req->rq_status)
796                 GOTO(out_pp_rnb, rc = 0);
797
798         repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*repbody));
799         memcpy(&repbody->oa, &body->oa, sizeof(body->oa));
800
801         res_nb = lustre_msg_buf(req->rq_repmsg, 1, size[1]);
802         memcpy(res_nb, remote_nb, size[1]);
803         rc = 0;
804 out_pp_rnb:
805         free_per_page_niobufs(npages, pp_rnb, remote_nb);
806 out:
807         if (rc) {
808                 OBD_FREE(req->rq_repmsg, req->rq_replen);
809                 req->rq_repmsg = NULL;
810                 req->rq_status = rc;
811                 ptlrpc_error(req);
812         } else
813                 ptlrpc_reply(req);
814
815         return rc;
816 }
817
818
819 static int ost_set_info(struct obd_export *exp, struct ptlrpc_request *req)
820 {
821         char *key;
822         int keylen, rc = 0;
823         ENTRY;
824
825         key = lustre_msg_buf(req->rq_reqmsg, 0, 1);
826         if (key == NULL) {
827                 DEBUG_REQ(D_HA, req, "no set_info key");
828                 RETURN(-EFAULT);
829         }
830         keylen = req->rq_reqmsg->buflens[0];
831
832         rc = lustre_pack_reply(req, 0, NULL, NULL);
833         if (rc)
834                 RETURN(rc);
835
836         rc = obd_set_info(exp, keylen, key, 0, NULL);
837         req->rq_repmsg->status = 0;
838         RETURN(rc);
839 }
840
841 static int ost_get_info(struct obd_export *exp, struct ptlrpc_request *req)
842 {
843         char *key;
844         int keylen, rc = 0, size = sizeof(obd_id);
845         obd_id *reply;
846         ENTRY;
847
848         key = lustre_msg_buf(req->rq_reqmsg, 0, 1);
849         if (key == NULL) {
850                 DEBUG_REQ(D_HA, req, "no get_info key");
851                 RETURN(-EFAULT);
852         }
853         keylen = req->rq_reqmsg->buflens[0];
854
855         if (keylen < strlen("last_id") || memcmp(key, "last_id", 7) != 0)
856                 RETURN(-EPROTO);
857
858         rc = lustre_pack_reply(req, 1, &size, NULL);
859         if (rc)
860                 RETURN(rc);
861
862         reply = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*reply));
863         rc = obd_get_info(exp, keylen, key, &size, reply);
864         req->rq_repmsg->status = 0;
865         RETURN(rc);
866 }
867
868 static int ost_filter_recovery_request(struct ptlrpc_request *req,
869                                        struct obd_device *obd, int *process)
870 {
871         switch (req->rq_reqmsg->opc) {
872         case OST_CONNECT: /* This will never get here, but for completeness. */
873         case OST_DISCONNECT:
874                *process = 1;
875                RETURN(0);
876
877         case OBD_PING:
878         case OST_CREATE:
879         case OST_DESTROY:
880         case OST_PUNCH:
881         case OST_SETATTR:
882         case OST_SYNC:
883         case OST_WRITE:
884         case OBD_LOG_CANCEL:
885         case LDLM_ENQUEUE:
886                 *process = target_queue_recovery_request(req, obd);
887                 RETURN(0);
888
889         default:
890                 DEBUG_REQ(D_ERROR, req, "not permitted during recovery");
891                 *process = 0;
892                 /* XXX what should we set rq_status to here? */
893                 req->rq_status = -EAGAIN;
894                 RETURN(ptlrpc_error(req));
895         }
896 }
897
898
899
900 static int ost_handle(struct ptlrpc_request *req)
901 {
902         struct obd_trans_info trans_info = { 0, };
903         struct obd_trans_info *oti = &trans_info;
904         int should_process, fail = OBD_FAIL_OST_ALL_REPLY_NET, rc = 0;
905         struct obd_export *exp = NULL;
906         ENTRY;
907
908         LASSERT(current->journal_info == NULL);
909         /* XXX identical to MDS */
910         if (req->rq_reqmsg->opc != OST_CONNECT) {
911                 struct obd_device *obd;
912                 int abort_recovery, recovering;
913
914                 exp = req->rq_export;
915
916                 if (exp == NULL) {
917                         CDEBUG(D_HA, "operation %d on unconnected OST\n",
918                                req->rq_reqmsg->opc);
919                         req->rq_status = -ENOTCONN;
920                         GOTO(out, rc = -ENOTCONN);
921                 }
922
923                 obd = exp->exp_obd;
924
925                 /* Check for aborted recovery. */
926                 spin_lock_bh(&obd->obd_processing_task_lock);
927                 abort_recovery = obd->obd_abort_recovery;
928                 recovering = obd->obd_recovering;
929                 spin_unlock_bh(&obd->obd_processing_task_lock);
930                 if (abort_recovery) {
931                         target_abort_recovery(obd);
932                 } else if (recovering) {
933                         rc = ost_filter_recovery_request(req, obd,
934                                                          &should_process);
935                         if (rc || !should_process)
936                                 RETURN(rc);
937                 }
938         }
939
940         oti_init(oti, req);
941
942         switch (req->rq_reqmsg->opc) {
943         case OST_CONNECT:
944                 CDEBUG(D_INODE, "connect\n");
945                 OBD_FAIL_RETURN(OBD_FAIL_OST_CONNECT_NET, 0);
946                 rc = target_handle_connect(req, ost_handle);
947                 break;
948         case OST_DISCONNECT:
949                 CDEBUG(D_INODE, "disconnect\n");
950                 OBD_FAIL_RETURN(OBD_FAIL_OST_DISCONNECT_NET, 0);
951                 rc = target_handle_disconnect(req);
952                 break;
953         case OST_CREATE:
954                 CDEBUG(D_INODE, "create\n");
955                 OBD_FAIL_RETURN(OBD_FAIL_OST_CREATE_NET, 0);
956                 rc = ost_create(exp, req, oti);
957                 break;
958         case OST_DESTROY:
959                 CDEBUG(D_INODE, "destroy\n");
960                 OBD_FAIL_RETURN(OBD_FAIL_OST_DESTROY_NET, 0);
961                 rc = ost_destroy(exp, req, oti);
962                 break;
963         case OST_GETATTR:
964                 CDEBUG(D_INODE, "getattr\n");
965                 OBD_FAIL_RETURN(OBD_FAIL_OST_GETATTR_NET, 0);
966                 rc = ost_getattr(exp, req);
967                 break;
968         case OST_SETATTR:
969                 CDEBUG(D_INODE, "setattr\n");
970                 OBD_FAIL_RETURN(OBD_FAIL_OST_SETATTR_NET, 0);
971                 rc = ost_setattr(exp, req, oti);
972                 break;
973         case OST_WRITE:
974                 CDEBUG(D_INODE, "write\n");
975                 OBD_FAIL_RETURN(OBD_FAIL_OST_BRW_NET, 0);
976                 rc = ost_brw_write(req, oti);
977                 LASSERT(current->journal_info == NULL);
978                 /* ost_brw sends its own replies */
979                 RETURN(rc);
980         case OST_READ:
981                 CDEBUG(D_INODE, "read\n");
982                 OBD_FAIL_RETURN(OBD_FAIL_OST_BRW_NET, 0);
983                 rc = ost_brw_read(req);
984                 LASSERT(current->journal_info == NULL);
985                 /* ost_brw sends its own replies */
986                 RETURN(rc);
987         case OST_SAN_READ:
988                 CDEBUG(D_INODE, "san read\n");
989                 OBD_FAIL_RETURN(OBD_FAIL_OST_BRW_NET, 0);
990                 rc = ost_san_brw(req, OBD_BRW_READ);
991                 /* ost_san_brw sends its own replies */
992                 RETURN(rc);
993         case OST_SAN_WRITE:
994                 CDEBUG(D_INODE, "san write\n");
995                 OBD_FAIL_RETURN(OBD_FAIL_OST_BRW_NET, 0);
996                 rc = ost_san_brw(req, OBD_BRW_WRITE);
997                 /* ost_san_brw sends its own replies */
998                 RETURN(rc);
999         case OST_PUNCH:
1000                 CDEBUG(D_INODE, "punch\n");
1001                 OBD_FAIL_RETURN(OBD_FAIL_OST_PUNCH_NET, 0);
1002                 rc = ost_punch(exp, req, oti);
1003                 break;
1004         case OST_STATFS:
1005                 CDEBUG(D_INODE, "statfs\n");
1006                 OBD_FAIL_RETURN(OBD_FAIL_OST_STATFS_NET, 0);
1007                 rc = ost_statfs(req);
1008                 break;
1009         case OST_SYNC:
1010                 CDEBUG(D_INODE, "sync\n");
1011                 OBD_FAIL_RETURN(OBD_FAIL_OST_SYNC_NET, 0);
1012                 rc = ost_sync(exp, req);
1013                 break;
1014         case OST_SET_INFO:
1015                 DEBUG_REQ(D_INODE, req, "set_info");
1016                 rc = ost_set_info(exp, req);
1017                 break;
1018         case OST_GET_INFO:
1019                 DEBUG_REQ(D_INODE, req, "get_info");
1020                 rc = ost_get_info(exp, req);
1021                 break;
1022         case OBD_PING:
1023                 DEBUG_REQ(D_INODE, req, "ping");
1024                 rc = target_handle_ping(req);
1025                 break;
1026 #ifdef ENABLE_ORPHANS
1027         /* FIXME - just reply status */
1028         case LLOG_ORIGIN_CONNECT:
1029                 DEBUG_REQ(D_INODE, req, "log connect\n");
1030                 rc = llog_handle_connect(req); 
1031                 req->rq_status = rc;
1032                 rc = lustre_pack_reply(req, 0, NULL, NULL);
1033                 if (rc)
1034                         RETURN(rc);
1035                 RETURN(ptlrpc_reply(req));
1036                 //break;
1037         case OBD_LOG_CANCEL:
1038                 CDEBUG(D_INODE, "log cancel\n");
1039                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOG_CANCEL_NET, 0);
1040                 rc = llog_origin_handle_cancel(req);
1041                 req->rq_status = rc;
1042                 rc = lustre_pack_reply(req, 0, NULL, NULL);
1043                 if (rc)
1044                         RETURN(rc);
1045                 RETURN(ptlrpc_reply(req));
1046                 //break;
1047 #endif
1048         case LDLM_ENQUEUE:
1049                 CDEBUG(D_INODE, "enqueue\n");
1050                 OBD_FAIL_RETURN(OBD_FAIL_LDLM_ENQUEUE, 0);
1051                 rc = ldlm_handle_enqueue(req, ldlm_server_completion_ast,
1052                                          ldlm_server_blocking_ast);
1053                 fail = OBD_FAIL_OST_LDLM_REPLY_NET;
1054                 break;
1055         case LDLM_CONVERT:
1056                 CDEBUG(D_INODE, "convert\n");
1057                 OBD_FAIL_RETURN(OBD_FAIL_LDLM_CONVERT, 0);
1058                 rc = ldlm_handle_convert(req);
1059                 break;
1060         case LDLM_CANCEL:
1061                 CDEBUG(D_INODE, "cancel\n");
1062                 OBD_FAIL_RETURN(OBD_FAIL_LDLM_CANCEL, 0);
1063                 rc = ldlm_handle_cancel(req);
1064                 break;
1065         case LDLM_BL_CALLBACK:
1066         case LDLM_CP_CALLBACK:
1067                 CDEBUG(D_INODE, "callback\n");
1068                 CERROR("callbacks should not happen on OST\n");
1069                 /* fall through */
1070         default:
1071                 CERROR("Unexpected opcode %d\n", req->rq_reqmsg->opc);
1072                 req->rq_status = -ENOTSUPP;
1073                 rc = ptlrpc_error(req);
1074                 RETURN(rc);
1075         }
1076
1077         LASSERT(current->journal_info == NULL);
1078
1079         EXIT;
1080         /* If we're DISCONNECTing, the export_data is already freed */
1081         if (!rc && req->rq_reqmsg->opc != OST_DISCONNECT) {
1082                 struct obd_device *obd  = req->rq_export->exp_obd;
1083                 if (!obd->obd_no_transno) {
1084                         req->rq_repmsg->last_committed =
1085                                 obd->obd_last_committed;
1086                 } else {
1087                         DEBUG_REQ(D_IOCTL, req,
1088                                   "not sending last_committed update");
1089                 }
1090                 CDEBUG(D_INFO, "last_committed "LPU64", xid "LPX64"\n",
1091                        obd->obd_last_committed, req->rq_xid);
1092         }
1093
1094 out:
1095         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_LAST_REPLAY) {
1096                 struct obd_device *obd = req->rq_export->exp_obd;
1097
1098                 if (obd && obd->obd_recovering) {
1099                         DEBUG_REQ(D_HA, req, "LAST_REPLAY, queuing reply");
1100                         return target_queue_final_reply(req, rc);
1101                 }
1102                 /* Lost a race with recovery; let the error path DTRT. */
1103                 rc = req->rq_status = -ENOTCONN;
1104         }
1105
1106         if (!rc)
1107                 oti_to_request(oti, req);
1108
1109         target_send_reply(req, rc, fail);
1110         return 0;
1111 }
1112
1113 static int ost_setup(struct obd_device *obddev, obd_count len, void *buf)
1114 {
1115         struct ost_obd *ost = &obddev->u.ost;
1116         int rc;
1117         ENTRY;
1118
1119         /* Get rid of unneeded supplementary groups */
1120         current->ngroups = 0;
1121         memset(current->groups, 0, sizeof(current->groups));
1122
1123         rc = llog_start_commit_thread();
1124         if (rc < 0)
1125                 RETURN(rc);
1126
1127         ost->ost_service = ptlrpc_init_svc(OST_NEVENTS, OST_NBUFS,
1128                                            OST_BUFSIZE, OST_MAXREQSIZE,
1129                                            OST_REQUEST_PORTAL, OSC_REPLY_PORTAL,
1130                                            ost_handle, "ost", 
1131                                            obddev->obd_proc_entry);
1132         if (ost->ost_service == NULL) {
1133                 CERROR("failed to start service\n");
1134                 RETURN(-ENOMEM);
1135         }
1136         
1137         rc = ptlrpc_start_n_threads(obddev, ost->ost_service, OST_NUM_THREADS, 
1138                                  "ll_ost");
1139         if (rc)
1140                 GOTO(out, rc = -EINVAL);
1141
1142         ost->ost_create_service =
1143                 ptlrpc_init_svc(OST_NEVENTS, OST_NBUFS, OST_BUFSIZE,
1144                                 OST_MAXREQSIZE, OST_CREATE_PORTAL,
1145                                 OSC_REPLY_PORTAL, ost_handle, "ost_create",
1146                                 obddev->obd_proc_entry);
1147         if (ost->ost_create_service == NULL) {
1148                 CERROR("failed to start OST create service\n");
1149                 GOTO(out, rc = -ENOMEM);
1150         }
1151
1152         rc = ptlrpc_start_n_threads(obddev, ost->ost_create_service, 1,
1153                                     "ll_ost_create");
1154         if (rc) 
1155                 GOTO(out_create, rc = -EINVAL);
1156
1157         RETURN(0);
1158
1159 out_create:
1160         ptlrpc_unregister_service(ost->ost_create_service);
1161 out:
1162         ptlrpc_unregister_service(ost->ost_service);
1163         RETURN(rc);
1164 }
1165
1166 static int ost_cleanup(struct obd_device *obddev, int flags)
1167 {
1168         struct ost_obd *ost = &obddev->u.ost;
1169         int err = 0;
1170         ENTRY;
1171
1172         if (obddev->obd_recovering)
1173                 target_cancel_recovery_timer(obddev);
1174
1175         ptlrpc_stop_all_threads(ost->ost_service);
1176         ptlrpc_unregister_service(ost->ost_service);
1177
1178         ptlrpc_stop_all_threads(ost->ost_create_service);
1179         ptlrpc_unregister_service(ost->ost_create_service);
1180
1181         RETURN(err);
1182 }
1183
1184 int ost_attach(struct obd_device *dev, obd_count len, void *data)
1185 {
1186         struct lprocfs_static_vars lvars;
1187
1188         lprocfs_init_vars(ost,&lvars);
1189         return lprocfs_obd_attach(dev, lvars.obd_vars);
1190 }
1191
1192 int ost_detach(struct obd_device *dev)
1193 {
1194         return lprocfs_obd_detach(dev);
1195 }
1196
1197 /* use obd ops to offer management infrastructure */
1198 static struct obd_ops ost_obd_ops = {
1199         o_owner:        THIS_MODULE,
1200         o_attach:       ost_attach,
1201         o_detach:       ost_detach,
1202         o_setup:        ost_setup,
1203         o_cleanup:      ost_cleanup,
1204 };
1205
1206 static int __init ost_init(void)
1207 {
1208         struct lprocfs_static_vars lvars;
1209         ENTRY;
1210
1211         lprocfs_init_vars(ost,&lvars);
1212         RETURN(class_register_type(&ost_obd_ops, lvars.module_vars,
1213                                    LUSTRE_OST_NAME));
1214 }
1215
1216 static void /*__exit*/ ost_exit(void)
1217 {
1218         class_unregister_type(LUSTRE_OST_NAME);
1219 }
1220
1221 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
1222 MODULE_DESCRIPTION("Lustre Object Storage Target (OST) v0.01");
1223 MODULE_LICENSE("GPL");
1224
1225 module_init(ost_init);
1226 module_exit(ost_exit);