Whamcloud - gitweb
merge b_devel into HEAD (20030703)
[fs/lustre-release.git] / lustre / include / linux / lustre_net.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #ifndef _LUSTRE_NET_H
24 #define _LUSTRE_NET_H
25
26 #ifdef __KERNEL__
27 #include <linux/version.h>
28 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
29 #include <linux/tqueue.h>
30 #else
31 #include <linux/workqueue.h>
32 #endif
33 #endif
34
35 #include <linux/kp30.h>
36 // #include <linux/obd.h>
37 #include <portals/p30.h>
38 #include <linux/lustre_idl.h>
39 #include <linux/lustre_ha.h>
40 #include <linux/lustre_import.h>
41 #include <linux/lprocfs_status.h>
42
43 /* The following constants determine how much memory is devoted to
44  * buffering in the lustre services.
45  *
46  * ?_NEVENTS            # event queue entries
47  *
48  * ?_NBUFS              # request buffers
49  * ?_BUFSIZE            # bytes in a single request buffer
50  * total memory = ?_NBUFS * ?_BUFSIZE
51  *
52  * ?_MAXREQSIZE         # maximum request service will receive
53  * larger messages will get dropped.
54  * request buffers are auto-unlinked when less than ?_MAXREQSIZE
55  * is left in them.
56  */
57
58 #define LDLM_NUM_THREADS        4
59 #define LDLM_NEVENT_MAX 8192UL
60 #define LDLM_NEVENTS    min(num_physpages / 64, LDLM_NEVENT_MAX)
61 #define LDLM_NBUF_MAX   256UL
62 #define LDLM_NBUFS      min(LDLM_NEVENTS / 16, LDLM_NBUF_MAX)
63 #define LDLM_BUFSIZE    (8 * 1024)
64 #define LDLM_MAXREQSIZE 1024
65
66 #define MDT_MAX_THREADS 32UL
67 #define MDT_NUM_THREADS min(num_physpages / 8192, MDT_MAX_THREADS)
68 #define MDS_NEVENT_MAX  8192UL
69 #define MDS_NEVENTS     min(num_physpages / 64, MDS_NEVENT_MAX)
70 #define MDS_NBUF_MAX    512UL
71 #define MDS_NBUFS       min(MDS_NEVENTS / 16, MDS_NBUF_MAX)
72 #define MDS_BUFSIZE     (8 * 1024)
73 /* Assume file name length = FNAME_MAX = 256 (true for extN).
74  *        path name length = PATH_MAX = 4096
75  *        LOV MD size max  = EA_MAX = 4000
76  * symlink:  FNAME_MAX + PATH_MAX  <- largest
77  * link:     FNAME_MAX + PATH_MAX  (mds_rec_link < mds_rec_create)
78  * rename:   FNAME_MAX + FNAME_MAX
79  * open:     FNAME_MAX + EA_MAX
80  *
81  * MDS_MAXREQSIZE ~= 4736 bytes =
82  * lustre_msg + ldlm_request + mds_body + mds_rec_create + FNAME_MAX + PATH_MAX
83  *
84  * Realistic size is about 512 bytes (20 character name + 128 char symlink),
85  * except in the open case where there are a large number of OSTs in a LOV.
86  */
87 #define MDS_MAXREQSIZE  (5 * 1024)
88
89 #define OST_MAX_THREADS 36UL
90 #define OST_NUM_THREADS min(num_physpages / 8192, OST_MAX_THREADS)
91 #define OST_NEVENT_MAX  32768UL
92 #define OST_NEVENTS     min(num_physpages / 16, OST_NEVENT_MAX)
93 #define OST_NBUF_MAX    1280UL
94 #define OST_NBUFS       min(OST_NEVENTS / 64, OST_NBUF_MAX)
95 #define OST_BUFSIZE     (8 * 1024)
96 /* OST_MAXREQSIZE ~= 1640 bytes =
97  * lustre_msg + obdo + 16 * obd_ioobj + 64 * niobuf_remote
98  *
99  * single object with 16 pages is 512 bytes
100  */
101 #define OST_MAXREQSIZE  (2 * 1024)
102
103 #define PTLBD_NUM_THREADS        4
104 #define PTLBD_NEVENTS    1024
105 #define PTLBD_NBUFS      20
106 #define PTLBD_BUFSIZE    (32 * 1024)
107 #define PTLBD_MAXREQSIZE 1024
108
109 #define CONN_INVALID 1
110
111 struct ptlrpc_peer {
112         ptl_nid_t         peer_nid;
113         struct ptlrpc_ni *peer_ni;
114 };
115
116 struct ptlrpc_connection {
117         struct list_head        c_link;
118         struct ptlrpc_peer      c_peer;
119         struct obd_uuid         c_local_uuid;  /* XXX do we need this? */
120         struct obd_uuid         c_remote_uuid;
121
122         __u32                   c_generation;  /* changes upon new connection */
123         __u32                   c_epoch;       /* changes when peer changes */
124         __u32                   c_bootcount;   /* peer's boot count */
125
126         spinlock_t              c_lock;
127
128         atomic_t                c_refcount;
129         __u64                   c_token;
130         __u64                   c_remote_conn;
131         __u64                   c_remote_token;
132
133         __u32                   c_flags; // can we indicate INVALID elsewhere?
134 };
135
136 struct ptlrpc_client {
137         __u32                     cli_request_portal;
138         __u32                     cli_reply_portal;
139
140         __u32                     cli_target_devno;
141
142         void                     *cli_data;
143         char                     *cli_name;
144 };
145
146 /* state flags of requests */
147 /* XXX only ones left are those used by the bulk descs as well! */
148 #define PTL_RPC_FL_INTR      (1 << 0)  /* reply wait was interrupted by user */
149 #define PTL_RPC_FL_TIMEOUT   (1 << 7)  /* request timed out waiting for reply */
150
151 #define REQ_MAX_ACK_LOCKS 4
152
153 #define SWAB_PARANOIA 1
154 #if SWAB_PARANOIA
155 /* unpacking: assert idx not unpacked already */
156 #define LASSERT_REQSWAB(rq, idx)                                \
157 do {                                                            \
158         LASSERT ((idx) < sizeof ((rq)->rq_req_swab_mask) * 8);  \
159         LASSERT (((rq)->rq_req_swab_mask & (1 << (idx))) == 0); \
160         (rq)->rq_req_swab_mask |= (1 << (idx));                 \
161 } while (0)
162
163 #define LASSERT_REPSWAB(rq, idx)                                \
164 do {                                                            \
165         LASSERT ((idx) < sizeof ((rq)->rq_rep_swab_mask) * 8);  \
166         LASSERT (((rq)->rq_rep_swab_mask & (1 << (idx))) == 0); \
167         (rq)->rq_rep_swab_mask |= (1 << (idx));                 \
168 } while (0)
169
170 /* just looking: assert idx already unpacked */
171 #define LASSERT_REQSWABBED(rq, idx)                     \
172 LASSERT ((idx) < sizeof ((rq)->rq_req_swab_mask) * 8 && \
173          ((rq)->rq_req_swab_mask & (1 << (idx))) != 0)
174
175 #define LASSERT_REPSWABBED(rq, idx)                     \
176 LASSERT ((idx) < sizeof ((rq)->rq_rep_swab_mask) * 8 && \
177          ((rq)->rq_rep_swab_mask & (1 << (idx))) != 0)
178 #else
179 #define LASSERT_REQSWAB(rq, idx)
180 #define LASSERT_REPSWAB(rq, idx)
181 #define LASSERT_REQSWABBED(rq, idx)
182 #define LASSERT_REPSWABBED(rq, idx)
183 #endif
184
185 union ptlrpc_async_args {
186         /* Scratchpad for passing args to completion interpreter. Users
187          * cast to the struct of their choosing, and LASSERT that this is
188          * big enough.  For _tons_ of context, OBD_ALLOC a struct and store
189          * a pointer to it here.  The pointer_arg ensures this struct is at
190          * least big enough for that. */
191         void      *pointer_arg[4];
192         __u64      space[4];
193 };
194
195 struct ptlrpc_request_set {
196         int               set_remaining; /* # uncompleted requests */
197         wait_queue_head_t set_waitq;
198         struct list_head  set_requests;
199         void             *set_interpret; /* completion callback */
200         union ptlrpc_async_args set_args; /* completion context */
201 };
202
203 struct ptlrpc_bulk_desc;
204
205 struct ptlrpc_request {
206         int rq_type; /* one of PTL_RPC_MSG_* */
207         struct list_head rq_list;
208         struct obd_device *rq_obd;
209         int rq_status;
210         spinlock_t rq_lock;
211         unsigned int rq_intr:1, rq_replied:1, rq_want_ack:1, rq_err:1,
212             rq_timedout:1, rq_resend:1, rq_restart:1, rq_replay:1,
213             rq_no_resend:1, rq_resent:1, rq_no_recov:1, rq_waiting:1,
214             rq_receiving_reply:1;
215         int rq_phase;
216                 
217         atomic_t rq_refcount;
218
219         int rq_request_portal; /* XXX FIXME bug 249 */
220         int rq_reply_portal; /* XXX FIXME bug 249 */
221
222         int rq_reqlen;
223         struct lustre_msg *rq_reqmsg;
224
225         int rq_timeout;
226         int rq_replen;
227         struct lustre_msg *rq_repmsg;
228         __u64 rq_transno;
229         __u64 rq_xid;
230
231 #if SWAB_PARANOIA
232         __u32 rq_req_swab_mask;
233         __u32 rq_rep_swab_mask;
234 #endif
235
236         int rq_import_generation;
237         int rq_level;
238         wait_queue_head_t rq_wait_for_rep; /* XXX also _for_ack */
239
240         /* incoming reply */
241         ptl_md_t rq_reply_md;
242         ptl_handle_md_t rq_reply_md_h;
243
244         /* outgoing req/rep */
245         ptl_md_t rq_req_md;
246
247         struct ptlrpc_peer rq_peer; /* XXX see service.c can this be factored away? */
248         struct obd_export *rq_export;
249         struct ptlrpc_connection *rq_connection;
250         struct obd_import *rq_import;
251         struct ptlrpc_service *rq_svc;
252
253         void (*rq_replay_cb)(struct ptlrpc_request *);
254         void  *rq_replay_data;
255
256         struct ptlrpc_bulk_desc *rq_bulk;       /* client side bulk */
257         time_t rq_sent;                         /* when the request was sent */
258
259         /* Multi-rpc bits */
260         struct list_head rq_set_chain;
261         struct ptlrpc_request_set *rq_set;
262         void *rq_interpret_reply;               /* Async completion handler */
263         union ptlrpc_async_args rq_async_args;  /* Async completion context */
264
265         /* Only used on the server side for tracking acks. */
266         struct ptlrpc_req_ack_lock {
267                 struct lustre_handle lock;
268                 __u32                mode;
269         } rq_ack_locks[REQ_MAX_ACK_LOCKS];
270 };
271
272 #define RQ_PHASE_NEW           0xebc0de00
273 #define RQ_PHASE_RPC           0xebc0de01
274 #define RQ_PHASE_BULK          0xebc0de02
275 #define RQ_PHASE_INTERPRET     0xebc0de03
276 #define RQ_PHASE_COMPLETE      0xebc0de04
277
278 /* Spare the preprocessor, spoil the bugs. */
279 #define FLAG(field, str) (field ? str : "")
280
281 #define DEBUG_REQ_FLAGS(req)                                                   \
282         ((req->rq_phase == RQ_PHASE_NEW) ? "New" :                             \
283          (req->rq_phase == RQ_PHASE_RPC) ? "RPC" :                             \
284          (req->rq_phase == RQ_PHASE_INTERPRET) ? "Interpret" :                 \
285          (req->rq_phase == RQ_PHASE_COMPLETE) ? "Complete" :                   \
286          (req->rq_phase == RQ_PHASE_BULK) ? "Bulk" : "?phase?"),               \
287         FLAG(req->rq_intr, "I"), FLAG(req->rq_replied, "R"),                   \
288         FLAG(req->rq_want_ack, "A"), FLAG(req->rq_err, "E"),                   \
289         FLAG(req->rq_timedout, "X") /* eXpired */, FLAG(req->rq_resend, "S"),  \
290         FLAG(req->rq_restart, "T"), FLAG(req->rq_replay, "P"),                 \
291         FLAG(req->rq_no_resend, "N"), FLAG(req->rq_resent, "s"),               \
292         FLAG(req->rq_no_recov, "n"), FLAG(req->rq_waiting, "W")
293
294 #define REQ_FLAGS_FMT "%s:%s%s%s%s%s%s%s%s%s%s%s%s"
295
296 #define DEBUG_REQ(level, req, fmt, args...)                                    \
297 do {                                                                           \
298 CDEBUG(level, "@@@ " fmt                                                       \
299        " req@%p x"LPD64"/t"LPD64" o%d->%s@%s:%d lens %d/%d ref %d fl "         \
300        REQ_FLAGS_FMT"/%x/%x rc %x\n" ,  ## args, req, req->rq_xid,             \
301        req->rq_reqmsg ? req->rq_reqmsg->transno : -1,                          \
302        req->rq_reqmsg ? req->rq_reqmsg->opc : -1,                              \
303        req->rq_import ? (char *)req->rq_import->imp_target_uuid.uuid : "<?>",  \
304        req->rq_connection ?                                                    \
305           (char *)req->rq_connection->c_remote_uuid.uuid : "<?>",              \
306        (req->rq_import && req->rq_import->imp_client) ?                        \
307            req->rq_import->imp_client->cli_request_portal : -1,                \
308        req->rq_reqlen, req->rq_replen,                                         \
309        atomic_read(&req->rq_refcount),                                         \
310        DEBUG_REQ_FLAGS(req),                                                   \
311        req->rq_reqmsg ? req->rq_reqmsg->flags : 0,                             \
312        req->rq_repmsg ? req->rq_repmsg->flags : 0,                             \
313        req->rq_status);                                                        \
314 } while (0)
315
316 struct ptlrpc_bulk_page {
317         struct ptlrpc_bulk_desc *bp_desc;
318         struct list_head bp_link;
319         int bp_buflen;
320         int bp_pageoffset;                      /* offset within a page */
321         struct page *bp_page;
322 };
323
324 #define BULK_GET_SOURCE   0
325 #define BULK_PUT_SINK     1
326 #define BULK_GET_SINK     2
327 #define BULK_PUT_SOURCE   3
328
329 struct ptlrpc_bulk_desc {
330         unsigned int bd_complete:1;
331         unsigned int bd_network_rw:1;           /* accessible to the network */
332         unsigned int bd_type:2;                 /* {put,get}{source,sink} */
333         unsigned int bd_registered:1;           /* client side */
334         spinlock_t   bd_lock;                   /* serialise with callback */
335         int bd_import_generation;
336         struct obd_export *bd_export;
337         struct obd_import *bd_import;
338         __u32 bd_portal;
339         struct ptlrpc_request *bd_req;          /* associated request */
340         wait_queue_head_t bd_waitq;             /* server side only WQ */
341         struct list_head bd_page_list;
342         __u32 bd_page_count;
343         __u32 bd_last_xid;
344         
345         ptl_md_t bd_md;
346         ptl_handle_md_t bd_md_h;
347         ptl_handle_me_t bd_me_h;
348
349         int bd_callback_count;                  /* server side callbacks */
350
351 #ifdef __KERNEL__
352         ptl_kiov_t bd_iov[16];    /* self-sized pre-allocated iov */
353 #else
354         struct iovec bd_iov[16];    /* self-sized pre-allocated iov */
355 #endif
356 };
357
358 struct ptlrpc_thread {
359         struct list_head t_link;
360
361         __u32 t_flags;
362         wait_queue_head_t t_ctl_waitq;
363 };
364
365 struct ptlrpc_request_buffer_desc {
366         struct list_head       rqbd_list;
367         struct ptlrpc_srv_ni  *rqbd_srv_ni;
368         ptl_handle_me_t        rqbd_me_h;
369         atomic_t               rqbd_refcount;
370         char                  *rqbd_buffer;
371 };
372
373 struct ptlrpc_ni {
374         /* Generic interface state */
375         char                   *pni_name;
376         int                     pni_number;
377         ptl_handle_ni_t         pni_ni_h;
378         ptl_handle_eq_t         pni_request_out_eq_h;
379         ptl_handle_eq_t         pni_reply_in_eq_h;
380         ptl_handle_eq_t         pni_reply_out_eq_h;
381         ptl_handle_eq_t         pni_bulk_put_source_eq_h;
382         ptl_handle_eq_t         pni_bulk_put_sink_eq_h;
383         ptl_handle_eq_t         pni_bulk_get_source_eq_h;
384         ptl_handle_eq_t         pni_bulk_get_sink_eq_h;
385 };
386
387 struct ptlrpc_srv_ni {
388         /* Interface-specific service state */
389         struct ptlrpc_service  *sni_service;    /* owning service */
390         struct ptlrpc_ni       *sni_ni;         /* network interface */
391         ptl_handle_eq_t         sni_eq_h;       /* event queue handle */
392         struct list_head        sni_rqbds;      /* all the request buffer descriptors */
393         __u32                   sni_nrqbds;     /* # request buffers */
394         atomic_t                sni_nrqbds_receiving; /* # request buffers posted */
395 };
396
397 struct ptlrpc_service {
398         time_t srv_time;
399         time_t srv_timeout;
400
401         struct list_head srv_ni_list;          /* list of interfaces */
402         __u32            srv_max_req_size;     /* biggest request to receive */
403         __u32            srv_buf_size;         /* # bytes in a request buffer */
404
405         __u32 srv_req_portal;
406         __u32 srv_rep_portal;
407
408         __u32 srv_xid;
409
410         wait_queue_head_t srv_waitq; /* all threads sleep on this */
411
412         spinlock_t srv_lock;
413         struct list_head srv_threads;
414         int (*srv_handler)(struct ptlrpc_request *req);
415         char *srv_name;  /* only statically allocated strings here; we don't clean them */
416         struct proc_dir_entry *svc_procroot;
417         struct lprocfs_stats  *svc_stats;
418
419         int                  srv_interface_rover;
420         struct ptlrpc_srv_ni srv_interfaces[0];
421 };
422
423 typedef int (*svc_handler_t)(struct ptlrpc_request *req);
424
425 /* ptlrpc/events.c */
426 extern struct ptlrpc_ni ptlrpc_interfaces[];
427 extern int              ptlrpc_ninterfaces;
428 extern int ptlrpc_uuid_to_peer(struct obd_uuid *uuid, struct ptlrpc_peer *peer);
429
430 /* ptlrpc/connection.c */
431 void ptlrpc_dump_connections(void);
432 void ptlrpc_readdress_connection(struct ptlrpc_connection *, struct obd_uuid *);
433 struct ptlrpc_connection *ptlrpc_get_connection(struct ptlrpc_peer *peer,
434                                                 struct obd_uuid *uuid);
435 int ptlrpc_put_connection(struct ptlrpc_connection *c);
436 struct ptlrpc_connection *ptlrpc_connection_addref(struct ptlrpc_connection *);
437 void ptlrpc_init_connection(void);
438 void ptlrpc_cleanup_connection(void);
439
440 /* ptlrpc/niobuf.c */
441 int ptlrpc_bulk_put(struct ptlrpc_bulk_desc *);
442 int ptlrpc_bulk_get(struct ptlrpc_bulk_desc *);
443 void ptlrpc_abort_bulk(struct ptlrpc_bulk_desc *bulk);
444 int ptlrpc_register_bulk(struct ptlrpc_request *req);
445 void ptlrpc_unregister_bulk (struct ptlrpc_request *req);
446
447 static inline int ptlrpc_bulk_complete (struct ptlrpc_bulk_desc *desc) 
448 {
449         unsigned long flags;
450         int           rc;
451
452         spin_lock_irqsave (&desc->bd_lock, flags);
453         rc = desc->bd_complete;
454         spin_unlock_irqrestore (&desc->bd_lock, flags);
455         return (rc);
456 }
457
458 int ptlrpc_reply(struct ptlrpc_request *req);
459 int ptlrpc_error(struct ptlrpc_request *req);
460 void ptlrpc_resend_req(struct ptlrpc_request *request);
461 int ptl_send_rpc(struct ptlrpc_request *request);
462 void ptlrpc_link_svc_me(struct ptlrpc_request_buffer_desc *rqbd);
463
464 /* ptlrpc/client.c */
465 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
466                         struct ptlrpc_client *);
467 void ptlrpc_cleanup_client(struct obd_import *imp);
468 struct obd_uuid *ptlrpc_req_to_uuid(struct ptlrpc_request *req);
469 struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid);
470
471 int ptlrpc_queue_wait(struct ptlrpc_request *req);
472 int ptlrpc_replay_req(struct ptlrpc_request *req);
473 void ptlrpc_unregister_reply(struct ptlrpc_request *req);
474 void ptlrpc_restart_req(struct ptlrpc_request *req);
475 void ptlrpc_abort_inflight(struct obd_import *imp);
476
477 struct ptlrpc_request_set *ptlrpc_prep_set(void);
478 int ptlrpc_set_wait(struct ptlrpc_request_set *);
479 void ptlrpc_set_destroy(struct ptlrpc_request_set *);
480 void ptlrpc_set_add_req(struct ptlrpc_request_set *, struct ptlrpc_request *);
481
482 struct ptlrpc_request *ptlrpc_prep_req(struct obd_import *imp, int opcode,
483                                        int count, int *lengths, char **bufs);
484 void ptlrpc_free_req(struct ptlrpc_request *request);
485 void ptlrpc_req_finished(struct ptlrpc_request *request);
486 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req);
487 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_imp (struct ptlrpc_request *req,
488                                                int type, int portal);
489 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_exp(struct ptlrpc_request *req,
490                                               int type, int portal);
491 void ptlrpc_free_bulk(struct ptlrpc_bulk_desc *bulk);
492 int ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc,
493                           struct page *page, int pageoffset, int len);
494 void ptlrpc_free_bulk_page(struct ptlrpc_bulk_page *page);
495 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
496                                       struct obd_import *imp);
497 __u64 ptlrpc_next_xid(void);
498
499 /* ptlrpc/ptlrpc_module.c */
500 void ptlrpc_put_ldlm_hooks(void);
501 int ptlrpc_ldlm_hooks_referenced(void);
502
503 /* ptlrpc/service.c */
504 struct ptlrpc_service *
505 ptlrpc_init_svc(__u32 nevents, __u32 nbufs, __u32 bufsize, __u32 max_req_size,
506                 int req_portal, int rep_portal, svc_handler_t, char *name,
507                 struct obd_device *dev);
508 void ptlrpc_stop_all_threads(struct ptlrpc_service *svc);
509 int ptlrpc_start_thread(struct obd_device *dev, struct ptlrpc_service *svc,
510                         char *name);
511 int ptlrpc_unregister_service(struct ptlrpc_service *service);
512
513 struct ptlrpc_svc_data {
514         char *name;
515         struct ptlrpc_service *svc;
516         struct ptlrpc_thread *thread;
517         struct obd_device *dev;
518 };
519
520 /* ptlrpc/pack_generic.c */
521 int lustre_pack_msg(int count, int *lens, char **bufs, int *len,
522                     struct lustre_msg **msg);
523 int lustre_msg_size(int count, int *lengths);
524 int lustre_unpack_msg(struct lustre_msg *m, int len);
525 void *lustre_msg_buf(struct lustre_msg *m, int n, int minlen);
526 char *lustre_msg_string (struct lustre_msg *m, int n, int max_len);
527 void *lustre_swab_reqbuf (struct ptlrpc_request *req, int n, int minlen,
528                           void *swabber);
529 void *lustre_swab_repbuf (struct ptlrpc_request *req, int n, int minlen,
530                           void *swabber);
531
532 /* ldlm/ldlm_lib.c */
533 int client_import_connect(struct lustre_handle *conn, struct obd_device *obd,
534                           struct obd_uuid *cluuid);
535 int client_import_disconnect(struct lustre_handle *conn, int failover);
536
537 /* ptlrpc/pinger.c */
538 int ptlrpc_pinger_add_import(struct obd_import *imp);
539 int ptlrpc_pinger_del_import(struct obd_import *imp);
540
541 #endif