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