Whamcloud - gitweb
b=17310
[fs/lustre-release.git] / lustre / include / lustre_net.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _LUSTRE_NET_H
38 #define _LUSTRE_NET_H
39
40 #if defined(__linux__)
41 #include <linux/lustre_net.h>
42 #elif defined(__APPLE__)
43 #include <darwin/lustre_net.h>
44 #elif defined(__WINNT__)
45 #include <winnt/lustre_net.h>
46 #else
47 #error Unsupported operating system.
48 #endif
49
50 #include <libcfs/libcfs.h>
51 // #include <obd.h>
52 #include <lnet/lnet.h>
53 #include <lustre/lustre_idl.h>
54 #include <lustre_ha.h>
55 #include <lustre_sec.h>
56 #include <lustre_import.h>
57 #include <lprocfs_status.h>
58 #include <lu_object.h>
59 #include <lustre_req_layout.h>
60
61 #include <obd_support.h>
62
63 /* MD flags we _always_ use */
64 #define PTLRPC_MD_OPTIONS  0
65
66 /* Define maxima for bulk I/O
67  * CAVEAT EMPTOR, with multinet (i.e. routers forwarding between networks)
68  * these limits are system wide and not interface-local. */
69 #define PTLRPC_MAX_BRW_BITS     LNET_MTU_BITS
70 #define PTLRPC_MAX_BRW_SIZE     (1<<LNET_MTU_BITS)
71 #define PTLRPC_MAX_BRW_PAGES    (PTLRPC_MAX_BRW_SIZE >> CFS_PAGE_SHIFT)
72
73 /* When PAGE_SIZE is a constant, we can check our arithmetic here with cpp! */
74 #ifdef __KERNEL__
75 # if ((PTLRPC_MAX_BRW_PAGES & (PTLRPC_MAX_BRW_PAGES - 1)) != 0)
76 #  error "PTLRPC_MAX_BRW_PAGES isn't a power of two"
77 # endif
78 # if (PTLRPC_MAX_BRW_SIZE != (PTLRPC_MAX_BRW_PAGES * CFS_PAGE_SIZE))
79 #  error "PTLRPC_MAX_BRW_SIZE isn't PTLRPC_MAX_BRW_PAGES * CFS_PAGE_SIZE"
80 # endif
81 # if (PTLRPC_MAX_BRW_SIZE > LNET_MTU)
82 #  error "PTLRPC_MAX_BRW_SIZE too big"
83 # endif
84 # if (PTLRPC_MAX_BRW_PAGES > LNET_MAX_IOV)
85 #  error "PTLRPC_MAX_BRW_PAGES too big"
86 # endif
87 #endif /* __KERNEL__ */
88
89 /* Size over which to OBD_VMALLOC() rather than OBD_ALLOC() service request
90  * buffers */
91 #define SVC_BUF_VMALLOC_THRESHOLD (2 * CFS_PAGE_SIZE)
92
93 /* The following constants determine how memory is used to buffer incoming
94  * service requests.
95  *
96  * ?_NBUFS              # buffers to allocate when growing the pool
97  * ?_BUFSIZE            # bytes in a single request buffer
98  * ?_MAXREQSIZE         # maximum request service will receive
99  *
100  * When fewer than ?_NBUFS/2 buffers are posted for receive, another chunk
101  * of ?_NBUFS is added to the pool.
102  *
103  * Messages larger than ?_MAXREQSIZE are dropped.  Request buffers are
104  * considered full when less than ?_MAXREQSIZE is left in them.
105  */
106
107 #define LDLM_THREADS_AUTO_MIN                                                 \
108         min((int)(num_online_cpus() * num_online_cpus() * 2), 8)
109 #define LDLM_THREADS_AUTO_MAX (LDLM_THREADS_AUTO_MIN * 16)
110 #define LDLM_BL_THREADS  LDLM_THREADS_AUTO_MIN
111 #define LDLM_NBUFS      (64 * num_online_cpus())
112 #define LDLM_BUFSIZE    (8 * 1024)
113 #define LDLM_MAXREQSIZE (5 * 1024)
114 #define LDLM_MAXREPSIZE (1024)
115
116 #define MDT_MIN_THREADS 2UL
117 #define MDT_MAX_THREADS 512UL
118 #define MDT_NUM_THREADS max(min_t(unsigned long, MDT_MAX_THREADS, \
119                                   num_physpages >> (25 - CFS_PAGE_SHIFT)), 2UL)
120 #define FLD_NUM_THREADS max(min_t(unsigned long, MDT_MAX_THREADS, \
121                                   num_physpages >> (25 - CFS_PAGE_SHIFT)), 2UL)
122 #define SEQ_NUM_THREADS max(min_t(unsigned long, MDT_MAX_THREADS, \
123                                   num_physpages >> (25 - CFS_PAGE_SHIFT)), 2UL)
124
125 /* Absolute limits */
126 #define MDS_THREADS_MIN 2
127 #define MDS_THREADS_MAX 512
128 #define MDS_THREADS_MIN_READPAGE 2
129 #define MDS_NBUFS       (64 * num_online_cpus())
130 #define MDS_BUFSIZE     (8 * 1024)
131 /* Assume file name length = FNAME_MAX = 256 (true for ext3).
132  *        path name length = PATH_MAX = 4096
133  *        LOV MD size max  = EA_MAX = 4000
134  * symlink:  FNAME_MAX + PATH_MAX  <- largest
135  * link:     FNAME_MAX + PATH_MAX  (mds_rec_link < mds_rec_create)
136  * rename:   FNAME_MAX + FNAME_MAX
137  * open:     FNAME_MAX + EA_MAX
138  *
139  * MDS_MAXREQSIZE ~= 4736 bytes =
140  * lustre_msg + ldlm_request + mds_body + mds_rec_create + FNAME_MAX + PATH_MAX
141  * MDS_MAXREPSIZE ~= 8300 bytes = lustre_msg + llog_header
142  * or, for mds_close() and mds_reint_unlink() on a many-OST filesystem:
143  *      = 9210 bytes = lustre_msg + mds_body + 160 * (easize + cookiesize)
144  *
145  * Realistic size is about 512 bytes (20 character name + 128 char symlink),
146  * except in the open case where there are a large number of OSTs in a LOV.
147  */
148 #define MDS_MAXREQSIZE  (5 * 1024)
149 #define MDS_MAXREPSIZE  max(9 * 1024, 280 + LOV_MAX_STRIPE_COUNT * 56)
150
151 /* FLD_MAXREQSIZE == lustre_msg + __u32 padding + ptlrpc_body + opc + md_fld */
152 #define FLD_MAXREQSIZE  (160)
153
154 /* FLD_MAXREPSIZE == lustre_msg + ptlrpc_body + md_fld */
155 #define FLD_MAXREPSIZE  (152)
156
157 /* SEQ_MAXREQSIZE == lustre_msg + __u32 padding + ptlrpc_body + opc + lu_range +
158  * __u32 padding */
159 #define SEQ_MAXREQSIZE  (160)
160
161 /* SEQ_MAXREPSIZE == lustre_msg + ptlrpc_body + lu_range */
162 #define SEQ_MAXREPSIZE  (152)
163
164 #define MGS_THREADS_AUTO_MIN 2
165 #define MGS_THREADS_AUTO_MAX 32
166 #define MGS_NBUFS       (64 * num_online_cpus())
167 #define MGS_BUFSIZE     (8 * 1024)
168 #define MGS_MAXREQSIZE  (7 * 1024)
169 #define MGS_MAXREPSIZE  (9 * 1024)
170
171 /* Absolute limits */
172 #define OSS_THREADS_MIN 2
173 #define OSS_THREADS_MAX 512
174 #define OST_NBUFS       (64 * num_online_cpus())
175 #define OST_BUFSIZE     (8 * 1024)
176 /* OST_MAXREQSIZE ~= 4768 bytes =
177  * lustre_msg + obdo + 16 * obd_ioobj + 256 * niobuf_remote
178  *
179  * - single object with 16 pages is 512 bytes
180  * - OST_MAXREQSIZE must be at least 1 page of cookies plus some spillover
181  */
182 #define OST_MAXREQSIZE  (5 * 1024)
183 #define OST_MAXREPSIZE  (9 * 1024)
184
185 /* Macro to hide a typecast. */
186 #define ptlrpc_req_async_args(req) ((void *)&req->rq_async_args)
187
188 struct ptlrpc_connection {
189         struct hlist_node       c_hash;
190         lnet_nid_t              c_self;
191         lnet_process_id_t       c_peer;
192         struct obd_uuid         c_remote_uuid;
193         atomic_t                c_refcount;
194 };
195
196 struct ptlrpc_client {
197         __u32                   cli_request_portal;
198         __u32                   cli_reply_portal;
199         char                   *cli_name;
200 };
201
202 /* state flags of requests */
203 /* XXX only ones left are those used by the bulk descs as well! */
204 #define PTL_RPC_FL_INTR      (1 << 0)  /* reply wait was interrupted by user */
205 #define PTL_RPC_FL_TIMEOUT   (1 << 7)  /* request timed out waiting for reply */
206
207 #define REQ_MAX_ACK_LOCKS 8
208
209 union ptlrpc_async_args {
210         /* Scratchpad for passing args to completion interpreter. Users
211          * cast to the struct of their choosing, and LASSERT that this is
212          * big enough.  For _tons_ of context, OBD_ALLOC a struct and store
213          * a pointer to it here.  The pointer_arg ensures this struct is at
214          * least big enough for that. */
215         void      *pointer_arg[9];
216         __u64      space[4];
217 };
218
219 struct ptlrpc_request_set;
220 typedef int (*set_interpreter_func)(struct ptlrpc_request_set *, void *, int);
221
222 struct ptlrpc_request_set {
223         int               set_remaining; /* # uncompleted requests */
224         cfs_waitq_t       set_waitq;
225         cfs_waitq_t      *set_wakeup_ptr;
226         struct list_head  set_requests;
227         struct list_head  set_cblist; /* list of completion callbacks */
228         set_interpreter_func    set_interpret; /* completion callback */
229         void              *set_arg; /* completion context */
230         /* locked so that any old caller can communicate requests to
231          * the set holder who can then fold them into the lock-free set */
232         spinlock_t        set_new_req_lock;
233         struct list_head  set_new_requests;
234 };
235
236 struct ptlrpc_set_cbdata {
237         struct list_head        psc_item;
238         set_interpreter_func    psc_interpret;
239         void                   *psc_data;
240 };
241
242 struct ptlrpc_bulk_desc;
243
244 /*
245  * ptlrpc callback & work item stuff
246  */
247 struct ptlrpc_cb_id {
248         void   (*cbid_fn)(lnet_event_t *ev);     /* specific callback fn */
249         void    *cbid_arg;                      /* additional arg */
250 };
251
252 #define RS_MAX_LOCKS 8
253 #define RS_DEBUG     1
254
255 struct ptlrpc_reply_state {
256         struct ptlrpc_cb_id    rs_cb_id;
257         struct list_head       rs_list;
258         struct list_head       rs_exp_list;
259         struct list_head       rs_obd_list;
260 #if RS_DEBUG
261         struct list_head       rs_debug_list;
262 #endif
263         /* updates to following flag serialised by srv_request_lock */
264         unsigned long          rs_difficult:1;     /* ACK/commit stuff */
265         unsigned long          rs_no_ack:1;    /* no ACK, even for
266                                                   difficult requests */
267         unsigned long          rs_scheduled:1;     /* being handled? */
268         unsigned long          rs_scheduled_ever:1;/* any schedule attempts? */
269         unsigned long          rs_handled:1;  /* been handled yet? */
270         unsigned long          rs_on_net:1;   /* reply_out_callback pending? */
271         unsigned long          rs_prealloc:1; /* rs from prealloc list */
272
273         int                    rs_size;
274         __u64                  rs_transno;
275         __u64                  rs_xid;
276         struct obd_export     *rs_export;
277         struct ptlrpc_service *rs_service;
278         lnet_handle_md_t       rs_md_h;
279         atomic_t               rs_refcount;
280
281         struct ptlrpc_svc_ctx *rs_svc_ctx;
282         struct lustre_msg     *rs_repbuf;       /* wrapper */
283         int                    rs_repbuf_len;   /* wrapper buf length */
284         int                    rs_repdata_len;  /* wrapper msg length */
285         struct lustre_msg     *rs_msg;          /* reply message */
286
287         /* locks awaiting client reply ACK */
288         int                    rs_nlocks;
289         struct lustre_handle   rs_locks[RS_MAX_LOCKS];
290         ldlm_mode_t            rs_modes[RS_MAX_LOCKS];
291 };
292
293 struct ptlrpc_thread;
294
295 enum rq_phase {
296         RQ_PHASE_NEW            = 0xebc0de00,
297         RQ_PHASE_RPC            = 0xebc0de01,
298         RQ_PHASE_BULK           = 0xebc0de02,
299         RQ_PHASE_INTERPRET      = 0xebc0de03,
300         RQ_PHASE_COMPLETE       = 0xebc0de04,
301         RQ_PHASE_UNREGISTERING  = 0xebc0de05,
302         RQ_PHASE_UNDEFINED      = 0xebc0de06
303 };
304
305 /** Type of request interpreter call-back */
306 typedef int (*ptlrpc_interpterer_t)(const struct lu_env *env,
307                                     struct ptlrpc_request *req,
308                                     void *arg, int rc);
309
310 struct ptlrpc_request_pool {
311         spinlock_t prp_lock;
312         struct list_head prp_req_list;    /* list of ptlrpc_request structs */
313         int prp_rq_size;
314         void (*prp_populate)(struct ptlrpc_request_pool *, int);
315 };
316
317 struct lu_context;
318 struct lu_env;
319
320 /**
321  * Represents remote procedure call.
322  */
323 struct ptlrpc_request {
324         int rq_type; /* one of PTL_RPC_MSG_* */
325         struct list_head rq_list;
326         struct list_head rq_timed_list;         /* server-side early replies */
327         struct list_head rq_history_list;       /* server-side history */
328         __u64            rq_history_seq;        /* history sequence # */
329         int rq_status;
330         spinlock_t rq_lock;
331         /* client-side flags are serialized by rq_lock */
332         unsigned long rq_intr:1, rq_replied:1, rq_err:1,
333                 rq_timedout:1, rq_resend:1, rq_restart:1,
334                 /*
335                  * when ->rq_replay is set, request is kept by the client even
336                  * after server commits corresponding transaction. This is
337                  * used for operations that require sequence of multiple
338                  * requests to be replayed. The only example currently is file
339                  * open/close/dw/setattr. When last request in such a sequence
340                  * is committed, ->rq_replay is cleared on all requests in the
341                  * sequence.
342                  */
343                 rq_replay:1,
344                 /* this is the last request in the sequence. */
345                 rq_sequence:1,
346                 rq_no_resend:1, rq_waiting:1, rq_receiving_reply:1,
347                 rq_no_delay:1, rq_net_err:1, rq_wait_ctx:1,
348                 rq_early:1, rq_must_unlink:1,
349                 /* server-side flags */
350                 rq_packed_final:1,  /* packed final reply */
351                 rq_sent_final:1;    /* stop sending early replies */
352
353         enum rq_phase rq_phase; /* one of RQ_PHASE_* */
354         enum rq_phase rq_next_phase; /* one of RQ_PHASE_* to be used next */
355         atomic_t rq_refcount;   /* client-side refcount for SENT race,
356                                    server-side refcounf for multiple replies */
357
358         struct ptlrpc_thread *rq_svc_thread; /* initial thread servicing req */
359
360         int rq_request_portal;  /* XXX FIXME bug 249 */
361         int rq_reply_portal;    /* XXX FIXME bug 249 */
362
363         int rq_nob_received; /* client-side # reply bytes actually received  */
364
365         int rq_reqlen;
366         struct lustre_msg *rq_reqmsg;
367
368         int rq_replen;
369         struct lustre_msg *rq_repmsg;
370         __u64 rq_transno;
371         __u64 rq_xid;
372         struct list_head rq_replay_list;
373         struct list_head rq_mod_list;
374
375         struct ptlrpc_cli_ctx   *rq_cli_ctx;     /* client's half ctx */
376         struct ptlrpc_svc_ctx   *rq_svc_ctx;     /* server's half ctx */
377         struct list_head         rq_ctx_chain;   /* link to waited ctx */
378
379         struct sptlrpc_flavor    rq_flvr;        /* client & server */
380         enum lustre_sec_part     rq_sp_from;
381
382         unsigned long            /* client/server security flags */
383                                  rq_ctx_init:1,      /* context initiation */
384                                  rq_ctx_fini:1,      /* context destroy */
385                                  rq_bulk_read:1,     /* request bulk read */
386                                  rq_bulk_write:1,    /* request bulk write */
387                                  /* server authentication flags */
388                                  rq_auth_gss:1,      /* authenticated by gss */
389                                  rq_auth_remote:1,   /* authed as remote user */
390                                  rq_auth_usr_root:1, /* authed as root */
391                                  rq_auth_usr_mdt:1,  /* authed as mdt */
392                                  /* security tfm flags */
393                                  rq_pack_udesc:1,
394                                  rq_pack_bulk:1,
395                                  /* doesn't expect reply FIXME */
396                                  rq_no_reply:1;
397
398         uid_t                    rq_auth_uid;        /* authed uid */
399         uid_t                    rq_auth_mapped_uid; /* authed uid mapped to */
400
401         /* (server side), pointed directly into req buffer */
402         struct ptlrpc_user_desc *rq_user_desc;
403
404         /* early replies go to offset 0, regular replies go after that */
405         unsigned int             rq_reply_off;
406
407         /* various buffer pointers */
408         struct lustre_msg       *rq_reqbuf;      /* req wrapper */
409         int                      rq_reqbuf_len;  /* req wrapper buf len */
410         int                      rq_reqdata_len; /* req wrapper msg len */
411         char                    *rq_repbuf;      /* rep buffer */
412         int                      rq_repbuf_len;  /* rep buffer len */
413         struct lustre_msg       *rq_repdata;     /* rep wrapper msg */
414         int                      rq_repdata_len; /* rep wrapper msg len */
415         struct lustre_msg       *rq_clrbuf;      /* only in priv mode */
416         int                      rq_clrbuf_len;  /* only in priv mode */
417         int                      rq_clrdata_len; /* only in priv mode */
418
419         __u32 rq_req_swab_mask;
420         __u32 rq_rep_swab_mask;
421
422         int rq_import_generation;
423         enum lustre_imp_state rq_send_state;
424
425         int rq_early_count;           /* how many early replies (for stats) */
426
427         /* client+server request */
428         lnet_handle_md_t     rq_req_md_h;
429         struct ptlrpc_cb_id  rq_req_cbid;
430
431         /* server-side... */
432         struct timeval       rq_arrival_time;       /* request arrival time */
433         struct ptlrpc_reply_state *rq_reply_state;  /* separated reply state */
434         struct ptlrpc_request_buffer_desc *rq_rqbd; /* incoming request buffer*/
435 #ifdef CRAY_XT3
436         __u32                rq_uid;            /* peer uid, used in MDS only */
437 #endif
438
439         /* client-only incoming reply */
440         lnet_handle_md_t     rq_reply_md_h;
441         cfs_waitq_t          rq_reply_waitq;
442         struct ptlrpc_cb_id  rq_reply_cbid;
443
444         lnet_nid_t           rq_self;
445         lnet_process_id_t    rq_peer;
446         struct obd_export   *rq_export;
447         struct obd_import   *rq_import;
448
449         void (*rq_replay_cb)(struct ptlrpc_request *);
450         void (*rq_commit_cb)(struct ptlrpc_request *);
451         void  *rq_cb_data;
452
453         struct ptlrpc_bulk_desc *rq_bulk;/* client side bulk */
454
455         /* client outgoing req */
456         time_t rq_sent;                  /* when request/reply sent (secs), or
457                                           * time when request should be sent */
458
459         volatile time_t rq_deadline;     /* when request must finish. volatile
460                so that servers' early reply updates to the deadline aren't
461                kept in per-cpu cache */
462         time_t rq_reply_deadline;        /* when req reply unlink must finish. */
463         int    rq_timeout;               /* service time estimate (secs) */
464
465         /* Multi-rpc bits */
466         struct list_head rq_set_chain;
467         struct ptlrpc_request_set *rq_set;
468         /** Async completion handler */
469         ptlrpc_interpterer_t rq_interpret_reply;
470         union ptlrpc_async_args rq_async_args;  /* Async completion context */
471         struct ptlrpc_request_pool *rq_pool;    /* Pool if request from
472                                                    preallocated list */
473         struct lu_context           rq_session;
474
475         /* request format */
476         struct req_capsule          rq_pill;
477 };
478
479 static inline void ptlrpc_close_replay_seq(struct ptlrpc_request *req)
480 {
481         spin_lock(&req->rq_lock);
482         req->rq_replay = 0;
483         req->rq_sequence = 1;
484         spin_unlock(&req->rq_lock);
485 }
486
487 static inline void lustre_set_req_swabbed(struct ptlrpc_request *req, int index)
488 {
489         LASSERT(index < sizeof(req->rq_req_swab_mask) * 8);
490         LASSERT((req->rq_req_swab_mask & (1 << index)) == 0);
491         req->rq_req_swab_mask |= 1 << index;
492 }
493
494 static inline void lustre_set_rep_swabbed(struct ptlrpc_request *req, int index)
495 {
496         LASSERT(index < sizeof(req->rq_rep_swab_mask) * 8);
497         LASSERT((req->rq_rep_swab_mask & (1 << index)) == 0);
498         req->rq_rep_swab_mask |= 1 << index;
499 }
500
501 static inline int lustre_req_swabbed(struct ptlrpc_request *req, int index)
502 {
503         LASSERT(index < sizeof(req->rq_req_swab_mask) * 8);
504         return req->rq_req_swab_mask & (1 << index);
505 }
506
507 static inline int lustre_rep_swabbed(struct ptlrpc_request *req, int index)
508 {
509         LASSERT(index < sizeof(req->rq_rep_swab_mask) * 8);
510         return req->rq_rep_swab_mask & (1 << index);
511 }
512
513 static inline const char *
514 ptlrpc_phase2str(enum rq_phase phase)
515 {
516         switch (phase) {
517         case RQ_PHASE_NEW:
518                 return "New";
519         case RQ_PHASE_RPC:
520                 return "Rpc";
521         case RQ_PHASE_BULK:
522                 return "Bulk";
523         case RQ_PHASE_INTERPRET:
524                 return "Interpret";
525         case RQ_PHASE_COMPLETE:
526                 return "Complete";
527         case RQ_PHASE_UNREGISTERING:
528                 return "Unregistering";
529         default:
530                 return "?Phase?";
531         }
532 }
533
534 static inline const char *
535 ptlrpc_rqphase2str(struct ptlrpc_request *req)
536 {
537         return ptlrpc_phase2str(req->rq_phase);
538 }
539
540 /* Spare the preprocessor, spoil the bugs. */
541 #define FLAG(field, str) (field ? str : "")
542
543 #define DEBUG_REQ_FLAGS(req)                                                    \
544         ptlrpc_rqphase2str(req),                                                \
545         FLAG(req->rq_intr, "I"), FLAG(req->rq_replied, "R"),                    \
546         FLAG(req->rq_err, "E"),                                                 \
547         FLAG(req->rq_timedout, "X") /* eXpired */, FLAG(req->rq_resend, "S"),   \
548         FLAG(req->rq_restart, "T"), FLAG(req->rq_replay, "P"),                  \
549         FLAG(req->rq_no_resend, "N"),                                           \
550         FLAG(req->rq_waiting, "W"),                                             \
551         FLAG(req->rq_wait_ctx, "C")
552
553 #define REQ_FLAGS_FMT "%s:%s%s%s%s%s%s%s%s%s%s"
554
555 void _debug_req(struct ptlrpc_request *req, __u32 mask,
556                 struct libcfs_debug_msg_data *data, const char *fmt, ...)
557         __attribute__ ((format (printf, 4, 5)));
558
559 #define debug_req(cdls, level, req, file, func, line, fmt, a...)              \
560 do {                                                                          \
561         CHECK_STACK();                                                        \
562                                                                               \
563         if (((level) & D_CANTMASK) != 0 ||                                    \
564             ((libcfs_debug & (level)) != 0 &&                                 \
565              (libcfs_subsystem_debug & DEBUG_SUBSYSTEM) != 0)) {              \
566                 static struct libcfs_debug_msg_data _req_dbg_data =           \
567                 DEBUG_MSG_DATA_INIT(cdls, DEBUG_SUBSYSTEM, file, func, line); \
568                 _debug_req((req), (level), &_req_dbg_data, fmt, ##a);         \
569         }                                                                     \
570 } while(0)
571
572 /* for most callers (level is a constant) this is resolved at compile time */
573 #define DEBUG_REQ(level, req, fmt, args...)                                   \
574 do {                                                                          \
575         if ((level) & (D_ERROR | D_WARNING)) {                                \
576                 static cfs_debug_limit_state_t cdls;                          \
577                 debug_req(&cdls, level, req, __FILE__, __func__, __LINE__,    \
578                           "@@@ "fmt" ", ## args);                             \
579         } else                                                                \
580                 debug_req(NULL, level, req, __FILE__, __func__, __LINE__,     \
581                           "@@@ "fmt" ", ## args);                             \
582 } while (0)
583
584 struct ptlrpc_bulk_page {
585         struct list_head bp_link;
586         int              bp_buflen;
587         int              bp_pageoffset; /* offset within a page */
588         struct page     *bp_page;
589 };
590
591 #define BULK_GET_SOURCE   0
592 #define BULK_PUT_SINK     1
593 #define BULK_GET_SINK     2
594 #define BULK_PUT_SOURCE   3
595
596 struct ptlrpc_bulk_desc {
597         unsigned long bd_success:1;              /* completed successfully */
598         unsigned long bd_network_rw:1;           /* accessible to the network */
599         unsigned long bd_type:2;                 /* {put,get}{source,sink} */
600         unsigned long bd_registered:1;           /* client side */
601         spinlock_t   bd_lock;                   /* serialise with callback */
602         int bd_import_generation;
603         struct obd_export *bd_export;
604         struct obd_import *bd_import;
605         __u32 bd_portal;
606         struct ptlrpc_request *bd_req;          /* associated request */
607         cfs_waitq_t            bd_waitq;        /* server side only WQ */
608         int                    bd_iov_count;    /* # entries in bd_iov */
609         int                    bd_max_iov;      /* allocated size of bd_iov */
610         int                    bd_nob;          /* # bytes covered */
611         int                    bd_nob_transferred; /* # bytes GOT/PUT */
612
613         __u64                  bd_last_xid;
614
615         struct ptlrpc_cb_id    bd_cbid;         /* network callback info */
616         lnet_handle_md_t       bd_md_h;         /* associated MD */
617         lnet_nid_t             bd_sender;       /* stash event::sender */
618
619         cfs_page_t           **bd_enc_pages;
620 #if defined(__KERNEL__)
621         lnet_kiov_t            bd_iov[0];
622 #else
623         lnet_md_iovec_t        bd_iov[0];
624 #endif
625 };
626
627 struct ptlrpc_thread {
628
629         struct list_head t_link; /* active threads in svc->srv_threads */
630
631         void *t_data;            /* thread-private data (preallocated memory) */
632         __u32 t_flags;
633
634         unsigned int t_id; /* service thread index, from ptlrpc_start_threads */
635         cfs_waitq_t t_ctl_waitq;
636         struct lu_env *t_env;
637 };
638
639 struct ptlrpc_request_buffer_desc {
640         struct list_head       rqbd_list;
641         struct list_head       rqbd_reqs;
642         struct ptlrpc_service *rqbd_service;
643         lnet_handle_md_t       rqbd_md_h;
644         int                    rqbd_refcount;
645         char                  *rqbd_buffer;
646         struct ptlrpc_cb_id    rqbd_cbid;
647         struct ptlrpc_request  rqbd_req;
648 };
649
650 typedef int (*svc_handler_t)(struct ptlrpc_request *req);
651 typedef void (*svcreq_printfn_t)(void *, struct ptlrpc_request *);
652
653 struct ptlrpc_service {
654         struct list_head srv_list;              /* chain thru all services */
655         int              srv_max_req_size;      /* biggest request to receive */
656         int              srv_max_reply_size;    /* biggest reply to send */
657         int              srv_buf_size;          /* size of individual buffers */
658         int              srv_nbuf_per_group;    /* # buffers to allocate in 1 group */
659         int              srv_nbufs;             /* total # req buffer descs allocated */
660         int              srv_threads_min;       /* threads to start at SOW */
661         int              srv_threads_max;       /* thread upper limit */
662         int              srv_threads_started;   /* index of last started thread */
663         int              srv_threads_running;   /* # running threads */
664         int              srv_n_difficult_replies; /* # 'difficult' replies */
665         int              srv_n_active_reqs;     /* # reqs being served */
666         cfs_duration_t   srv_rqbd_timeout;      /* timeout before re-posting reqs, in tick */
667         int              srv_watchdog_factor;   /* soft watchdog timeout mutiplier */
668         unsigned         srv_cpu_affinity:1;    /* bind threads to CPUs */
669         unsigned         srv_at_check:1;        /* check early replies */
670         unsigned         srv_is_stopping:1;     /* under unregister_service */
671         cfs_time_t       srv_at_checktime;      /* debug */
672
673         __u32            srv_req_portal;
674         __u32            srv_rep_portal;
675
676         /* AT stuff */
677         struct adaptive_timeout srv_at_estimate;/* estimated rpc service time */
678         spinlock_t        srv_at_lock;
679         struct list_head  srv_at_list;          /* reqs waiting for replies */
680         cfs_timer_t       srv_at_timer;         /* early reply timer */
681
682         int               srv_n_queued_reqs;    /* # reqs in either of the queues below */
683         struct list_head  srv_req_in_queue;     /* incoming reqs */
684         struct list_head  srv_request_queue;    /* reqs waiting for service */
685
686         struct list_head  srv_request_history;  /* request history */
687         __u64             srv_request_seq;      /* next request sequence # */
688         __u64             srv_request_max_cull_seq; /* highest seq culled from history */
689         svcreq_printfn_t  srv_request_history_print_fn; /* service-specific print fn */
690
691         struct list_head  srv_idle_rqbds;       /* request buffers to be reposted */
692         struct list_head  srv_active_rqbds;     /* req buffers receiving */
693         struct list_head  srv_history_rqbds;    /* request buffer history */
694         int               srv_nrqbd_receiving;  /* # posted request buffers */
695         int               srv_n_history_rqbds;  /* # request buffers in history */
696         int               srv_max_history_rqbds;/* max # request buffers in history */
697
698         atomic_t          srv_outstanding_replies;
699         struct list_head  srv_active_replies;   /* all the active replies */
700         struct list_head  srv_reply_queue;      /* replies waiting for service */
701
702         cfs_waitq_t       srv_waitq; /* all threads sleep on this. This
703                                       * wait-queue is signalled when new
704                                       * incoming request arrives and when
705                                       * difficult reply has to be handled. */
706
707         struct list_head   srv_threads;         /* service thread list */
708         svc_handler_t      srv_handler;
709
710         char *srv_name; /* only statically allocated strings here; we don't clean them */
711         char *srv_thread_name; /* only statically allocated strings here; we don't clean them */
712
713         spinlock_t               srv_lock;
714
715         cfs_proc_dir_entry_t    *srv_procroot;
716         struct lprocfs_stats    *srv_stats;
717
718         /* List of free reply_states */
719         struct list_head         srv_free_rs_list;
720         /* waitq to run, when adding stuff to srv_free_rs_list */
721         cfs_waitq_t              srv_free_rs_waitq;
722
723         /*
724          * Tags for lu_context associated with this thread, see struct
725          * lu_context.
726          */
727         __u32                    srv_ctx_tags;
728         /*
729          * if non-NULL called during thread creation (ptlrpc_start_thread())
730          * to initialize service specific per-thread state.
731          */
732         int (*srv_init)(struct ptlrpc_thread *thread);
733         /*
734          * if non-NULL called during thread shutdown (ptlrpc_main()) to
735          * destruct state created by ->srv_init().
736          */
737         void (*srv_done)(struct ptlrpc_thread *thread);
738
739         //struct ptlrpc_srv_ni srv_interfaces[0];
740 };
741
742 struct ptlrpcd_ctl {
743         /**
744          * Ptlrpc thread control flags (LIOD_START, LIOD_STOP, LIOD_STOP_FORCE)
745          */
746         unsigned long               pc_flags;
747         /**
748          * Thread lock protecting structure fields.
749          */
750         spinlock_t                  pc_lock;
751         /**
752          * Start completion.
753          */
754         struct completion           pc_starting;
755         /**
756          * Stop completion.
757          */
758         struct completion           pc_finishing;
759         /**
760          * Thread requests set.
761          */
762         struct ptlrpc_request_set  *pc_set;
763         /**
764          * Thread name used in cfs_daemonize()
765          */
766         char                        pc_name[16];
767         /**
768          * Environment for request interpreters to run in.
769          */
770         struct lu_env               pc_env;
771 #ifndef __KERNEL__
772         /**
773          * Async rpcs flag to make sure that ptlrpcd_check() is called only
774          * once.
775          */
776         int                         pc_recurred;
777         /**
778          * Currently not used.
779          */
780         void                       *pc_callback;
781         /**
782          * User-space async rpcs callback.
783          */
784         void                       *pc_wait_callback;
785         /**
786          * User-space check idle rpcs callback.
787          */
788         void                       *pc_idle_callback;
789 #endif
790 };
791
792 /* Bits for pc_flags */
793 enum ptlrpcd_ctl_flags {
794         /**
795          * Ptlrpc thread start flag.
796          */
797         LIOD_START       = 1 << 0,
798         /**
799          * Ptlrpc thread stop flag.
800          */
801         LIOD_STOP        = 1 << 1,
802         /**
803          * Ptlrpc thread stop force flag. This will cause also
804          * aborting any inflight rpcs handled by thread.
805          */
806         LIOD_STOP_FORCE  = 1 << 2
807 };
808
809 /* ptlrpc/events.c */
810 extern lnet_handle_eq_t ptlrpc_eq_h;
811 extern int ptlrpc_uuid_to_peer(struct obd_uuid *uuid,
812                                lnet_process_id_t *peer, lnet_nid_t *self);
813 extern void request_out_callback (lnet_event_t *ev);
814 extern void reply_in_callback(lnet_event_t *ev);
815 extern void client_bulk_callback (lnet_event_t *ev);
816 extern void request_in_callback(lnet_event_t *ev);
817 extern void reply_out_callback(lnet_event_t *ev);
818 extern void server_bulk_callback (lnet_event_t *ev);
819
820 /* ptlrpc/connection.c */
821 struct ptlrpc_connection *ptlrpc_connection_get(lnet_process_id_t peer,
822                                                 lnet_nid_t self,
823                                                 struct obd_uuid *uuid);
824 int ptlrpc_connection_put(struct ptlrpc_connection *c);
825 struct ptlrpc_connection *ptlrpc_connection_addref(struct ptlrpc_connection *);
826 int ptlrpc_connection_init(void);
827 void ptlrpc_connection_fini(void);
828 extern lnet_pid_t ptl_get_pid(void);
829
830 /* ptlrpc/niobuf.c */
831 int ptlrpc_start_bulk_transfer(struct ptlrpc_bulk_desc *desc);
832 void ptlrpc_abort_bulk(struct ptlrpc_bulk_desc *desc);
833 int ptlrpc_register_bulk(struct ptlrpc_request *req);
834 void ptlrpc_unregister_bulk (struct ptlrpc_request *req);
835
836 static inline int ptlrpc_bulk_active (struct ptlrpc_bulk_desc *desc)
837 {
838         int           rc;
839
840         spin_lock(&desc->bd_lock);
841         rc = desc->bd_network_rw;
842         spin_unlock(&desc->bd_lock);
843         return (rc);
844 }
845
846 #define PTLRPC_REPLY_MAYBE_DIFFICULT 0x01
847 #define PTLRPC_REPLY_EARLY           0x02
848 int ptlrpc_send_reply(struct ptlrpc_request *req, int flags);
849 int ptlrpc_reply(struct ptlrpc_request *req);
850 int ptlrpc_send_error(struct ptlrpc_request *req, int difficult);
851 int ptlrpc_error(struct ptlrpc_request *req);
852 void ptlrpc_resend_req(struct ptlrpc_request *request);
853 int ptlrpc_at_get_net_latency(struct ptlrpc_request *req);
854 int ptl_send_rpc(struct ptlrpc_request *request, int noreply);
855 int ptlrpc_register_rqbd (struct ptlrpc_request_buffer_desc *rqbd);
856
857 /* ptlrpc/client.c */
858 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
859                         struct ptlrpc_client *);
860 void ptlrpc_cleanup_client(struct obd_import *imp);
861 struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid);
862
863 int ptlrpc_queue_wait(struct ptlrpc_request *req);
864 int ptlrpc_replay_req(struct ptlrpc_request *req);
865 int ptlrpc_unregister_reply(struct ptlrpc_request *req, int async);
866 void ptlrpc_restart_req(struct ptlrpc_request *req);
867 void ptlrpc_abort_inflight(struct obd_import *imp);
868 void ptlrpc_abort_set(struct ptlrpc_request_set *set);
869
870 struct ptlrpc_request_set *ptlrpc_prep_set(void);
871 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
872                       set_interpreter_func fn, void *data);
873 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *);
874 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set);
875 int ptlrpc_set_wait(struct ptlrpc_request_set *);
876 int ptlrpc_expired_set(void *data);
877 void ptlrpc_interrupted_set(void *data);
878 void ptlrpc_mark_interrupted(struct ptlrpc_request *req);
879 void ptlrpc_set_destroy(struct ptlrpc_request_set *);
880 void ptlrpc_set_add_req(struct ptlrpc_request_set *, struct ptlrpc_request *);
881 int ptlrpc_set_add_new_req(struct ptlrpcd_ctl *pc,
882                            struct ptlrpc_request *req);
883
884 void ptlrpc_free_rq_pool(struct ptlrpc_request_pool *pool);
885 void ptlrpc_add_rqs_to_pool(struct ptlrpc_request_pool *pool, int num_rq);
886
887 struct ptlrpc_request_pool *
888 ptlrpc_init_rq_pool(int, int,
889                     void (*populate_pool)(struct ptlrpc_request_pool *, int));
890
891 void ptlrpc_at_set_req_timeout(struct ptlrpc_request *req);
892 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
893                                             const struct req_format *format);
894 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
895                                             struct ptlrpc_request_pool *,
896                                             const struct req_format *format);
897 void ptlrpc_request_free(struct ptlrpc_request *request);
898 int ptlrpc_request_pack(struct ptlrpc_request *request,
899                         __u32 version, int opcode);
900 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
901                                                 const struct req_format *format,
902                                                 __u32 version, int opcode);
903 int ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
904                              __u32 version, int opcode, char **bufs,
905                              struct ptlrpc_cli_ctx *ctx);
906 struct ptlrpc_request *ptlrpc_prep_req(struct obd_import *imp, __u32 version,
907                                        int opcode, int count, __u32 *lengths,
908                                        char **bufs);
909 struct ptlrpc_request *ptlrpc_prep_req_pool(struct obd_import *imp,
910                                              __u32 version, int opcode,
911                                             int count, __u32 *lengths, char **bufs,
912                                             struct ptlrpc_request_pool *pool);
913 void ptlrpc_req_finished(struct ptlrpc_request *request);
914 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request);
915 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req);
916 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_imp (struct ptlrpc_request *req,
917                                                int npages, int type, int portal);
918 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_exp(struct ptlrpc_request *req,
919                                               int npages, int type, int portal);
920 void ptlrpc_free_bulk(struct ptlrpc_bulk_desc *bulk);
921 void ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc,
922                            cfs_page_t *page, int pageoffset, int len);
923 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
924                                       struct obd_import *imp);
925 __u64 ptlrpc_next_xid(void);
926 __u64 ptlrpc_sample_next_xid(void);
927 __u64 ptlrpc_req_xid(struct ptlrpc_request *request);
928
929 struct ptlrpc_service_conf {
930         int psc_nbufs;
931         int psc_bufsize;
932         int psc_max_req_size;
933         int psc_max_reply_size;
934         int psc_req_portal;
935         int psc_rep_portal;
936         int psc_watchdog_factor;
937         int psc_min_threads;
938         int psc_max_threads;
939         __u32 psc_ctx_tags;
940 };
941
942 /* ptlrpc/service.c */
943 void ptlrpc_save_lock (struct ptlrpc_request *req,
944                        struct lustre_handle *lock, int mode, int no_ack);
945 void ptlrpc_commit_replies (struct obd_device *obd);
946 void ptlrpc_schedule_difficult_reply (struct ptlrpc_reply_state *rs);
947 struct ptlrpc_service *ptlrpc_init_svc_conf(struct ptlrpc_service_conf *c,
948                                             svc_handler_t h, char *name,
949                                             struct proc_dir_entry *proc_entry,
950                                             svcreq_printfn_t prntfn,
951                                             char *threadname);
952
953 struct ptlrpc_service *ptlrpc_init_svc(int nbufs, int bufsize, int max_req_size,
954                                        int max_reply_size,
955                                        int req_portal, int rep_portal,
956                                        int watchdog_factor,
957                                        svc_handler_t, char *name,
958                                        cfs_proc_dir_entry_t *proc_entry,
959                                        svcreq_printfn_t,
960                                        int min_threads, int max_threads,
961                                        char *threadname, __u32 ctx_tags);
962 void ptlrpc_stop_all_threads(struct ptlrpc_service *svc);
963
964 int ptlrpc_start_threads(struct obd_device *dev, struct ptlrpc_service *svc);
965 int ptlrpc_start_thread(struct obd_device *dev, struct ptlrpc_service *svc);
966 int ptlrpc_unregister_service(struct ptlrpc_service *service);
967 int liblustre_check_services (void *arg);
968 void ptlrpc_daemonize(char *name);
969 int ptlrpc_service_health_check(struct ptlrpc_service *);
970
971
972 struct ptlrpc_svc_data {
973         char *name;
974         struct ptlrpc_service *svc;
975         struct ptlrpc_thread *thread;
976         struct obd_device *dev;
977 };
978
979 /* ptlrpc/import.c */
980 int ptlrpc_connect_import(struct obd_import *imp, char * new_uuid);
981 int ptlrpc_init_import(struct obd_import *imp);
982 int ptlrpc_disconnect_import(struct obd_import *imp, int noclose);
983 int ptlrpc_import_recovery_state_machine(struct obd_import *imp);
984
985 /* ptlrpc/pack_generic.c */
986 int ptlrpc_reconnect_import(struct obd_import *imp);
987 int lustre_msg_swabbed(struct lustre_msg *msg);
988 int lustre_msg_check_version(struct lustre_msg *msg, __u32 version);
989 void lustre_init_msg_v2(struct lustre_msg_v2 *msg, int count, __u32 *lens,
990                         char **bufs);
991 int lustre_pack_request(struct ptlrpc_request *, __u32 magic, int count,
992                         __u32 *lens, char **bufs);
993 int lustre_pack_reply(struct ptlrpc_request *, int count, __u32 *lens,
994                       char **bufs);
995 int lustre_pack_reply_v2(struct ptlrpc_request *req, int count,
996                          __u32 *lens, char **bufs, int flags);
997 #define LPRFL_EARLY_REPLY 1
998 int lustre_pack_reply_flags(struct ptlrpc_request *, int count, __u32 *lens,
999                             char **bufs, int flags);
1000 int lustre_shrink_msg(struct lustre_msg *msg, int segment,
1001                       unsigned int newlen, int move_data);
1002 void lustre_free_reply_state(struct ptlrpc_reply_state *rs);
1003 int lustre_msg_hdr_size(__u32 magic, int count);
1004 int lustre_msg_size(__u32 magic, int count, __u32 *lengths);
1005 int lustre_msg_size_v2(int count, __u32 *lengths);
1006 int lustre_packed_msg_size(struct lustre_msg *msg);
1007 int lustre_msg_early_size(void);
1008 int lustre_unpack_msg(struct lustre_msg *m, int len);
1009 void *lustre_msg_buf_v2(struct lustre_msg_v2 *m, int n, int min_size);
1010 void *lustre_msg_buf(struct lustre_msg *m, int n, int minlen);
1011 int lustre_msg_buflen(struct lustre_msg *m, int n);
1012 void lustre_msg_set_buflen(struct lustre_msg *m, int n, int len);
1013 int lustre_msg_bufcount(struct lustre_msg *m);
1014 char *lustre_msg_string (struct lustre_msg *m, int n, int max_len);
1015 void *lustre_swab_buf(struct lustre_msg *, int n, int minlen, void *swabber);
1016 void *lustre_swab_reqbuf(struct ptlrpc_request *req, int n, int minlen,
1017                          void *swabber);
1018 void *lustre_swab_repbuf(struct ptlrpc_request *req, int n, int minlen,
1019                          void *swabber);
1020 __u32 lustre_msghdr_get_flags(struct lustre_msg *msg);
1021 void lustre_msghdr_set_flags(struct lustre_msg *msg, __u32 flags);
1022 __u32 lustre_msg_get_flags(struct lustre_msg *msg);
1023 void lustre_msg_add_flags(struct lustre_msg *msg, int flags);
1024 void lustre_msg_set_flags(struct lustre_msg *msg, int flags);
1025 void lustre_msg_clear_flags(struct lustre_msg *msg, int flags);
1026 __u32 lustre_msg_get_op_flags(struct lustre_msg *msg);
1027 void lustre_msg_add_op_flags(struct lustre_msg *msg, int flags);
1028 void lustre_msg_set_op_flags(struct lustre_msg *msg, int flags);
1029 struct lustre_handle *lustre_msg_get_handle(struct lustre_msg *msg);
1030 __u32 lustre_msg_get_type(struct lustre_msg *msg);
1031 __u32 lustre_msg_get_version(struct lustre_msg *msg);
1032 void lustre_msg_add_version(struct lustre_msg *msg, int version);
1033 __u32 lustre_msg_get_opc(struct lustre_msg *msg);
1034 __u64 lustre_msg_get_last_xid(struct lustre_msg *msg);
1035 __u64 lustre_msg_get_last_committed(struct lustre_msg *msg);
1036 __u64 lustre_msg_get_transno(struct lustre_msg *msg);
1037 __u64 lustre_msg_get_slv(struct lustre_msg *msg);
1038 __u32 lustre_msg_get_limit(struct lustre_msg *msg);
1039 void lustre_msg_set_slv(struct lustre_msg *msg, __u64 slv);
1040 void lustre_msg_set_limit(struct lustre_msg *msg, __u64 limit);
1041 int lustre_msg_get_status(struct lustre_msg *msg);
1042 __u32 lustre_msg_get_conn_cnt(struct lustre_msg *msg);
1043 int lustre_msg_is_v1(struct lustre_msg *msg);
1044 __u32 lustre_msg_get_magic(struct lustre_msg *msg);
1045 __u32 lustre_msg_get_timeout(struct lustre_msg *msg);
1046 __u32 lustre_msg_get_service_time(struct lustre_msg *msg);
1047 __u32 lustre_msg_get_cksum(struct lustre_msg *msg);
1048 __u32 lustre_msg_calc_cksum(struct lustre_msg *msg);
1049 void lustre_msg_set_handle(struct lustre_msg *msg,struct lustre_handle *handle);
1050 void lustre_msg_set_type(struct lustre_msg *msg, __u32 type);
1051 void lustre_msg_set_opc(struct lustre_msg *msg, __u32 opc);
1052 void lustre_msg_set_last_xid(struct lustre_msg *msg, __u64 last_xid);
1053 void lustre_msg_set_last_committed(struct lustre_msg *msg,__u64 last_committed);
1054 void lustre_msg_set_transno(struct lustre_msg *msg, __u64 transno);
1055 void lustre_msg_set_status(struct lustre_msg *msg, __u32 status);
1056 void lustre_msg_set_conn_cnt(struct lustre_msg *msg, __u32 conn_cnt);
1057 void ptlrpc_req_set_repsize(struct ptlrpc_request *req, int count, __u32 *sizes);
1058 void ptlrpc_request_set_replen(struct ptlrpc_request *req);
1059 void lustre_msg_set_timeout(struct lustre_msg *msg, __u32 timeout);
1060 void lustre_msg_set_service_time(struct lustre_msg *msg, __u32 service_time);
1061 void lustre_msg_set_cksum(struct lustre_msg *msg, __u32 cksum);
1062
1063 static inline void
1064 lustre_shrink_reply(struct ptlrpc_request *req, int segment,
1065                     unsigned int newlen, int move_data)
1066 {
1067         LASSERT(req->rq_reply_state);
1068         LASSERT(req->rq_repmsg);
1069         req->rq_replen = lustre_shrink_msg(req->rq_repmsg, segment,
1070                                            newlen, move_data);
1071 }
1072
1073 static inline void
1074 ptlrpc_rqphase_move(struct ptlrpc_request *req, enum rq_phase new_phase)
1075 {
1076         if (req->rq_phase == new_phase)
1077                 return;
1078         
1079         if (new_phase == RQ_PHASE_UNREGISTERING) {
1080                 req->rq_next_phase = req->rq_phase;
1081                 if (req->rq_import)
1082                         atomic_inc(&req->rq_import->imp_unregistering);
1083         }
1084         
1085         if (req->rq_phase == RQ_PHASE_UNREGISTERING) {
1086                 if (req->rq_import)
1087                         atomic_dec(&req->rq_import->imp_unregistering);
1088         }
1089
1090         DEBUG_REQ(D_RPCTRACE, req, "move req \"%s\" -> \"%s\"", 
1091                   ptlrpc_rqphase2str(req), ptlrpc_phase2str(new_phase));
1092
1093         req->rq_phase = new_phase;
1094 }
1095
1096 static inline int
1097 ptlrpc_client_early(struct ptlrpc_request *req)
1098 {
1099         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_UNLINK) &&
1100             req->rq_reply_deadline > cfs_time_current_sec())
1101                 return 0;
1102         return req->rq_early;
1103 }
1104
1105 static inline int
1106 ptlrpc_client_replied(struct ptlrpc_request *req)
1107 {
1108         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_UNLINK) &&
1109             req->rq_reply_deadline > cfs_time_current_sec())
1110                 return 0;
1111         return req->rq_replied;
1112 }
1113
1114 static inline int
1115 ptlrpc_client_recv(struct ptlrpc_request *req)
1116 {
1117         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_UNLINK) &&
1118             req->rq_reply_deadline > cfs_time_current_sec())
1119                 return 1;
1120         return req->rq_receiving_reply;
1121 }
1122
1123 static inline int
1124 ptlrpc_client_recv_or_unlink(struct ptlrpc_request *req)
1125 {
1126         int rc;
1127
1128         spin_lock(&req->rq_lock);
1129         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_UNLINK) &&
1130             req->rq_reply_deadline > cfs_time_current_sec()) {
1131                 spin_unlock(&req->rq_lock);
1132                 return 1;
1133         }
1134         rc = req->rq_receiving_reply || req->rq_must_unlink;
1135         spin_unlock(&req->rq_lock);
1136         return rc;
1137 }
1138
1139 static inline void
1140 ptlrpc_client_wake_req(struct ptlrpc_request *req)
1141 {
1142         if (req->rq_set == NULL)
1143                 cfs_waitq_signal(&req->rq_reply_waitq);
1144         else
1145                 cfs_waitq_signal(&req->rq_set->set_waitq);
1146 }
1147
1148 static inline void
1149 ptlrpc_rs_addref(struct ptlrpc_reply_state *rs)
1150 {
1151         LASSERT(atomic_read(&rs->rs_refcount) > 0);
1152         atomic_inc(&rs->rs_refcount);
1153 }
1154
1155 static inline void
1156 ptlrpc_rs_decref(struct ptlrpc_reply_state *rs)
1157 {
1158         LASSERT(atomic_read(&rs->rs_refcount) > 0);
1159         if (atomic_dec_and_test(&rs->rs_refcount))
1160                 lustre_free_reply_state(rs);
1161 }
1162
1163 /* Should only be called once per req */
1164 static inline void ptlrpc_req_drop_rs(struct ptlrpc_request *req)
1165 {
1166         if (req->rq_reply_state == NULL)
1167                 return; /* shouldn't occur */
1168         ptlrpc_rs_decref(req->rq_reply_state);
1169         req->rq_reply_state = NULL;
1170         req->rq_repmsg = NULL;
1171 }
1172
1173 static inline __u32 lustre_request_magic(struct ptlrpc_request *req)
1174 {
1175         return lustre_msg_get_magic(req->rq_reqmsg);
1176 }
1177
1178 static inline int ptlrpc_req_get_repsize(struct ptlrpc_request *req)
1179 {
1180         switch (req->rq_reqmsg->lm_magic) {
1181         case LUSTRE_MSG_MAGIC_V2:
1182                 return req->rq_reqmsg->lm_repsize;
1183         default:
1184                 LASSERTF(0, "incorrect message magic: %08x\n",
1185                          req->rq_reqmsg->lm_magic);
1186                 return -EFAULT;
1187         }
1188 }
1189
1190 /* ldlm/ldlm_lib.c */
1191 int client_obd_setup(struct obd_device *obddev, struct lustre_cfg *lcfg);
1192 int client_obd_cleanup(struct obd_device *obddev);
1193 int client_connect_import(const struct lu_env *env,
1194                           struct lustre_handle *conn, struct obd_device *obd,
1195                           struct obd_uuid *cluuid, struct obd_connect_data *,
1196                           void *localdata);
1197 int client_disconnect_export(struct obd_export *exp);
1198 int client_import_add_conn(struct obd_import *imp, struct obd_uuid *uuid,
1199                            int priority);
1200 int client_import_del_conn(struct obd_import *imp, struct obd_uuid *uuid);
1201 int import_set_conn_priority(struct obd_import *imp, struct obd_uuid *uuid);
1202
1203 /* ptlrpc/pinger.c */
1204 int ptlrpc_pinger_add_import(struct obd_import *imp);
1205 int ptlrpc_pinger_del_import(struct obd_import *imp);
1206 cfs_time_t ptlrpc_suspend_wakeup_time(void);
1207 #ifdef __KERNEL__
1208 void ping_evictor_start(void);
1209 void ping_evictor_stop(void);
1210 #else
1211 #define ping_evictor_start()    do {} while (0)
1212 #define ping_evictor_stop()     do {} while (0)
1213 #endif
1214 int ptlrpc_check_and_wait_suspend(struct ptlrpc_request *req);
1215
1216 /* ptlrpc/ptlrpcd.c */
1217 int ptlrpcd_start(char *name, struct ptlrpcd_ctl *pc);
1218 void ptlrpcd_stop(struct ptlrpcd_ctl *pc, int force);
1219 void ptlrpcd_wake(struct ptlrpc_request *req);
1220 void ptlrpcd_add_req(struct ptlrpc_request *req);
1221 int ptlrpcd_addref(void);
1222 void ptlrpcd_decref(void);
1223
1224 /* ptlrpc/lproc_ptlrpc.c */
1225 const char* ll_opcode2str(__u32 opcode);
1226 #ifdef LPROCFS
1227 void ptlrpc_lprocfs_register_obd(struct obd_device *obd);
1228 void ptlrpc_lprocfs_unregister_obd(struct obd_device *obd);
1229 void ptlrpc_lprocfs_brw(struct ptlrpc_request *req, int bytes);
1230 #else
1231 static inline void ptlrpc_lprocfs_register_obd(struct obd_device *obd) {}
1232 static inline void ptlrpc_lprocfs_unregister_obd(struct obd_device *obd) {}
1233 static inline void ptlrpc_lprocfs_brw(struct ptlrpc_request *req, int bytes) {}
1234 #endif
1235
1236 /* ptlrpc/llog_server.c */
1237 int llog_origin_handle_create(struct ptlrpc_request *req);
1238 int llog_origin_handle_destroy(struct ptlrpc_request *req);
1239 int llog_origin_handle_prev_block(struct ptlrpc_request *req);
1240 int llog_origin_handle_next_block(struct ptlrpc_request *req);
1241 int llog_origin_handle_read_header(struct ptlrpc_request *req);
1242 int llog_origin_handle_close(struct ptlrpc_request *req);
1243 int llog_origin_handle_cancel(struct ptlrpc_request *req);
1244 int llog_catinfo(struct ptlrpc_request *req);
1245
1246 /* ptlrpc/llog_client.c */
1247 extern struct llog_operations llog_client_ops;
1248
1249 #endif