Whamcloud - gitweb
LU-181 ptlrpc: reorganize ptlrpc_request
[fs/lustre-release.git] / lustre / include / lustre_net.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2010, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36 /** \defgroup PtlRPC Portal RPC and networking module.
37  *
38  * PortalRPC is the layer used by rest of lustre code to achieve network
39  * communications: establish connections with corresponding export and import
40  * states, listen for a service, send and receive RPCs.
41  * PortalRPC also includes base recovery framework: packet resending and
42  * replaying, reconnections, pinger.
43  *
44  * PortalRPC utilizes LNet as its transport layer.
45  *
46  * @{
47  */
48
49
50 #ifndef _LUSTRE_NET_H
51 #define _LUSTRE_NET_H
52
53 /** \defgroup net net
54  *
55  * @{
56  */
57
58 #include <libcfs/libcfs.h>
59 #include <lnet/lnet.h>
60 #include <lustre/lustre_idl.h>
61 #include <lustre_ha.h>
62 #include <lustre_sec.h>
63 #include <lustre_import.h>
64 #include <lprocfs_status.h>
65 #include <lu_object.h>
66 #include <lustre_req_layout.h>
67 #include <obd_support.h>
68 #include <lustre_ver.h>
69
70 /* MD flags we _always_ use */
71 #define PTLRPC_MD_OPTIONS  0
72
73 /**
74  * Max # of bulk operations in one request.
75  * In order for the client and server to properly negotiate the maximum
76  * possible transfer size, PTLRPC_BULK_OPS_COUNT must be a power-of-two
77  * value.  The client is free to limit the actual RPC size for any bulk
78  * transfer via cl_max_pages_per_rpc to some non-power-of-two value. */
79 #define PTLRPC_BULK_OPS_BITS    2
80 #define PTLRPC_BULK_OPS_COUNT   (1U << PTLRPC_BULK_OPS_BITS)
81 /**
82  * PTLRPC_BULK_OPS_MASK is for the convenience of the client only, and
83  * should not be used on the server at all.  Otherwise, it imposes a
84  * protocol limitation on the maximum RPC size that can be used by any
85  * RPC sent to that server in the future.  Instead, the server should
86  * use the negotiated per-client ocd_brw_size to determine the bulk
87  * RPC count. */
88 #define PTLRPC_BULK_OPS_MASK    (~((__u64)PTLRPC_BULK_OPS_COUNT - 1))
89
90 /**
91  * Define maxima for bulk I/O.
92  *
93  * A single PTLRPC BRW request is sent via up to PTLRPC_BULK_OPS_COUNT
94  * of LNET_MTU sized RDMA transfers.  Clients and servers negotiate the
95  * currently supported maximum between peers at connect via ocd_brw_size.
96  */
97 #define PTLRPC_MAX_BRW_BITS     (LNET_MTU_BITS + PTLRPC_BULK_OPS_BITS)
98 #define PTLRPC_MAX_BRW_SIZE     (1 << PTLRPC_MAX_BRW_BITS)
99 #define PTLRPC_MAX_BRW_PAGES    (PTLRPC_MAX_BRW_SIZE >> PAGE_CACHE_SHIFT)
100
101 #define ONE_MB_BRW_SIZE         (1 << LNET_MTU_BITS)
102 #define MD_MAX_BRW_SIZE         (1 << LNET_MTU_BITS)
103 #define MD_MAX_BRW_PAGES        (MD_MAX_BRW_SIZE >> PAGE_CACHE_SHIFT)
104 #define DT_MAX_BRW_SIZE         PTLRPC_MAX_BRW_SIZE
105 #define DT_MAX_BRW_PAGES        (DT_MAX_BRW_SIZE >> PAGE_CACHE_SHIFT)
106 #define OFD_MAX_BRW_SIZE        (1 << LNET_MTU_BITS)
107
108 /* When PAGE_SIZE is a constant, we can check our arithmetic here with cpp! */
109 #if ((PTLRPC_MAX_BRW_PAGES & (PTLRPC_MAX_BRW_PAGES - 1)) != 0)
110 # error "PTLRPC_MAX_BRW_PAGES isn't a power of two"
111 #endif
112 #if (PTLRPC_MAX_BRW_SIZE != (PTLRPC_MAX_BRW_PAGES * PAGE_CACHE_SIZE))
113 # error "PTLRPC_MAX_BRW_SIZE isn't PTLRPC_MAX_BRW_PAGES * PAGE_CACHE_SIZE"
114 #endif
115 #if (PTLRPC_MAX_BRW_SIZE > LNET_MTU * PTLRPC_BULK_OPS_COUNT)
116 # error "PTLRPC_MAX_BRW_SIZE too big"
117 #endif
118 #if (PTLRPC_MAX_BRW_PAGES > LNET_MAX_IOV * PTLRPC_BULK_OPS_COUNT)
119 # error "PTLRPC_MAX_BRW_PAGES too big"
120 #endif
121
122 #define PTLRPC_NTHRS_INIT       2
123
124 /**
125  * Buffer Constants
126  *
127  * Constants determine how memory is used to buffer incoming service requests.
128  *
129  * ?_NBUFS              # buffers to allocate when growing the pool
130  * ?_BUFSIZE            # bytes in a single request buffer
131  * ?_MAXREQSIZE         # maximum request service will receive
132  *
133  * When fewer than ?_NBUFS/2 buffers are posted for receive, another chunk
134  * of ?_NBUFS is added to the pool.
135  *
136  * Messages larger than ?_MAXREQSIZE are dropped.  Request buffers are
137  * considered full when less than ?_MAXREQSIZE is left in them.
138  */
139 /**
140  * Thread Constants
141  *
142  * Constants determine how threads are created for ptlrpc service.
143  *
144  * ?_NTHRS_INIT         # threads to create for each service partition on
145  *                        initializing. If it's non-affinity service and
146  *                        there is only one partition, it's the overall #
147  *                        threads for the service while initializing.
148  * ?_NTHRS_BASE         # threads should be created at least for each
149  *                        ptlrpc partition to keep the service healthy.
150  *                        It's the low-water mark of threads upper-limit
151  *                        for each partition.
152  * ?_THR_FACTOR         # threads can be added on threads upper-limit for
153  *                        each CPU core. This factor is only for reference,
154  *                        we might decrease value of factor if number of cores
155  *                        per CPT is above a limit.
156  * ?_NTHRS_MAX          # overall threads can be created for a service,
157  *                        it's a soft limit because if service is running
158  *                        on machine with hundreds of cores and tens of
159  *                        CPU partitions, we need to guarantee each partition
160  *                        has ?_NTHRS_BASE threads, which means total threads
161  *                        will be ?_NTHRS_BASE * number_of_cpts which can
162  *                        exceed ?_NTHRS_MAX.
163  *
164  * Examples
165  *
166  * #define MDS_NTHRS_INIT       2
167  * #define MDS_NTHRS_BASE       64
168  * #define MDS_NTHRS_FACTOR     8
169  * #define MDS_NTHRS_MAX        1024
170  *
171  * Example 1):
172  * ---------------------------------------------------------------------
173  * Server(A) has 16 cores, user configured it to 4 partitions so each
174  * partition has 4 cores, then actual number of service threads on each
175  * partition is:
176  *     MDS_NTHRS_BASE(64) + cores(4) * MDS_NTHRS_FACTOR(8) = 96
177  *
178  * Total number of threads for the service is:
179  *     96 * partitions(4) = 384
180  *
181  * Example 2):
182  * ---------------------------------------------------------------------
183  * Server(B) has 32 cores, user configured it to 4 partitions so each
184  * partition has 8 cores, then actual number of service threads on each
185  * partition is:
186  *     MDS_NTHRS_BASE(64) + cores(8) * MDS_NTHRS_FACTOR(8) = 128
187  *
188  * Total number of threads for the service is:
189  *     128 * partitions(4) = 512
190  *
191  * Example 3):
192  * ---------------------------------------------------------------------
193  * Server(B) has 96 cores, user configured it to 8 partitions so each
194  * partition has 12 cores, then actual number of service threads on each
195  * partition is:
196  *     MDS_NTHRS_BASE(64) + cores(12) * MDS_NTHRS_FACTOR(8) = 160
197  *
198  * Total number of threads for the service is:
199  *     160 * partitions(8) = 1280
200  *
201  * However, it's above the soft limit MDS_NTHRS_MAX, so we choose this number
202  * as upper limit of threads number for each partition:
203  *     MDS_NTHRS_MAX(1024) / partitions(8) = 128
204  *
205  * Example 4):
206  * ---------------------------------------------------------------------
207  * Server(C) have a thousand of cores and user configured it to 32 partitions
208  *     MDS_NTHRS_BASE(64) * 32 = 2048
209  *
210  * which is already above soft limit MDS_NTHRS_MAX(1024), but we still need
211  * to guarantee that each partition has at least MDS_NTHRS_BASE(64) threads
212  * to keep service healthy, so total number of threads will just be 2048.
213  *
214  * NB: we don't suggest to choose server with that many cores because backend
215  *     filesystem itself, buffer cache, or underlying network stack might
216  *     have some SMP scalability issues at that large scale.
217  *
218  *     If user already has a fat machine with hundreds or thousands of cores,
219  *     there are two choices for configuration:
220  *     a) create CPU table from subset of all CPUs and run Lustre on
221  *        top of this subset
222  *     b) bind service threads on a few partitions, see modparameters of
223  *        MDS and OSS for details
224 *
225  * NB: these calculations (and examples below) are simplified to help
226  *     understanding, the real implementation is a little more complex,
227  *     please see ptlrpc_server_nthreads_check() for details.
228  *
229  */
230
231  /*
232   * LDLM threads constants:
233   *
234   * Given 8 as factor and 24 as base threads number
235   *
236   * example 1)
237   * On 4-core machine we will have 24 + 8 * 4 = 56 threads.
238   *
239   * example 2)
240   * On 8-core machine with 2 partitions we will have 24 + 4 * 8 = 56
241   * threads for each partition and total threads number will be 112.
242   *
243   * example 3)
244   * On 64-core machine with 8 partitions we will need LDLM_NTHRS_BASE(24)
245   * threads for each partition to keep service healthy, so total threads
246   * number should be 24 * 8 = 192.
247   *
248   * So with these constants, threads number will be at the similar level
249   * of old versions, unless target machine has over a hundred cores
250   */
251 #define LDLM_THR_FACTOR         8
252 #define LDLM_NTHRS_INIT         PTLRPC_NTHRS_INIT
253 #define LDLM_NTHRS_BASE         24
254 #define LDLM_NTHRS_MAX          (num_online_cpus() == 1 ? 64 : 128)
255
256 #define LDLM_BL_THREADS   LDLM_NTHRS_AUTO_INIT
257 #define LDLM_CLIENT_NBUFS 1
258 #define LDLM_SERVER_NBUFS 64
259 #define LDLM_BUFSIZE      (8 * 1024)
260 #define LDLM_MAXREQSIZE   (5 * 1024)
261 #define LDLM_MAXREPSIZE   (1024)
262
263  /*
264   * MDS threads constants:
265   *
266   * Please see examples in "Thread Constants", MDS threads number will be at
267   * the comparable level of old versions, unless the server has many cores.
268   */
269 #ifndef MDS_MAX_THREADS
270 #define MDS_MAX_THREADS         1024
271 #define MDS_MAX_OTHR_THREADS    256
272
273 #else /* MDS_MAX_THREADS */
274 #if MDS_MAX_THREADS < PTLRPC_NTHRS_INIT
275 #undef MDS_MAX_THREADS
276 #define MDS_MAX_THREADS PTLRPC_NTHRS_INIT
277 #endif
278 #define MDS_MAX_OTHR_THREADS    max(PTLRPC_NTHRS_INIT, MDS_MAX_THREADS / 2)
279 #endif
280
281 /* default service */
282 #define MDS_THR_FACTOR          8
283 #define MDS_NTHRS_INIT          PTLRPC_NTHRS_INIT
284 #define MDS_NTHRS_MAX           MDS_MAX_THREADS
285 #define MDS_NTHRS_BASE          min(64, MDS_NTHRS_MAX)
286
287 /* read-page service */
288 #define MDS_RDPG_THR_FACTOR     4
289 #define MDS_RDPG_NTHRS_INIT     PTLRPC_NTHRS_INIT
290 #define MDS_RDPG_NTHRS_MAX      MDS_MAX_OTHR_THREADS
291 #define MDS_RDPG_NTHRS_BASE     min(48, MDS_RDPG_NTHRS_MAX)
292
293 /* these should be removed when we remove setattr service in the future */
294 #define MDS_SETA_THR_FACTOR     4
295 #define MDS_SETA_NTHRS_INIT     PTLRPC_NTHRS_INIT
296 #define MDS_SETA_NTHRS_MAX      MDS_MAX_OTHR_THREADS
297 #define MDS_SETA_NTHRS_BASE     min(48, MDS_SETA_NTHRS_MAX)
298
299 /* non-affinity threads */
300 #define MDS_OTHR_NTHRS_INIT     PTLRPC_NTHRS_INIT
301 #define MDS_OTHR_NTHRS_MAX      MDS_MAX_OTHR_THREADS
302
303 #define MDS_NBUFS               64
304
305 /**
306  * Assume file name length = FNAME_MAX = 256 (true for ext3).
307  *        path name length = PATH_MAX = 4096
308  *        LOV MD size max  = EA_MAX = 24 * 2000
309  *              (NB: 24 is size of lov_ost_data)
310  *        LOV LOGCOOKIE size max = 32 * 2000
311  *              (NB: 32 is size of llog_cookie)
312  * symlink:  FNAME_MAX + PATH_MAX  <- largest
313  * link:     FNAME_MAX + PATH_MAX  (mds_rec_link < mds_rec_create)
314  * rename:   FNAME_MAX + FNAME_MAX
315  * open:     FNAME_MAX + EA_MAX
316  *
317  * MDS_MAXREQSIZE ~= 4736 bytes =
318  * lustre_msg + ldlm_request + mdt_body + mds_rec_create + FNAME_MAX + PATH_MAX
319  * MDS_MAXREPSIZE ~= 8300 bytes = lustre_msg + llog_header
320  *
321  * Realistic size is about 512 bytes (20 character name + 128 char symlink),
322  * except in the open case where there are a large number of OSTs in a LOV.
323  */
324 #define MDS_MAXREQSIZE          (5 * 1024)      /* >= 4736 */
325 #define MDS_MAXREPSIZE          (9 * 1024)      /* >= 8300 */
326
327 /**
328  * MDS incoming request with LOV EA
329  * 24 = sizeof(struct lov_ost_data), i.e: replay of opencreate
330  */
331 #define MDS_LOV_MAXREQSIZE      max(MDS_MAXREQSIZE, \
332                                     362 + LOV_MAX_STRIPE_COUNT * 24)
333 /**
334  * MDS outgoing reply with LOV EA
335  *
336  * NB: max reply size Lustre 2.4+ client can get from old MDS is:
337  * LOV_MAX_STRIPE_COUNT * (llog_cookie + lov_ost_data) + extra bytes
338  *
339  * but 2.4 or later MDS will never send reply with llog_cookie to any
340  * version client. This macro is defined for server side reply buffer size.
341  */
342 #define MDS_LOV_MAXREPSIZE      MDS_LOV_MAXREQSIZE
343
344 /**
345  * This is the size of a maximum REINT_SETXATTR request:
346  *
347  *   lustre_msg          56 (32 + 4 x 5 + 4)
348  *   ptlrpc_body        184
349  *   mdt_rec_setxattr   136
350  *   lustre_capa        120
351  *   name               256 (XATTR_NAME_MAX)
352  *   value            65536 (XATTR_SIZE_MAX)
353  */
354 #define MDS_EA_MAXREQSIZE       66288
355
356 /**
357  * These are the maximum request and reply sizes (rounded up to 1 KB
358  * boundaries) for the "regular" MDS_REQUEST_PORTAL and MDS_REPLY_PORTAL.
359  */
360 #define MDS_REG_MAXREQSIZE      (((max(MDS_EA_MAXREQSIZE, \
361                                        MDS_LOV_MAXREQSIZE) + 1023) >> 10) << 10)
362 #define MDS_REG_MAXREPSIZE      MDS_REG_MAXREQSIZE
363
364 /**
365  * The update request includes all of updates from the create, which might
366  * include linkea (4K maxim), together with other updates, we set it to 9K:
367  * lustre_msg + ptlrpc_body + UPDATE_BUF_SIZE (8K)
368  */
369 #define OUT_MAXREQSIZE  (9 * 1024)
370 #define OUT_MAXREPSIZE  MDS_MAXREPSIZE
371
372 /** MDS_BUFSIZE = max_reqsize (w/o LOV EA) + max sptlrpc payload size */
373 #define MDS_BUFSIZE             max(MDS_MAXREQSIZE + SPTLRPC_MAX_PAYLOAD, \
374                                     8 * 1024)
375
376 /**
377  * MDS_REG_BUFSIZE should at least be MDS_REG_MAXREQSIZE + SPTLRPC_MAX_PAYLOAD.
378  * However, we need to allocate a much larger buffer for it because LNet
379  * requires each MD(rqbd) has at least MDS_REQ_MAXREQSIZE bytes left to avoid
380  * dropping of maximum-sized incoming request.  So if MDS_REG_BUFSIZE is only a
381  * little larger than MDS_REG_MAXREQSIZE, then it can only fit in one request
382  * even there are about MDS_REG_MAX_REQSIZE bytes left in a rqbd, and memory
383  * utilization is very low.
384  *
385  * In the meanwhile, size of rqbd can't be too large, because rqbd can't be
386  * reused until all requests fit in it have been processed and released,
387  * which means one long blocked request can prevent the rqbd be reused.
388  * Now we set request buffer size to 160 KB, so even each rqbd is unlinked
389  * from LNet with unused 65 KB, buffer utilization will be about 59%.
390  * Please check LU-2432 for details.
391  */
392 #define MDS_REG_BUFSIZE         max(MDS_REG_MAXREQSIZE + SPTLRPC_MAX_PAYLOAD, \
393                                     160 * 1024)
394
395 /**
396  * OUT_BUFSIZE = max_out_reqsize + max sptlrpc payload (~1K) which is
397  * about 10K, for the same reason as MDS_REG_BUFSIZE, we also give some
398  * extra bytes to each request buffer to improve buffer utilization rate.
399   */
400 #define OUT_BUFSIZE             max(OUT_MAXREQSIZE + SPTLRPC_MAX_PAYLOAD, \
401                                     24 * 1024)
402
403 /** FLD_MAXREQSIZE == lustre_msg + __u32 padding + ptlrpc_body + opc */
404 #define FLD_MAXREQSIZE  (160)
405
406 /** FLD_MAXREPSIZE == lustre_msg + ptlrpc_body */
407 #define FLD_MAXREPSIZE  (152)
408 #define FLD_BUFSIZE     (1 << 12)
409
410 /**
411  * SEQ_MAXREQSIZE == lustre_msg + __u32 padding + ptlrpc_body + opc + lu_range +
412  * __u32 padding */
413 #define SEQ_MAXREQSIZE  (160)
414
415 /** SEQ_MAXREPSIZE == lustre_msg + ptlrpc_body + lu_range */
416 #define SEQ_MAXREPSIZE  (152)
417 #define SEQ_BUFSIZE     (1 << 12)
418
419 /** MGS threads must be >= 3, see bug 22458 comment #28 */
420 #define MGS_NTHRS_INIT  (PTLRPC_NTHRS_INIT + 1)
421 #define MGS_NTHRS_MAX   32
422
423 #define MGS_NBUFS       64
424 #define MGS_BUFSIZE     (8 * 1024)
425 #define MGS_MAXREQSIZE  (7 * 1024)
426 #define MGS_MAXREPSIZE  (9 * 1024)
427
428  /*
429   * OSS threads constants:
430   *
431   * Given 8 as factor and 64 as base threads number
432   *
433   * example 1):
434   * On 8-core server configured to 2 partitions, we will have
435   * 64 + 8 * 4 = 96 threads for each partition, 192 total threads.
436   *
437   * example 2):
438   * On 32-core machine configured to 4 partitions, we will have
439   * 64 + 8 * 8 = 112 threads for each partition, so total threads number
440   * will be 112 * 4 = 448.
441   *
442   * example 3):
443   * On 64-core machine configured to 4 partitions, we will have
444   * 64 + 16 * 8 = 192 threads for each partition, so total threads number
445   * will be 192 * 4 = 768 which is above limit OSS_NTHRS_MAX(512), so we
446   * cut off the value to OSS_NTHRS_MAX(512) / 4 which is 128 threads
447   * for each partition.
448   *
449   * So we can see that with these constants, threads number wil be at the
450   * similar level of old versions, unless the server has many cores.
451   */
452  /* depress threads factor for VM with small memory size */
453 #define OSS_THR_FACTOR          min_t(int, 8, \
454                                 NUM_CACHEPAGES >> (28 - PAGE_CACHE_SHIFT))
455 #define OSS_NTHRS_INIT          (PTLRPC_NTHRS_INIT + 1)
456 #define OSS_NTHRS_BASE          64
457 #define OSS_NTHRS_MAX           512
458
459 /* threads for handling "create" request */
460 #define OSS_CR_THR_FACTOR       1
461 #define OSS_CR_NTHRS_INIT       PTLRPC_NTHRS_INIT
462 #define OSS_CR_NTHRS_BASE       8
463 #define OSS_CR_NTHRS_MAX        64
464
465 /**
466  * OST_IO_MAXREQSIZE ~=
467  *      lustre_msg + ptlrpc_body + obdo + obd_ioobj +
468  *      DT_MAX_BRW_PAGES * niobuf_remote
469  *
470  * - single object with 16 pages is 512 bytes
471  * - OST_IO_MAXREQSIZE must be at least 1 page of cookies plus some spillover
472  * - Must be a multiple of 1024
473  * - actual size is about 18K
474  */
475 #define _OST_MAXREQSIZE_SUM (sizeof(struct lustre_msg) + \
476                              sizeof(struct ptlrpc_body) + \
477                              sizeof(struct obdo) + \
478                              sizeof(struct obd_ioobj) + \
479                              sizeof(struct niobuf_remote) * DT_MAX_BRW_PAGES)
480 /**
481  * FIEMAP request can be 4K+ for now
482  */
483 #define OST_MAXREQSIZE          (16 * 1024)
484 #define OST_IO_MAXREQSIZE       max_t(int, OST_MAXREQSIZE, \
485                                 (((_OST_MAXREQSIZE_SUM - 1) | (1024 - 1)) + 1))
486
487 #define OST_MAXREPSIZE          (9 * 1024)
488 #define OST_IO_MAXREPSIZE       OST_MAXREPSIZE
489
490 #define OST_NBUFS               64
491 /** OST_BUFSIZE = max_reqsize + max sptlrpc payload size */
492 #define OST_BUFSIZE             max_t(int, OST_MAXREQSIZE + 1024, 16 * 1024)
493 /**
494  * OST_IO_MAXREQSIZE is 18K, giving extra 46K can increase buffer utilization
495  * rate of request buffer, please check comment of MDS_LOV_BUFSIZE for details.
496  */
497 #define OST_IO_BUFSIZE          max_t(int, OST_IO_MAXREQSIZE + 1024, 64 * 1024)
498
499 /* Macro to hide a typecast. */
500 #define ptlrpc_req_async_args(req) ((void *)&req->rq_async_args)
501
502 struct ptlrpc_replay_async_args {
503         int             praa_old_state;
504         int             praa_old_status;
505 };
506
507 /**
508  * Structure to single define portal connection.
509  */
510 struct ptlrpc_connection {
511         /** linkage for connections hash table */
512         struct hlist_node        c_hash;
513         /** Our own lnet nid for this connection */
514         lnet_nid_t              c_self;
515         /** Remote side nid for this connection */
516         lnet_process_id_t       c_peer;
517         /** UUID of the other side */
518         struct obd_uuid         c_remote_uuid;
519         /** reference counter for this connection */
520         atomic_t            c_refcount;
521 };
522
523 /** Client definition for PortalRPC */
524 struct ptlrpc_client {
525         /** What lnet portal does this client send messages to by default */
526         __u32                   cli_request_portal;
527         /** What portal do we expect replies on */
528         __u32                   cli_reply_portal;
529         /** Name of the client */
530         char                   *cli_name;
531 };
532
533 /** state flags of requests */
534 /* XXX only ones left are those used by the bulk descs as well! */
535 #define PTL_RPC_FL_INTR      (1 << 0)  /* reply wait was interrupted by user */
536 #define PTL_RPC_FL_TIMEOUT   (1 << 7)  /* request timed out waiting for reply */
537
538 #define REQ_MAX_ACK_LOCKS 8
539
540 union ptlrpc_async_args {
541         /**
542          * Scratchpad for passing args to completion interpreter. Users
543          * cast to the struct of their choosing, and CLASSERT that this is
544          * big enough.  For _tons_ of context, OBD_ALLOC a struct and store
545          * a pointer to it here.  The pointer_arg ensures this struct is at
546          * least big enough for that.
547          */
548         void      *pointer_arg[11];
549         __u64      space[7];
550 };
551
552 struct ptlrpc_request_set;
553 typedef int (*set_interpreter_func)(struct ptlrpc_request_set *, void *, int);
554 typedef int (*set_producer_func)(struct ptlrpc_request_set *, void *);
555
556 /**
557  * Definition of request set structure.
558  * Request set is a list of requests (not necessary to the same target) that
559  * once populated with RPCs could be sent in parallel.
560  * There are two kinds of request sets. General purpose and with dedicated
561  * serving thread. Example of the latter is ptlrpcd set.
562  * For general purpose sets once request set started sending it is impossible
563  * to add new requests to such set.
564  * Provides a way to call "completion callbacks" when all requests in the set
565  * returned.
566  */
567 struct ptlrpc_request_set {
568         atomic_t                set_refcount;
569         /** number of in queue requests */
570         atomic_t                set_new_count;
571         /** number of uncompleted requests */
572         atomic_t                set_remaining;
573         /** wait queue to wait on for request events */
574         wait_queue_head_t       set_waitq;
575         wait_queue_head_t      *set_wakeup_ptr;
576         /** List of requests in the set */
577         struct list_head        set_requests;
578         /**
579          * List of completion callbacks to be called when the set is completed
580          * This is only used if \a set_interpret is NULL.
581          * Links struct ptlrpc_set_cbdata.
582          */
583         struct list_head        set_cblist;
584         /** Completion callback, if only one. */
585         set_interpreter_func    set_interpret;
586         /** opaq argument passed to completion \a set_interpret callback. */
587         void                    *set_arg;
588         /**
589          * Lock for \a set_new_requests manipulations
590          * locked so that any old caller can communicate requests to
591          * the set holder who can then fold them into the lock-free set
592          */
593         spinlock_t              set_new_req_lock;
594         /** List of new yet unsent requests. Only used with ptlrpcd now. */
595         struct list_head        set_new_requests;
596
597         /** rq_status of requests that have been freed already */
598         int                     set_rc;
599         /** Additional fields used by the flow control extension */
600         /** Maximum number of RPCs in flight */
601         int                     set_max_inflight;
602         /** Callback function used to generate RPCs */
603         set_producer_func       set_producer;
604         /** opaq argument passed to the producer callback */
605         void                    *set_producer_arg;
606 };
607
608 /**
609  * Description of a single ptrlrpc_set callback
610  */
611 struct ptlrpc_set_cbdata {
612         /** List linkage item */
613         struct list_head        psc_item;
614         /** Pointer to interpreting function */
615         set_interpreter_func    psc_interpret;
616         /** Opaq argument to pass to the callback */
617         void                    *psc_data;
618 };
619
620 struct ptlrpc_bulk_desc;
621 struct ptlrpc_service_part;
622 struct ptlrpc_service;
623
624 /**
625  * ptlrpc callback & work item stuff
626  */
627 struct ptlrpc_cb_id {
628         void   (*cbid_fn)(lnet_event_t *ev);     /* specific callback fn */
629         void    *cbid_arg;                      /* additional arg */
630 };
631
632 /** Maximum number of locks to fit into reply state */
633 #define RS_MAX_LOCKS 8
634 #define RS_DEBUG     0
635
636 /**
637  * Structure to define reply state on the server
638  * Reply state holds various reply message information. Also for "difficult"
639  * replies (rep-ack case) we store the state after sending reply and wait
640  * for the client to acknowledge the reception. In these cases locks could be
641  * added to the state for replay/failover consistency guarantees.
642  */
643 struct ptlrpc_reply_state {
644         /** Callback description */
645         struct ptlrpc_cb_id     rs_cb_id;
646         /** Linkage for list of all reply states in a system */
647         struct list_head        rs_list;
648         /** Linkage for list of all reply states on same export */
649         struct list_head        rs_exp_list;
650         /** Linkage for list of all reply states for same obd */
651         struct list_head        rs_obd_list;
652 #if RS_DEBUG
653         struct list_head        rs_debug_list;
654 #endif
655         /** A spinlock to protect the reply state flags */
656         spinlock_t              rs_lock;
657         /** Reply state flags */
658         unsigned long          rs_difficult:1;     /* ACK/commit stuff */
659         unsigned long          rs_no_ack:1;    /* no ACK, even for
660                                                   difficult requests */
661         unsigned long          rs_scheduled:1;     /* being handled? */
662         unsigned long          rs_scheduled_ever:1;/* any schedule attempts? */
663         unsigned long          rs_handled:1;  /* been handled yet? */
664         unsigned long          rs_on_net:1;   /* reply_out_callback pending? */
665         unsigned long          rs_prealloc:1; /* rs from prealloc list */
666         unsigned long          rs_committed:1;/* the transaction was committed
667                                                  and the rs was dispatched
668                                                  by ptlrpc_commit_replies */
669         /** Size of the state */
670         int                    rs_size;
671         /** opcode */
672         __u32                  rs_opc;
673         /** Transaction number */
674         __u64                  rs_transno;
675         /** xid */
676         __u64                  rs_xid;
677         struct obd_export     *rs_export;
678         struct ptlrpc_service_part *rs_svcpt;
679         /** Lnet metadata handle for the reply */
680         lnet_handle_md_t       rs_md_h;
681         atomic_t               rs_refcount;
682
683         /** Context for the sevice thread */
684         struct ptlrpc_svc_ctx *rs_svc_ctx;
685         /** Reply buffer (actually sent to the client), encoded if needed */
686         struct lustre_msg     *rs_repbuf;       /* wrapper */
687         /** Size of the reply buffer */
688         int                    rs_repbuf_len;   /* wrapper buf length */
689         /** Size of the reply message */
690         int                    rs_repdata_len;  /* wrapper msg length */
691         /**
692          * Actual reply message. Its content is encrupted (if needed) to
693          * produce reply buffer for actual sending. In simple case
694          * of no network encryption we jus set \a rs_repbuf to \a rs_msg
695          */
696         struct lustre_msg     *rs_msg;          /* reply message */
697
698         /** Number of locks awaiting client ACK */
699         int                    rs_nlocks;
700         /** Handles of locks awaiting client reply ACK */
701         struct lustre_handle   rs_locks[RS_MAX_LOCKS];
702         /** Lock modes of locks in \a rs_locks */
703         ldlm_mode_t            rs_modes[RS_MAX_LOCKS];
704 };
705
706 struct ptlrpc_thread;
707
708 /** RPC stages */
709 enum rq_phase {
710         RQ_PHASE_NEW            = 0xebc0de00,
711         RQ_PHASE_RPC            = 0xebc0de01,
712         RQ_PHASE_BULK           = 0xebc0de02,
713         RQ_PHASE_INTERPRET      = 0xebc0de03,
714         RQ_PHASE_COMPLETE       = 0xebc0de04,
715         RQ_PHASE_UNREGISTERING  = 0xebc0de05,
716         RQ_PHASE_UNDEFINED      = 0xebc0de06
717 };
718
719 /** Type of request interpreter call-back */
720 typedef int (*ptlrpc_interpterer_t)(const struct lu_env *env,
721                                     struct ptlrpc_request *req,
722                                     void *arg, int rc);
723 /** Type of request resend call-back */
724 typedef void (*ptlrpc_resend_cb_t)(struct ptlrpc_request *req,
725                                    void *arg);
726
727 /**
728  * Definition of request pool structure.
729  * The pool is used to store empty preallocated requests for the case
730  * when we would actually need to send something without performing
731  * any allocations (to avoid e.g. OOM).
732  */
733 struct ptlrpc_request_pool {
734         /** Locks the list */
735         spinlock_t              prp_lock;
736         /** list of ptlrpc_request structs */
737         struct list_head        prp_req_list;
738         /** Maximum message size that would fit into a rquest from this pool */
739         int                     prp_rq_size;
740         /** Function to allocate more requests for this pool */
741         void (*prp_populate)(struct ptlrpc_request_pool *, int);
742 };
743
744 struct lu_context;
745 struct lu_env;
746
747 struct ldlm_lock;
748
749 /**
750  * \defgroup nrs Network Request Scheduler
751  * @{
752  */
753 struct ptlrpc_nrs_policy;
754 struct ptlrpc_nrs_resource;
755 struct ptlrpc_nrs_request;
756
757 /**
758  * NRS control operations.
759  *
760  * These are common for all policies.
761  */
762 enum ptlrpc_nrs_ctl {
763         /**
764          * Not a valid opcode.
765          */
766         PTLRPC_NRS_CTL_INVALID,
767         /**
768          * Activate the policy.
769          */
770         PTLRPC_NRS_CTL_START,
771         /**
772          * Reserved for multiple primary policies, which may be a possibility
773          * in the future.
774          */
775         PTLRPC_NRS_CTL_STOP,
776         /**
777          * Policies can start using opcodes from this value and onwards for
778          * their own purposes; the assigned value itself is arbitrary.
779          */
780         PTLRPC_NRS_CTL_1ST_POL_SPEC = 0x20,
781 };
782
783 /**
784  * ORR policy operations
785  */
786 enum nrs_ctl_orr {
787         NRS_CTL_ORR_RD_QUANTUM = PTLRPC_NRS_CTL_1ST_POL_SPEC,
788         NRS_CTL_ORR_WR_QUANTUM,
789         NRS_CTL_ORR_RD_OFF_TYPE,
790         NRS_CTL_ORR_WR_OFF_TYPE,
791         NRS_CTL_ORR_RD_SUPP_REQ,
792         NRS_CTL_ORR_WR_SUPP_REQ,
793 };
794
795 /**
796  * NRS policy operations.
797  *
798  * These determine the behaviour of a policy, and are called in response to
799  * NRS core events.
800  */
801 struct ptlrpc_nrs_pol_ops {
802         /**
803          * Called during policy registration; this operation is optional.
804          *
805          * \param[in,out] policy The policy being initialized
806          */
807         int     (*op_policy_init) (struct ptlrpc_nrs_policy *policy);
808         /**
809          * Called during policy unregistration; this operation is optional.
810          *
811          * \param[in,out] policy The policy being unregistered/finalized
812          */
813         void    (*op_policy_fini) (struct ptlrpc_nrs_policy *policy);
814         /**
815          * Called when activating a policy via lprocfs; policies allocate and
816          * initialize their resources here; this operation is optional.
817          *
818          * \param[in,out] policy The policy being started
819          * \param[in,out] arg A generic char buffer
820          *
821          * \see nrs_policy_start_locked()
822          */
823         int     (*op_policy_start) (struct ptlrpc_nrs_policy *policy,
824                                     char *arg);
825         /**
826          * Called when deactivating a policy via lprocfs; policies deallocate
827          * their resources here; this operation is optional
828          *
829          * \param[in,out] policy The policy being stopped
830          *
831          * \see nrs_policy_stop0()
832          */
833         void    (*op_policy_stop) (struct ptlrpc_nrs_policy *policy);
834         /**
835          * Used for policy-specific operations; i.e. not generic ones like
836          * \e PTLRPC_NRS_CTL_START and \e PTLRPC_NRS_CTL_GET_INFO; analogous
837          * to an ioctl; this operation is optional.
838          *
839          * \param[in,out]        policy The policy carrying out operation \a opc
840          * \param[in]     opc    The command operation being carried out
841          * \param[in,out] arg    An generic buffer for communication between the
842          *                       user and the control operation
843          *
844          * \retval -ve error
845          * \retval   0 success
846          *
847          * \see ptlrpc_nrs_policy_control()
848          */
849         int     (*op_policy_ctl) (struct ptlrpc_nrs_policy *policy,
850                                   enum ptlrpc_nrs_ctl opc, void *arg);
851
852         /**
853          * Called when obtaining references to the resources of the resource
854          * hierarchy for a request that has arrived for handling at the PTLRPC
855          * service. Policies should return -ve for requests they do not wish
856          * to handle. This operation is mandatory.
857          *
858          * \param[in,out] policy  The policy we're getting resources for.
859          * \param[in,out] nrq     The request we are getting resources for.
860          * \param[in]     parent  The parent resource of the resource being
861          *                        requested; set to NULL if none.
862          * \param[out]    resp    The resource is to be returned here; the
863          *                        fallback policy in an NRS head should
864          *                        \e always return a non-NULL pointer value.
865          * \param[in]  moving_req When set, signifies that this is an attempt
866          *                        to obtain resources for a request being moved
867          *                        to the high-priority NRS head by
868          *                        ldlm_lock_reorder_req().
869          *                        This implies two things:
870          *                        1. We are under obd_export::exp_rpc_lock and
871          *                        so should not sleep.
872          *                        2. We should not perform non-idempotent or can
873          *                        skip performing idempotent operations that
874          *                        were carried out when resources were first
875          *                        taken for the request when it was initialized
876          *                        in ptlrpc_nrs_req_initialize().
877          *
878          * \retval 0, +ve The level of the returned resource in the resource
879          *                hierarchy; currently only 0 (for a non-leaf resource)
880          *                and 1 (for a leaf resource) are supported by the
881          *                framework.
882          * \retval -ve    error
883          *
884          * \see ptlrpc_nrs_req_initialize()
885          * \see ptlrpc_nrs_hpreq_add_nolock()
886          * \see ptlrpc_nrs_req_hp_move()
887          */
888         int     (*op_res_get) (struct ptlrpc_nrs_policy *policy,
889                                struct ptlrpc_nrs_request *nrq,
890                                const struct ptlrpc_nrs_resource *parent,
891                                struct ptlrpc_nrs_resource **resp,
892                                bool moving_req);
893         /**
894          * Called when releasing references taken for resources in the resource
895          * hierarchy for the request; this operation is optional.
896          *
897          * \param[in,out] policy The policy the resource belongs to
898          * \param[in] res        The resource to be freed
899          *
900          * \see ptlrpc_nrs_req_finalize()
901          * \see ptlrpc_nrs_hpreq_add_nolock()
902          * \see ptlrpc_nrs_req_hp_move()
903          */
904         void    (*op_res_put) (struct ptlrpc_nrs_policy *policy,
905                                const struct ptlrpc_nrs_resource *res);
906
907         /**
908          * Obtains a request for handling from the policy, and optionally
909          * removes the request from the policy; this operation is mandatory.
910          *
911          * \param[in,out] policy The policy to poll
912          * \param[in]     peek   When set, signifies that we just want to
913          *                       examine the request, and not handle it, so the
914          *                       request is not removed from the policy.
915          * \param[in]     force  When set, it will force a policy to return a
916          *                       request if it has one queued.
917          *
918          * \retval NULL No request available for handling
919          * \retval valid-pointer The request polled for handling
920          *
921          * \see ptlrpc_nrs_req_get_nolock()
922          */
923         struct ptlrpc_nrs_request *
924                 (*op_req_get) (struct ptlrpc_nrs_policy *policy, bool peek,
925                                bool force);
926         /**
927          * Called when attempting to add a request to a policy for later
928          * handling; this operation is mandatory.
929          *
930          * \param[in,out] policy  The policy on which to enqueue \a nrq
931          * \param[in,out] nrq The request to enqueue
932          *
933          * \retval 0    success
934          * \retval != 0 error
935          *
936          * \see ptlrpc_nrs_req_add_nolock()
937          */
938         int     (*op_req_enqueue) (struct ptlrpc_nrs_policy *policy,
939                                    struct ptlrpc_nrs_request *nrq);
940         /**
941          * Removes a request from the policy's set of pending requests. Normally
942          * called after a request has been polled successfully from the policy
943          * for handling; this operation is mandatory.
944          *
945          * \param[in,out] policy The policy the request \a nrq belongs to
946          * \param[in,out] nrq    The request to dequeue
947          *
948          * \see ptlrpc_nrs_req_del_nolock()
949          */
950         void    (*op_req_dequeue) (struct ptlrpc_nrs_policy *policy,
951                                    struct ptlrpc_nrs_request *nrq);
952         /**
953          * Called after the request being carried out. Could be used for
954          * job/resource control; this operation is optional.
955          *
956          * \param[in,out] policy The policy which is stopping to handle request
957          *                       \a nrq
958          * \param[in,out] nrq    The request
959          *
960          * \pre assert_spin_locked(&svcpt->scp_req_lock)
961          *
962          * \see ptlrpc_nrs_req_stop_nolock()
963          */
964         void    (*op_req_stop) (struct ptlrpc_nrs_policy *policy,
965                                 struct ptlrpc_nrs_request *nrq);
966         /**
967          * Registers the policy's lprocfs interface with a PTLRPC service.
968          *
969          * \param[in] svc The service
970          *
971          * \retval 0    success
972          * \retval != 0 error
973          */
974         int     (*op_lprocfs_init) (struct ptlrpc_service *svc);
975         /**
976          * Unegisters the policy's lprocfs interface with a PTLRPC service.
977          *
978          * In cases of failed policy registration in
979          * \e ptlrpc_nrs_policy_register(), this function may be called for a
980          * service which has not registered the policy successfully, so
981          * implementations of this method should make sure their operations are
982          * safe in such cases.
983          *
984          * \param[in] svc The service
985          */
986         void    (*op_lprocfs_fini) (struct ptlrpc_service *svc);
987 };
988
989 /**
990  * Policy flags
991  */
992 enum nrs_policy_flags {
993         /**
994          * Fallback policy, use this flag only on a single supported policy per
995          * service. The flag cannot be used on policies that use
996          * \e PTLRPC_NRS_FL_REG_EXTERN
997          */
998         PTLRPC_NRS_FL_FALLBACK          = (1 << 0),
999         /**
1000          * Start policy immediately after registering.
1001          */
1002         PTLRPC_NRS_FL_REG_START         = (1 << 1),
1003         /**
1004          * This is a policy registering from a module different to the one NRS
1005          * core ships in (currently ptlrpc).
1006          */
1007         PTLRPC_NRS_FL_REG_EXTERN        = (1 << 2),
1008 };
1009
1010 /**
1011  * NRS queue type.
1012  *
1013  * Denotes whether an NRS instance is for handling normal or high-priority
1014  * RPCs, or whether an operation pertains to one or both of the NRS instances
1015  * in a service.
1016  */
1017 enum ptlrpc_nrs_queue_type {
1018         PTLRPC_NRS_QUEUE_REG    = (1 << 0),
1019         PTLRPC_NRS_QUEUE_HP     = (1 << 1),
1020         PTLRPC_NRS_QUEUE_BOTH   = (PTLRPC_NRS_QUEUE_REG | PTLRPC_NRS_QUEUE_HP)
1021 };
1022
1023 /**
1024  * NRS head
1025  *
1026  * A PTLRPC service has at least one NRS head instance for handling normal
1027  * priority RPCs, and may optionally have a second NRS head instance for
1028  * handling high-priority RPCs. Each NRS head maintains a list of available
1029  * policies, of which one and only one policy is acting as the fallback policy,
1030  * and optionally a different policy may be acting as the primary policy. For
1031  * all RPCs handled by this NRS head instance, NRS core will first attempt to
1032  * enqueue the RPC using the primary policy (if any). The fallback policy is
1033  * used in the following cases:
1034  * - when there was no primary policy in the
1035  *   ptlrpc_nrs_pol_state::NRS_POL_STATE_STARTED state at the time the request
1036  *   was initialized.
1037  * - when the primary policy that was at the
1038  *   ptlrpc_nrs_pol_state::PTLRPC_NRS_POL_STATE_STARTED state at the time the
1039  *   RPC was initialized, denoted it did not wish, or for some other reason was
1040  *   not able to handle the request, by returning a non-valid NRS resource
1041  *   reference.
1042  * - when the primary policy that was at the
1043  *   ptlrpc_nrs_pol_state::PTLRPC_NRS_POL_STATE_STARTED state at the time the
1044  *   RPC was initialized, fails later during the request enqueueing stage.
1045  *
1046  * \see nrs_resource_get_safe()
1047  * \see nrs_request_enqueue()
1048  */
1049 struct ptlrpc_nrs {
1050         spinlock_t                      nrs_lock;
1051         /** XXX Possibly replace svcpt->scp_req_lock with another lock here. */
1052         /**
1053          * List of registered policies
1054          */
1055         struct list_head                nrs_policy_list;
1056         /**
1057          * List of policies with queued requests. Policies that have any
1058          * outstanding requests are queued here, and this list is queried
1059          * in a round-robin manner from NRS core when obtaining a request
1060          * for handling. This ensures that requests from policies that at some
1061          * point transition away from the
1062          * ptlrpc_nrs_pol_state::NRS_POL_STATE_STARTED state are drained.
1063          */
1064         struct list_head                nrs_policy_queued;
1065         /**
1066          * Service partition for this NRS head
1067          */
1068         struct ptlrpc_service_part     *nrs_svcpt;
1069         /**
1070          * Primary policy, which is the preferred policy for handling RPCs
1071          */
1072         struct ptlrpc_nrs_policy       *nrs_policy_primary;
1073         /**
1074          * Fallback policy, which is the backup policy for handling RPCs
1075          */
1076         struct ptlrpc_nrs_policy       *nrs_policy_fallback;
1077         /**
1078          * This NRS head handles either HP or regular requests
1079          */
1080         enum ptlrpc_nrs_queue_type      nrs_queue_type;
1081         /**
1082          * # queued requests from all policies in this NRS head
1083          */
1084         unsigned long                   nrs_req_queued;
1085         /**
1086          * # scheduled requests from all policies in this NRS head
1087          */
1088         unsigned long                   nrs_req_started;
1089         /**
1090          * # policies on this NRS
1091          */
1092         unsigned                        nrs_num_pols;
1093         /**
1094          * This NRS head is in progress of starting a policy
1095          */
1096         unsigned                        nrs_policy_starting:1;
1097         /**
1098          * In progress of shutting down the whole NRS head; used during
1099          * unregistration
1100          */
1101         unsigned                        nrs_stopping:1;
1102         /**
1103          * NRS policy is throttling reqeust
1104          */
1105         unsigned                        nrs_throttling:1;
1106 };
1107
1108 #define NRS_POL_NAME_MAX                16
1109
1110 struct ptlrpc_nrs_pol_desc;
1111
1112 /**
1113  * Service compatibility predicate; this determines whether a policy is adequate
1114  * for handling RPCs of a particular PTLRPC service.
1115  *
1116  * XXX:This should give the same result during policy registration and
1117  * unregistration, and for all partitions of a service; so the result should not
1118  * depend on temporal service or other properties, that may influence the
1119  * result.
1120  */
1121 typedef bool (*nrs_pol_desc_compat_t) (const struct ptlrpc_service *svc,
1122                                        const struct ptlrpc_nrs_pol_desc *desc);
1123
1124 struct ptlrpc_nrs_pol_conf {
1125         /**
1126          * Human-readable policy name
1127          */
1128         char                               nc_name[NRS_POL_NAME_MAX];
1129         /**
1130          * NRS operations for this policy
1131          */
1132         const struct ptlrpc_nrs_pol_ops   *nc_ops;
1133         /**
1134          * Service compatibility predicate
1135          */
1136         nrs_pol_desc_compat_t              nc_compat;
1137         /**
1138          * Set for policies that support a single ptlrpc service, i.e. ones that
1139          * have \a pd_compat set to nrs_policy_compat_one(). The variable value
1140          * depicts the name of the single service that such policies are
1141          * compatible with.
1142          */
1143         const char                        *nc_compat_svc_name;
1144         /**
1145          * Owner module for this policy descriptor; policies registering from a
1146          * different module to the one the NRS framework is held within
1147          * (currently ptlrpc), should set this field to THIS_MODULE.
1148          */
1149         struct module                     *nc_owner;
1150         /**
1151          * Policy registration flags; a bitmast of \e nrs_policy_flags
1152          */
1153         unsigned                           nc_flags;
1154 };
1155
1156 /**
1157  * NRS policy registering descriptor
1158  *
1159  * Is used to hold a description of a policy that can be passed to NRS core in
1160  * order to register the policy with NRS heads in different PTLRPC services.
1161  */
1162 struct ptlrpc_nrs_pol_desc {
1163         /**
1164          * Human-readable policy name
1165          */
1166         char                                    pd_name[NRS_POL_NAME_MAX];
1167         /**
1168          * Link into nrs_core::nrs_policies
1169          */
1170         struct list_head                        pd_list;
1171         /**
1172          * NRS operations for this policy
1173          */
1174         const struct ptlrpc_nrs_pol_ops        *pd_ops;
1175         /**
1176          * Service compatibility predicate
1177          */
1178         nrs_pol_desc_compat_t                   pd_compat;
1179         /**
1180          * Set for policies that are compatible with only one PTLRPC service.
1181          *
1182          * \see ptlrpc_nrs_pol_conf::nc_compat_svc_name
1183          */
1184         const char                             *pd_compat_svc_name;
1185         /**
1186          * Owner module for this policy descriptor.
1187          *
1188          * We need to hold a reference to the module whenever we might make use
1189          * of any of the module's contents, i.e.
1190          * - If one or more instances of the policy are at a state where they
1191          *   might be handling a request, i.e.
1192          *   ptlrpc_nrs_pol_state::NRS_POL_STATE_STARTED or
1193          *   ptlrpc_nrs_pol_state::NRS_POL_STATE_STOPPING as we will have to
1194          *   call into the policy's ptlrpc_nrs_pol_ops() handlers. A reference
1195          *   is taken on the module when
1196          *   \e ptlrpc_nrs_pol_desc::pd_refs becomes 1, and released when it
1197          *   becomes 0, so that we hold only one reference to the module maximum
1198          *   at any time.
1199          *
1200          *   We do not need to hold a reference to the module, even though we
1201          *   might use code and data from the module, in the following cases:
1202          * - During external policy registration, because this should happen in
1203          *   the module's init() function, in which case the module is safe from
1204          *   removal because a reference is being held on the module by the
1205          *   kernel, and iirc kmod (and I guess module-init-tools also) will
1206          *   serialize any racing processes properly anyway.
1207          * - During external policy unregistration, because this should happen
1208          *   in a module's exit() function, and any attempts to start a policy
1209          *   instance would need to take a reference on the module, and this is
1210          *   not possible once we have reached the point where the exit()
1211          *   handler is called.
1212          * - During service registration and unregistration, as service setup
1213          *   and cleanup, and policy registration, unregistration and policy
1214          *   instance starting, are serialized by \e nrs_core::nrs_mutex, so
1215          *   as long as users adhere to the convention of registering policies
1216          *   in init() and unregistering them in module exit() functions, there
1217          *   should not be a race between these operations.
1218          * - During any policy-specific lprocfs operations, because a reference
1219          *   is held by the kernel on a proc entry that has been entered by a
1220          *   syscall, so as long as proc entries are removed during unregistration time,
1221          *   then unregistration and lprocfs operations will be properly
1222          *   serialized.
1223          */
1224         struct module                          *pd_owner;
1225         /**
1226          * Bitmask of \e nrs_policy_flags
1227          */
1228         unsigned                                pd_flags;
1229         /**
1230          * # of references on this descriptor
1231          */
1232         atomic_t                                pd_refs;
1233 };
1234
1235 /**
1236  * NRS policy state
1237  *
1238  * Policies transition from one state to the other during their lifetime
1239  */
1240 enum ptlrpc_nrs_pol_state {
1241         /**
1242          * Not a valid policy state.
1243          */
1244         NRS_POL_STATE_INVALID,
1245         /**
1246          * Policies are at this state either at the start of their life, or
1247          * transition here when the user selects a different policy to act
1248          * as the primary one.
1249          */
1250         NRS_POL_STATE_STOPPED,
1251         /**
1252          * Policy is progress of stopping
1253          */
1254         NRS_POL_STATE_STOPPING,
1255         /**
1256          * Policy is in progress of starting
1257          */
1258         NRS_POL_STATE_STARTING,
1259         /**
1260          * A policy is in this state in two cases:
1261          * - it is the fallback policy, which is always in this state.
1262          * - it has been activated by the user; i.e. it is the primary policy,
1263          */
1264         NRS_POL_STATE_STARTED,
1265 };
1266
1267 /**
1268  * NRS policy information
1269  *
1270  * Used for obtaining information for the status of a policy via lprocfs
1271  */
1272 struct ptlrpc_nrs_pol_info {
1273         /**
1274          * Policy name
1275          */
1276         char                            pi_name[NRS_POL_NAME_MAX];
1277         /**
1278          * Current policy state
1279          */
1280         enum ptlrpc_nrs_pol_state       pi_state;
1281         /**
1282          * # RPCs enqueued for later dispatching by the policy
1283          */
1284         long                            pi_req_queued;
1285         /**
1286          * # RPCs started for dispatch by the policy
1287          */
1288         long                            pi_req_started;
1289         /**
1290          * Is this a fallback policy?
1291          */
1292         unsigned                        pi_fallback:1;
1293 };
1294
1295 /**
1296  * NRS policy
1297  *
1298  * There is one instance of this for each policy in each NRS head of each
1299  * PTLRPC service partition.
1300  */
1301 struct ptlrpc_nrs_policy {
1302         /**
1303          * Linkage into the NRS head's list of policies,
1304          * ptlrpc_nrs:nrs_policy_list
1305          */
1306         struct list_head                pol_list;
1307         /**
1308          * Linkage into the NRS head's list of policies with enqueued
1309          * requests ptlrpc_nrs:nrs_policy_queued
1310          */
1311         struct list_head                pol_list_queued;
1312         /**
1313          * Current state of this policy
1314          */
1315         enum ptlrpc_nrs_pol_state       pol_state;
1316         /**
1317          * Bitmask of nrs_policy_flags
1318          */
1319         unsigned                        pol_flags;
1320         /**
1321          * # RPCs enqueued for later dispatching by the policy
1322          */
1323         long                            pol_req_queued;
1324         /**
1325          * # RPCs started for dispatch by the policy
1326          */
1327         long                            pol_req_started;
1328         /**
1329          * Usage Reference count taken on the policy instance
1330          */
1331         long                            pol_ref;
1332         /**
1333          * The NRS head this policy has been created at
1334          */
1335         struct ptlrpc_nrs              *pol_nrs;
1336         /**
1337          * Private policy data; varies by policy type
1338          */
1339         void                           *pol_private;
1340         /**
1341          * Policy descriptor for this policy instance.
1342          */
1343         struct ptlrpc_nrs_pol_desc     *pol_desc;
1344 };
1345
1346 /**
1347  * NRS resource
1348  *
1349  * Resources are embedded into two types of NRS entities:
1350  * - Inside NRS policies, in the policy's private data in
1351  *   ptlrpc_nrs_policy::pol_private
1352  * - In objects that act as prime-level scheduling entities in different NRS
1353  *   policies; e.g. on a policy that performs round robin or similar order
1354  *   scheduling across client NIDs, there would be one NRS resource per unique
1355  *   client NID. On a policy which performs round robin scheduling across
1356  *   backend filesystem objects, there would be one resource associated with
1357  *   each of the backend filesystem objects partaking in the scheduling
1358  *   performed by the policy.
1359  *
1360  * NRS resources share a parent-child relationship, in which resources embedded
1361  * in policy instances are the parent entities, with all scheduling entities
1362  * a policy schedules across being the children, thus forming a simple resource
1363  * hierarchy. This hierarchy may be extended with one or more levels in the
1364  * future if the ability to have more than one primary policy is added.
1365  *
1366  * Upon request initialization, references to the then active NRS policies are
1367  * taken and used to later handle the dispatching of the request with one of
1368  * these policies.
1369  *
1370  * \see nrs_resource_get_safe()
1371  * \see ptlrpc_nrs_req_add()
1372  */
1373 struct ptlrpc_nrs_resource {
1374         /**
1375          * This NRS resource's parent; is NULL for resources embedded in NRS
1376          * policy instances; i.e. those are top-level ones.
1377          */
1378         struct ptlrpc_nrs_resource     *res_parent;
1379         /**
1380          * The policy associated with this resource.
1381          */
1382         struct ptlrpc_nrs_policy       *res_policy;
1383 };
1384
1385 enum {
1386         NRS_RES_FALLBACK,
1387         NRS_RES_PRIMARY,
1388         NRS_RES_MAX
1389 };
1390
1391 /* \name fifo
1392  *
1393  * FIFO policy
1394  *
1395  * This policy is a logical wrapper around previous, non-NRS functionality.
1396  * It dispatches RPCs in the same order as they arrive from the network. This
1397  * policy is currently used as the fallback policy, and the only enabled policy
1398  * on all NRS heads of all PTLRPC service partitions.
1399  * @{
1400  */
1401
1402 /**
1403  * Private data structure for the FIFO policy
1404  */
1405 struct nrs_fifo_head {
1406         /**
1407          * Resource object for policy instance.
1408          */
1409         struct ptlrpc_nrs_resource      fh_res;
1410         /**
1411          * List of queued requests.
1412          */
1413         struct list_head                fh_list;
1414         /**
1415          * For debugging purposes.
1416          */
1417         __u64                           fh_sequence;
1418 };
1419
1420 struct nrs_fifo_req {
1421         struct list_head        fr_list;
1422         __u64                   fr_sequence;
1423 };
1424
1425 /** @} fifo */
1426
1427 /**
1428  * \name CRR-N
1429  *
1430  * CRR-N, Client Round Robin over NIDs
1431  * @{
1432  */
1433
1434 /**
1435  * private data structure for CRR-N NRS
1436  */
1437 struct nrs_crrn_net {
1438         struct ptlrpc_nrs_resource      cn_res;
1439         cfs_binheap_t                  *cn_binheap;
1440         cfs_hash_t                     *cn_cli_hash;
1441         /**
1442          * Used when a new scheduling round commences, in order to synchronize
1443          * all clients with the new round number.
1444          */
1445         __u64                           cn_round;
1446         /**
1447          * Determines the relevant ordering amongst request batches within a
1448          * scheduling round.
1449          */
1450         __u64                           cn_sequence;
1451         /**
1452          * Round Robin quantum; the maximum number of RPCs that each request
1453          * batch for each client can have in a scheduling round.
1454          */
1455         __u16                           cn_quantum;
1456 };
1457
1458 /**
1459  * Object representing a client in CRR-N, as identified by its NID
1460  */
1461 struct nrs_crrn_client {
1462         struct ptlrpc_nrs_resource      cc_res;
1463         struct hlist_node               cc_hnode;
1464         lnet_nid_t                      cc_nid;
1465         /**
1466          * The round number against which this client is currently scheduling
1467          * requests.
1468          */
1469         __u64                           cc_round;
1470         /**
1471          * The sequence number used for requests scheduled by this client during
1472          * the current round number.
1473          */
1474         __u64                           cc_sequence;
1475         atomic_t                        cc_ref;
1476         /**
1477          * Round Robin quantum; the maximum number of RPCs the client is allowed
1478          * to schedule in a single batch of each round.
1479          */
1480         __u16                           cc_quantum;
1481         /**
1482          * # of pending requests for this client, on all existing rounds
1483          */
1484         __u16                           cc_active;
1485 };
1486
1487 /**
1488  * CRR-N NRS request definition
1489  */
1490 struct nrs_crrn_req {
1491         /**
1492          * Round number for this request; shared with all other requests in the
1493          * same batch.
1494          */
1495         __u64                   cr_round;
1496         /**
1497          * Sequence number for this request; shared with all other requests in
1498          * the same batch.
1499          */
1500         __u64                   cr_sequence;
1501 };
1502
1503 /**
1504  * CRR-N policy operations.
1505  */
1506 enum nrs_ctl_crr {
1507         /**
1508          * Read the RR quantum size of a CRR-N policy.
1509          */
1510         NRS_CTL_CRRN_RD_QUANTUM = PTLRPC_NRS_CTL_1ST_POL_SPEC,
1511         /**
1512          * Write the RR quantum size of a CRR-N policy.
1513          */
1514         NRS_CTL_CRRN_WR_QUANTUM,
1515 };
1516
1517 /** @} CRR-N */
1518
1519 /**
1520  * \name ORR/TRR
1521  *
1522  * ORR/TRR (Object-based Round Robin/Target-based Round Robin) NRS policies
1523  * @{
1524  */
1525
1526 /**
1527  * Lower and upper byte offsets of a brw RPC
1528  */
1529 struct nrs_orr_req_range {
1530         __u64           or_start;
1531         __u64           or_end;
1532 };
1533
1534 /**
1535  * RPC types supported by the ORR/TRR policies
1536  */
1537 enum nrs_orr_supp {
1538         NOS_OST_READ  = (1 << 0),
1539         NOS_OST_WRITE = (1 << 1),
1540         NOS_OST_RW    = (NOS_OST_READ | NOS_OST_WRITE),
1541         /**
1542          * Default value for policies.
1543          */
1544         NOS_DFLT      = NOS_OST_READ
1545 };
1546
1547 /**
1548  * As unique keys for grouping RPCs together, we use the object's OST FID for
1549  * the ORR policy, and the OST index for the TRR policy.
1550  *
1551  * XXX: We waste some space for TRR policy instances by using a union, but it
1552  *      allows to consolidate some of the code between ORR and TRR, and these
1553  *      policies will probably eventually merge into one anyway.
1554  */
1555 struct nrs_orr_key {
1556         union {
1557                 /** object FID for ORR */
1558                 struct lu_fid   ok_fid;
1559                 /** OST index for TRR */
1560                 __u32           ok_idx;
1561         };
1562 };
1563
1564 /**
1565  * The largest base string for unique hash/slab object names is
1566  * "nrs_orr_reg_", so 13 characters. We add 3 to this to be used for the CPT
1567  * id number, so this _should_ be more than enough for the maximum number of
1568  * CPTs on any system. If it does happen that this statement is incorrect,
1569  * nrs_orr_genobjname() will inevitably yield a non-unique name and cause
1570  * kmem_cache_create() to complain (on Linux), so the erroneous situation
1571  * will hopefully not go unnoticed.
1572  */
1573 #define NRS_ORR_OBJ_NAME_MAX    (sizeof("nrs_orr_reg_") + 3)
1574
1575 /**
1576  * private data structure for ORR and TRR NRS
1577  */
1578 struct nrs_orr_data {
1579         struct ptlrpc_nrs_resource      od_res;
1580         cfs_binheap_t                  *od_binheap;
1581         cfs_hash_t                     *od_obj_hash;
1582         struct kmem_cache              *od_cache;
1583         /**
1584          * Used when a new scheduling round commences, in order to synchronize
1585          * all object or OST batches with the new round number.
1586          */
1587         __u64                           od_round;
1588         /**
1589          * Determines the relevant ordering amongst request batches within a
1590          * scheduling round.
1591          */
1592         __u64                           od_sequence;
1593         /**
1594          * RPC types that are currently supported.
1595          */
1596         enum nrs_orr_supp               od_supp;
1597         /**
1598          * Round Robin quantum; the maxium number of RPCs that each request
1599          * batch for each object or OST can have in a scheduling round.
1600          */
1601         __u16                           od_quantum;
1602         /**
1603          * Whether to use physical disk offsets or logical file offsets.
1604          */
1605         bool                            od_physical;
1606         /**
1607          * XXX: We need to provide a persistently allocated string to hold
1608          * unique object names for this policy, since in currently supported
1609          * versions of Linux by Lustre, kmem_cache_create() just sets a pointer
1610          * to the name string provided. kstrdup() is used in the version of
1611          * kmeme_cache_create() in current Linux mainline, so we may be able to
1612          * remove this in the future.
1613          */
1614         char                            od_objname[NRS_ORR_OBJ_NAME_MAX];
1615 };
1616
1617 /**
1618  * Represents a backend-fs object or OST in the ORR and TRR policies
1619  * respectively
1620  */
1621 struct nrs_orr_object {
1622         struct ptlrpc_nrs_resource      oo_res;
1623         struct hlist_node               oo_hnode;
1624         /**
1625          * The round number against which requests are being scheduled for this
1626          * object or OST
1627          */
1628         __u64                           oo_round;
1629         /**
1630          * The sequence number used for requests scheduled for this object or
1631          * OST during the current round number.
1632          */
1633         __u64                           oo_sequence;
1634         /**
1635          * The key of the object or OST for which this structure instance is
1636          * scheduling RPCs
1637          */
1638         struct nrs_orr_key              oo_key;
1639         long                            oo_ref;
1640         /**
1641          * Round Robin quantum; the maximum number of RPCs that are allowed to
1642          * be scheduled for the object or OST in a single batch of each round.
1643          */
1644         __u16                           oo_quantum;
1645         /**
1646          * # of pending requests for this object or OST, on all existing rounds
1647          */
1648         __u16                           oo_active;
1649 };
1650
1651 /**
1652  * ORR/TRR NRS request definition
1653  */
1654 struct nrs_orr_req {
1655         /**
1656          * The offset range this request covers
1657          */
1658         struct nrs_orr_req_range        or_range;
1659         /**
1660          * Round number for this request; shared with all other requests in the
1661          * same batch.
1662          */
1663         __u64                           or_round;
1664         /**
1665          * Sequence number for this request; shared with all other requests in
1666          * the same batch.
1667          */
1668         __u64                           or_sequence;
1669         /**
1670          * For debugging purposes.
1671          */
1672         struct nrs_orr_key              or_key;
1673         /**
1674          * An ORR policy instance has filled in request information while
1675          * enqueueing the request on the service partition's regular NRS head.
1676          */
1677         unsigned int                    or_orr_set:1;
1678         /**
1679          * A TRR policy instance has filled in request information while
1680          * enqueueing the request on the service partition's regular NRS head.
1681          */
1682         unsigned int                    or_trr_set:1;
1683         /**
1684          * Request offset ranges have been filled in with logical offset
1685          * values.
1686          */
1687         unsigned int                    or_logical_set:1;
1688         /**
1689          * Request offset ranges have been filled in with physical offset
1690          * values.
1691          */
1692         unsigned int                    or_physical_set:1;
1693 };
1694
1695 /** @} ORR/TRR */
1696
1697 #include <lustre_nrs_tbf.h>
1698
1699 /**
1700  * NRS request
1701  *
1702  * Instances of this object exist embedded within ptlrpc_request; the main
1703  * purpose of this object is to hold references to the request's resources
1704  * for the lifetime of the request, and to hold properties that policies use
1705  * use for determining the request's scheduling priority.
1706  * */
1707 struct ptlrpc_nrs_request {
1708         /**
1709          * The request's resource hierarchy.
1710          */
1711         struct ptlrpc_nrs_resource     *nr_res_ptrs[NRS_RES_MAX];
1712         /**
1713          * Index into ptlrpc_nrs_request::nr_res_ptrs of the resource of the
1714          * policy that was used to enqueue the request.
1715          *
1716          * \see nrs_request_enqueue()
1717          */
1718         unsigned                        nr_res_idx;
1719         unsigned                        nr_initialized:1;
1720         unsigned                        nr_enqueued:1;
1721         unsigned                        nr_started:1;
1722         unsigned                        nr_finalized:1;
1723         cfs_binheap_node_t              nr_node;
1724
1725         /**
1726          * Policy-specific fields, used for determining a request's scheduling
1727          * priority, and other supporting functionality.
1728          */
1729         union {
1730                 /**
1731                  * Fields for the FIFO policy
1732                  */
1733                 struct nrs_fifo_req     fifo;
1734                 /**
1735                  * CRR-N request defintion
1736                  */
1737                 struct nrs_crrn_req     crr;
1738                 /** ORR and TRR share the same request definition */
1739                 struct nrs_orr_req      orr;
1740                 /**
1741                  * TBF request definition
1742                  */
1743                 struct nrs_tbf_req      tbf;
1744         } nr_u;
1745         /**
1746          * Externally-registering policies may want to use this to allocate
1747          * their own request properties.
1748          */
1749         void                           *ext;
1750 };
1751
1752 /** @} nrs */
1753
1754 /**
1755  * Basic request prioritization operations structure.
1756  * The whole idea is centered around locks and RPCs that might affect locks.
1757  * When a lock is contended we try to give priority to RPCs that might lead
1758  * to fastest release of that lock.
1759  * Currently only implemented for OSTs only in a way that makes all
1760  * IO and truncate RPCs that are coming from a locked region where a lock is
1761  * contended a priority over other requests.
1762  */
1763 struct ptlrpc_hpreq_ops {
1764         /**
1765          * Check if the lock handle of the given lock is the same as
1766          * taken from the request.
1767          */
1768         int  (*hpreq_lock_match)(struct ptlrpc_request *, struct ldlm_lock *);
1769         /**
1770          * Check if the request is a high priority one.
1771          */
1772         int  (*hpreq_check)(struct ptlrpc_request *);
1773         /**
1774          * Called after the request has been handled.
1775          */
1776         void (*hpreq_fini)(struct ptlrpc_request *);
1777 };
1778
1779 struct ptlrpc_cli_req {
1780         /** For bulk requests on client only: bulk descriptor */
1781         struct ptlrpc_bulk_desc         *cr_bulk;
1782         /** optional time limit for send attempts */
1783         cfs_duration_t                   cr_delay_limit;
1784         /** time request was first queued */
1785         cfs_time_t                       cr_queued_time;
1786         /** request sent timeval */
1787         struct timeval                   cr_sent_tv;
1788         /** time for request really sent out */
1789         time_t                           cr_sent_out;
1790         /** when req reply unlink must finish. */
1791         time_t                           cr_reply_deadline;
1792         /** when req bulk unlink must finish. */
1793         time_t                           cr_bulk_deadline;
1794         /** Portal to which this request would be sent */
1795         short                            cr_req_ptl;
1796         /** Portal where to wait for reply and where reply would be sent */
1797         short                            cr_rep_ptl;
1798         /** request resending number */
1799         unsigned int                     cr_resend_nr;
1800         /** What was import generation when this request was sent */
1801         int                              cr_imp_gen;
1802         enum lustre_imp_state            cr_send_state;
1803         /** Per-request waitq introduced by bug 21938 for recovery waiting */
1804         wait_queue_head_t                cr_set_waitq;
1805         /** Link item for request set lists */
1806         struct list_head                 cr_set_chain;
1807         /** link to waited ctx */
1808         struct list_head                 cr_ctx_chain;
1809
1810         /** client's half ctx */
1811         struct ptlrpc_cli_ctx           *cr_cli_ctx;
1812         /** Link back to the request set */
1813         struct ptlrpc_request_set       *cr_set;
1814         /** outgoing request MD handle */
1815         lnet_handle_md_t                 cr_req_md_h;
1816         /** request-out callback parameter */
1817         struct ptlrpc_cb_id              cr_req_cbid;
1818         /** incoming reply MD handle */
1819         lnet_handle_md_t                 cr_reply_md_h;
1820         wait_queue_head_t                cr_reply_waitq;
1821         /** reply callback parameter */
1822         struct ptlrpc_cb_id              cr_reply_cbid;
1823         /** Async completion handler, called when reply is received */
1824         ptlrpc_interpterer_t             cr_reply_interp;
1825         /** Resend handler, called when request is resend to update RPC data */
1826         ptlrpc_resend_cb_t               cr_resend_cb;
1827         /** Async completion context */
1828         union ptlrpc_async_args          cr_async_args;
1829         /** Opaq data for replay and commit callbacks. */
1830         void                            *cr_cb_data;
1831         /**
1832          * Commit callback, called when request is committed and about to be
1833          * freed.
1834          */
1835         void (*cr_commit_cb)(struct ptlrpc_request *);
1836         /** Replay callback, called after request is replayed at recovery */
1837         void (*cr_replay_cb)(struct ptlrpc_request *);
1838 };
1839
1840 /** client request member alias */
1841 /* NB: these alias should NOT be used by any new code, instead they should
1842  * be removed step by step to avoid potential abuse */
1843 #define rq_bulk                 rq_cli.cr_bulk
1844 #define rq_delay_limit          rq_cli.cr_delay_limit
1845 #define rq_queued_time          rq_cli.cr_queued_time
1846 #define rq_sent_tv              rq_cli.cr_sent_tv
1847 #define rq_real_sent            rq_cli.cr_sent_out
1848 #define rq_reply_deadline       rq_cli.cr_reply_deadline
1849 #define rq_bulk_deadline        rq_cli.cr_bulk_deadline
1850 #define rq_nr_resend            rq_cli.cr_resend_nr
1851 #define rq_request_portal       rq_cli.cr_req_ptl
1852 #define rq_reply_portal         rq_cli.cr_rep_ptl
1853 #define rq_import_generation    rq_cli.cr_imp_gen
1854 #define rq_send_state           rq_cli.cr_send_state
1855 #define rq_set_chain            rq_cli.cr_set_chain
1856 #define rq_ctx_chain            rq_cli.cr_ctx_chain
1857 #define rq_set                  rq_cli.cr_set
1858 #define rq_set_waitq            rq_cli.cr_set_waitq
1859 #define rq_cli_ctx              rq_cli.cr_cli_ctx
1860 #define rq_req_md_h             rq_cli.cr_req_md_h
1861 #define rq_req_cbid             rq_cli.cr_req_cbid
1862 #define rq_reply_md_h           rq_cli.cr_reply_md_h
1863 #define rq_reply_waitq          rq_cli.cr_reply_waitq
1864 #define rq_reply_cbid           rq_cli.cr_reply_cbid
1865 #define rq_interpret_reply      rq_cli.cr_reply_interp
1866 #define rq_resend_cb            rq_cli.cr_resend_cb
1867 #define rq_async_args           rq_cli.cr_async_args
1868 #define rq_cb_data              rq_cli.cr_cb_data
1869 #define rq_commit_cb            rq_cli.cr_commit_cb
1870 #define rq_replay_cb            rq_cli.cr_replay_cb
1871
1872 struct ptlrpc_srv_req {
1873         /** initial thread servicing this request */
1874         struct ptlrpc_thread            *sr_svc_thread;
1875         /**
1876          * Server side list of incoming unserved requests sorted by arrival
1877          * time.  Traversed from time to time to notice about to expire
1878          * requests and sent back "early replies" to clients to let them
1879          * know server is alive and well, just very busy to service their
1880          * requests in time
1881          */
1882         struct list_head                 sr_timed_list;
1883         /** server-side per-export list */
1884         struct list_head                 sr_exp_list;
1885         /** server-side history, used for debuging purposes. */
1886         struct list_head                 sr_hist_list;
1887         /** history sequence # */
1888         __u64                            sr_hist_seq;
1889         /** the index of service's srv_at_array into which request is linked */
1890         time_t                           sr_at_index;
1891         /** authed uid */
1892         uid_t                            sr_auth_uid;
1893         /** authed uid mapped to */
1894         uid_t                            sr_auth_mapped_uid;
1895         /** RPC is generated from what part of Lustre */
1896         enum lustre_sec_part             sr_sp_from;
1897         /** request session context */
1898         struct lu_context                sr_ses;
1899         /** \addtogroup  nrs
1900          * @{
1901          */
1902         /** stub for NRS request */
1903         struct ptlrpc_nrs_request        sr_nrq;
1904         /** @} nrs */
1905         /** request arrival time */
1906         struct timeval                   sr_arrival_time;
1907         /** server's half ctx */
1908         struct ptlrpc_svc_ctx           *sr_svc_ctx;
1909         /** (server side), pointed directly into req buffer */
1910         struct ptlrpc_user_desc         *sr_user_desc;
1911         /** separated reply state */
1912         struct ptlrpc_reply_state       *sr_reply_state;
1913         /** server-side hp handlers */
1914         struct ptlrpc_hpreq_ops         *sr_ops;
1915         /** incoming request buffer */
1916         struct ptlrpc_request_buffer_desc *sr_rqbd;
1917 };
1918
1919 /** server request member alias */
1920 /* NB: these alias should NOT be used by any new code, instead they should
1921  * be removed step by step to avoid potential abuse */
1922 #define rq_svc_thread           rq_srv.sr_svc_thread
1923 #define rq_timed_list           rq_srv.sr_timed_list
1924 #define rq_exp_list             rq_srv.sr_exp_list
1925 #define rq_history_list         rq_srv.sr_hist_list
1926 #define rq_history_seq          rq_srv.sr_hist_seq
1927 #define rq_at_index             rq_srv.sr_at_index
1928 #define rq_auth_uid             rq_srv.sr_auth_uid
1929 #define rq_auth_mapped_uid      rq_srv.sr_auth_mapped_uid
1930 #define rq_sp_from              rq_srv.sr_sp_from
1931 #define rq_session              rq_srv.sr_ses
1932 #define rq_nrq                  rq_srv.sr_nrq
1933 #define rq_arrival_time         rq_srv.sr_arrival_time
1934 #define rq_reply_state          rq_srv.sr_reply_state
1935 #define rq_svc_ctx              rq_srv.sr_svc_ctx
1936 #define rq_user_desc            rq_srv.sr_user_desc
1937 #define rq_ops                  rq_srv.sr_ops
1938 #define rq_rqbd                 rq_srv.sr_rqbd
1939
1940 /**
1941  * Represents remote procedure call.
1942  *
1943  * This is a staple structure used by everybody wanting to send a request
1944  * in Lustre.
1945  */
1946 struct ptlrpc_request {
1947         /* Request type: one of PTL_RPC_MSG_* */
1948         int                              rq_type;
1949         /** Result of request processing */
1950         int                              rq_status;
1951         /**
1952          * Linkage item through which this request is included into
1953          * sending/delayed lists on client and into rqbd list on server
1954          */
1955         struct list_head                 rq_list;
1956         /** Lock to protect request flags and some other important bits, like
1957          * rq_list
1958          */
1959         spinlock_t                       rq_lock;
1960         /** client-side flags are serialized by rq_lock */
1961         unsigned int rq_intr:1, rq_replied:1, rq_err:1,
1962                 rq_timedout:1, rq_resend:1, rq_restart:1,
1963                 /**
1964                  * when ->rq_replay is set, request is kept by the client even
1965                  * after server commits corresponding transaction. This is
1966                  * used for operations that require sequence of multiple
1967                  * requests to be replayed. The only example currently is file
1968                  * open/close. When last request in such a sequence is
1969                  * committed, ->rq_replay is cleared on all requests in the
1970                  * sequence.
1971                  */
1972                 rq_replay:1,
1973                 rq_no_resend:1, rq_waiting:1, rq_receiving_reply:1,
1974                 rq_no_delay:1, rq_net_err:1, rq_wait_ctx:1,
1975                 rq_early:1,
1976                 rq_req_unlink:1, rq_reply_unlink:1,
1977                 rq_memalloc:1,      /* req originated from "kswapd" */
1978                 /* server-side flags */
1979                 rq_packed_final:1,  /* packed final reply */
1980                 rq_hp:1,            /* high priority RPC */
1981                 rq_at_linked:1,     /* link into service's srv_at_array */
1982                 rq_reply_truncate:1,
1983                 rq_committed:1,
1984                 /* whether the "rq_set" is a valid one */
1985                 rq_invalid_rqset:1,
1986                 rq_generation_set:1,
1987                 /* do not resend request on -EINPROGRESS */
1988                 rq_no_retry_einprogress:1,
1989                 /* allow the req to be sent if the import is in recovery
1990                  * status */
1991                 rq_allow_replay:1,
1992                 /* bulk request, sent to server, but uncommitted */
1993                 rq_unstable:1;
1994
1995         /** one of RQ_PHASE_* */
1996         enum rq_phase                    rq_phase;
1997         /** one of RQ_PHASE_* to be used next */
1998         enum rq_phase                    rq_next_phase;
1999         /**
2000          * client-side refcount for SENT race, server-side refcounf
2001          * for multiple replies
2002          */
2003         atomic_t                         rq_refcount;
2004         /**
2005          * client-side:
2006          * !rq_truncate : # reply bytes actually received,
2007          *  rq_truncate : required repbuf_len for resend
2008          */
2009         int rq_nob_received;
2010         /** Request length */
2011         int rq_reqlen;
2012         /** Reply length */
2013         int rq_replen;
2014         /** Pool if request is from preallocated list */
2015         struct ptlrpc_request_pool      *rq_pool;
2016         /** Request message - what client sent */
2017         struct lustre_msg *rq_reqmsg;
2018         /** Reply message - server response */
2019         struct lustre_msg *rq_repmsg;
2020         /** Transaction number */
2021         __u64 rq_transno;
2022         /** xid */
2023         __u64 rq_xid;
2024         /**
2025          * List item to for replay list. Not yet commited requests get linked
2026          * there.
2027          * Also see \a rq_replay comment above.
2028          * It's also link chain on obd_export::exp_req_replay_queue
2029          */
2030         struct list_head                 rq_replay_list;
2031         /** non-shared members for client & server request*/
2032         union {
2033                 struct ptlrpc_cli_req    rq_cli;
2034                 struct ptlrpc_srv_req    rq_srv;
2035         };
2036         /**
2037          * security and encryption data
2038          * @{ */
2039         /** description of flavors for client & server */
2040         struct sptlrpc_flavor            rq_flvr;
2041
2042         /* client/server security flags */
2043         unsigned int
2044                                  rq_ctx_init:1,      /* context initiation */
2045                                  rq_ctx_fini:1,      /* context destroy */
2046                                  rq_bulk_read:1,     /* request bulk read */
2047                                  rq_bulk_write:1,    /* request bulk write */
2048                                  /* server authentication flags */
2049                                  rq_auth_gss:1,      /* authenticated by gss */
2050                                  rq_auth_remote:1,   /* authed as remote user */
2051                                  rq_auth_usr_root:1, /* authed as root */
2052                                  rq_auth_usr_mdt:1,  /* authed as mdt */
2053                                  rq_auth_usr_ost:1,  /* authed as ost */
2054                                  /* security tfm flags */
2055                                  rq_pack_udesc:1,
2056                                  rq_pack_bulk:1,
2057                                  /* doesn't expect reply FIXME */
2058                                  rq_no_reply:1,
2059                                  rq_pill_init:1, /* pill initialized */
2060                                  rq_srv_req:1; /* server request */
2061
2062
2063         /** various buffer pointers */
2064         struct lustre_msg               *rq_reqbuf;      /**< req wrapper */
2065         char                            *rq_repbuf;      /**< rep buffer */
2066         struct lustre_msg               *rq_repdata;     /**< rep wrapper msg */
2067         /** only in priv mode */
2068         struct lustre_msg               *rq_clrbuf;
2069         int                      rq_reqbuf_len;  /* req wrapper buf len */
2070         int                      rq_reqdata_len; /* req wrapper msg len */
2071         int                      rq_repbuf_len;  /* rep buffer len */
2072         int                      rq_repdata_len; /* rep wrapper msg len */
2073         int                      rq_clrbuf_len;  /* only in priv mode */
2074         int                      rq_clrdata_len; /* only in priv mode */
2075
2076         /** early replies go to offset 0, regular replies go after that */
2077         unsigned int                     rq_reply_off;
2078
2079         /** @} */
2080
2081         /** Fields that help to see if request and reply were swabbed or not */
2082         __u32                            rq_req_swab_mask;
2083         __u32                            rq_rep_swab_mask;
2084
2085         /** how many early replies (for stats) */
2086         int                              rq_early_count;
2087         /** Server-side, export on which request was received */
2088         struct obd_export               *rq_export;
2089         /** import where request is being sent */
2090         struct obd_import               *rq_import;
2091         /** our LNet NID */
2092         lnet_nid_t                       rq_self;
2093         /** Peer description (the other side) */
2094         lnet_process_id_t                rq_peer;
2095         /**
2096          * service time estimate (secs)
2097          * If the request is not served by this time, it is marked as timed out.
2098          */
2099         int                              rq_timeout;
2100         /**
2101          * when request/reply sent (secs), or time when request should be sent
2102          */
2103         time_t                           rq_sent;
2104         /** when request must finish. */
2105         time_t                           rq_deadline;
2106         /** request format description */
2107         struct req_capsule               rq_pill;
2108 };
2109
2110 /**
2111  * Call completion handler for rpc if any, return it's status or original
2112  * rc if there was no handler defined for this request.
2113  */
2114 static inline int ptlrpc_req_interpret(const struct lu_env *env,
2115                                        struct ptlrpc_request *req, int rc)
2116 {
2117         if (req->rq_interpret_reply != NULL) {
2118                 req->rq_status = req->rq_interpret_reply(env, req,
2119                                                          &req->rq_async_args,
2120                                                          rc);
2121                 return req->rq_status;
2122         }
2123         return rc;
2124 }
2125
2126 /** \addtogroup  nrs
2127  * @{
2128  */
2129 int ptlrpc_nrs_policy_register(struct ptlrpc_nrs_pol_conf *conf);
2130 int ptlrpc_nrs_policy_unregister(struct ptlrpc_nrs_pol_conf *conf);
2131 void ptlrpc_nrs_req_hp_move(struct ptlrpc_request *req);
2132 void nrs_policy_get_info_locked(struct ptlrpc_nrs_policy *policy,
2133                                 struct ptlrpc_nrs_pol_info *info);
2134
2135 /*
2136  * Can the request be moved from the regular NRS head to the high-priority NRS
2137  * head (of the same PTLRPC service partition), if any?
2138  *
2139  * For a reliable result, this should be checked under svcpt->scp_req lock.
2140  */
2141 static inline bool ptlrpc_nrs_req_can_move(struct ptlrpc_request *req)
2142 {
2143         struct ptlrpc_nrs_request *nrq = &req->rq_nrq;
2144
2145         /**
2146          * LU-898: Check ptlrpc_nrs_request::nr_enqueued to make sure the
2147          * request has been enqueued first, and ptlrpc_nrs_request::nr_started
2148          * to make sure it has not been scheduled yet (analogous to previous
2149          * (non-NRS) checking of !list_empty(&ptlrpc_request::rq_list).
2150          */
2151         return nrq->nr_enqueued && !nrq->nr_started && !req->rq_hp;
2152 }
2153 /** @} nrs */
2154
2155 /**
2156  * Returns 1 if request buffer at offset \a index was already swabbed
2157  */
2158 static inline int lustre_req_swabbed(struct ptlrpc_request *req, size_t index)
2159 {
2160         LASSERT(index < sizeof(req->rq_req_swab_mask) * 8);
2161         return req->rq_req_swab_mask & (1 << index);
2162 }
2163
2164 /**
2165  * Returns 1 if request reply buffer at offset \a index was already swabbed
2166  */
2167 static inline int lustre_rep_swabbed(struct ptlrpc_request *req, size_t index)
2168 {
2169         LASSERT(index < sizeof(req->rq_rep_swab_mask) * 8);
2170         return req->rq_rep_swab_mask & (1 << index);
2171 }
2172
2173 /**
2174  * Returns 1 if request needs to be swabbed into local cpu byteorder
2175  */
2176 static inline int ptlrpc_req_need_swab(struct ptlrpc_request *req)
2177 {
2178         return lustre_req_swabbed(req, MSG_PTLRPC_HEADER_OFF);
2179 }
2180
2181 /**
2182  * Returns 1 if request reply needs to be swabbed into local cpu byteorder
2183  */
2184 static inline int ptlrpc_rep_need_swab(struct ptlrpc_request *req)
2185 {
2186         return lustre_rep_swabbed(req, MSG_PTLRPC_HEADER_OFF);
2187 }
2188
2189 /**
2190  * Mark request buffer at offset \a index that it was already swabbed
2191  */
2192 static inline void lustre_set_req_swabbed(struct ptlrpc_request *req,
2193                                           size_t index)
2194 {
2195         LASSERT(index < sizeof(req->rq_req_swab_mask) * 8);
2196         LASSERT((req->rq_req_swab_mask & (1 << index)) == 0);
2197         req->rq_req_swab_mask |= 1 << index;
2198 }
2199
2200 /**
2201  * Mark request reply buffer at offset \a index that it was already swabbed
2202  */
2203 static inline void lustre_set_rep_swabbed(struct ptlrpc_request *req,
2204                                           size_t index)
2205 {
2206         LASSERT(index < sizeof(req->rq_rep_swab_mask) * 8);
2207         LASSERT((req->rq_rep_swab_mask & (1 << index)) == 0);
2208         req->rq_rep_swab_mask |= 1 << index;
2209 }
2210
2211 /**
2212  * Convert numerical request phase value \a phase into text string description
2213  */
2214 static inline const char *
2215 ptlrpc_phase2str(enum rq_phase phase)
2216 {
2217         switch (phase) {
2218         case RQ_PHASE_NEW:
2219                 return "New";
2220         case RQ_PHASE_RPC:
2221                 return "Rpc";
2222         case RQ_PHASE_BULK:
2223                 return "Bulk";
2224         case RQ_PHASE_INTERPRET:
2225                 return "Interpret";
2226         case RQ_PHASE_COMPLETE:
2227                 return "Complete";
2228         case RQ_PHASE_UNREGISTERING:
2229                 return "Unregistering";
2230         default:
2231                 return "?Phase?";
2232         }
2233 }
2234
2235 /**
2236  * Convert numerical request phase of the request \a req into text stringi
2237  * description
2238  */
2239 static inline const char *
2240 ptlrpc_rqphase2str(struct ptlrpc_request *req)
2241 {
2242         return ptlrpc_phase2str(req->rq_phase);
2243 }
2244
2245 /**
2246  * Debugging functions and helpers to print request structure into debug log
2247  * @{
2248  */ 
2249 /* Spare the preprocessor, spoil the bugs. */
2250 #define FLAG(field, str) (field ? str : "")
2251
2252 /** Convert bit flags into a string */
2253 #define DEBUG_REQ_FLAGS(req)                                                    \
2254         ptlrpc_rqphase2str(req),                                                \
2255         FLAG(req->rq_intr, "I"), FLAG(req->rq_replied, "R"),                    \
2256         FLAG(req->rq_err, "E"),                                                 \
2257         FLAG(req->rq_timedout, "X") /* eXpired */, FLAG(req->rq_resend, "S"),   \
2258         FLAG(req->rq_restart, "T"), FLAG(req->rq_replay, "P"),                  \
2259         FLAG(req->rq_no_resend, "N"),                                           \
2260         FLAG(req->rq_waiting, "W"),                                             \
2261         FLAG(req->rq_wait_ctx, "C"), FLAG(req->rq_hp, "H"),                     \
2262         FLAG(req->rq_committed, "M")
2263
2264 #define REQ_FLAGS_FMT "%s:%s%s%s%s%s%s%s%s%s%s%s%s"
2265
2266 void _debug_req(struct ptlrpc_request *req,
2267                 struct libcfs_debug_msg_data *data, const char *fmt, ...)
2268         __attribute__ ((format (printf, 3, 4)));
2269
2270 /**
2271  * Helper that decides if we need to print request accordig to current debug
2272  * level settings
2273  */
2274 #define debug_req(msgdata, mask, cdls, req, fmt, a...)                        \
2275 do {                                                                          \
2276         CFS_CHECK_STACK(msgdata, mask, cdls);                                 \
2277                                                                               \
2278         if (((mask) & D_CANTMASK) != 0 ||                                     \
2279             ((libcfs_debug & (mask)) != 0 &&                                  \
2280              (libcfs_subsystem_debug & DEBUG_SUBSYSTEM) != 0))                \
2281                 _debug_req((req), msgdata, fmt, ##a);                         \
2282 } while(0)
2283
2284 /**
2285  * This is the debug print function you need to use to print request sturucture
2286  * content into lustre debug log.
2287  * for most callers (level is a constant) this is resolved at compile time */
2288 #define DEBUG_REQ(level, req, fmt, args...)                                   \
2289 do {                                                                          \
2290         if ((level) & (D_ERROR | D_WARNING)) {                                \
2291                 static cfs_debug_limit_state_t cdls;                          \
2292                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, &cdls);            \
2293                 debug_req(&msgdata, level, &cdls, req, "@@@ "fmt" ", ## args);\
2294         } else {                                                              \
2295                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, NULL);             \
2296                 debug_req(&msgdata, level, NULL, req, "@@@ "fmt" ", ## args); \
2297         }                                                                     \
2298 } while (0)
2299 /** @} */
2300
2301 /**
2302  * Structure that defines a single page of a bulk transfer
2303  */
2304 struct ptlrpc_bulk_page {
2305         /** Linkage to list of pages in a bulk */
2306         struct list_head bp_link;
2307         /**
2308          * Number of bytes in a page to transfer starting from \a bp_pageoffset
2309          */
2310         int              bp_buflen;
2311         /** offset within a page */
2312         int              bp_pageoffset;
2313         /** The page itself */
2314         struct page     *bp_page;
2315 };
2316
2317 #define BULK_GET_SOURCE   0
2318 #define BULK_PUT_SINK     1
2319 #define BULK_GET_SINK     2
2320 #define BULK_PUT_SOURCE   3
2321
2322 /**
2323  * Definition of bulk descriptor.
2324  * Bulks are special "Two phase" RPCs where initial request message
2325  * is sent first and it is followed bt a transfer (o receiving) of a large
2326  * amount of data to be settled into pages referenced from the bulk descriptors.
2327  * Bulks transfers (the actual data following the small requests) are done
2328  * on separate LNet portals.
2329  * In lustre we use bulk transfers for READ and WRITE transfers from/to OSTs.
2330  *  Another user is readpage for MDT.
2331  */
2332 struct ptlrpc_bulk_desc {
2333         /** completed with failure */
2334         unsigned long bd_failure:1;
2335         /** {put,get}{source,sink} */
2336         unsigned long bd_type:2;
2337         /** client side */
2338         unsigned long bd_registered:1;
2339         /** For serialization with callback */
2340         spinlock_t bd_lock;
2341         /** Import generation when request for this bulk was sent */
2342         int bd_import_generation;
2343         /** LNet portal for this bulk */
2344         __u32 bd_portal;
2345         /** Server side - export this bulk created for */
2346         struct obd_export *bd_export;
2347         /** Client side - import this bulk was sent on */
2348         struct obd_import *bd_import;
2349         /** Back pointer to the request */
2350         struct ptlrpc_request *bd_req;
2351         wait_queue_head_t      bd_waitq;        /* server side only WQ */
2352         int                    bd_iov_count;    /* # entries in bd_iov */
2353         int                    bd_max_iov;      /* allocated size of bd_iov */
2354         int                    bd_nob;          /* # bytes covered */
2355         int                    bd_nob_transferred; /* # bytes GOT/PUT */
2356
2357         __u64                  bd_last_xid;
2358
2359         struct ptlrpc_cb_id    bd_cbid;         /* network callback info */
2360         lnet_nid_t             bd_sender;       /* stash event::sender */
2361         int                     bd_md_count;    /* # valid entries in bd_mds */
2362         int                     bd_md_max_brw;  /* max entries in bd_mds */
2363         /** array of associated MDs */
2364         lnet_handle_md_t        bd_mds[PTLRPC_BULK_OPS_COUNT];
2365
2366         /*
2367          * encrypt iov, size is either 0 or bd_iov_count.
2368          */
2369         lnet_kiov_t           *bd_enc_iov;
2370
2371         lnet_kiov_t            bd_iov[0];
2372 };
2373
2374 enum {
2375         SVC_STOPPED     = 1 << 0,
2376         SVC_STOPPING    = 1 << 1,
2377         SVC_STARTING    = 1 << 2,
2378         SVC_RUNNING     = 1 << 3,
2379         SVC_EVENT       = 1 << 4,
2380         SVC_SIGNAL      = 1 << 5,
2381 };
2382
2383 #define PTLRPC_THR_NAME_LEN             32
2384 /**
2385  * Definition of server service thread structure
2386  */
2387 struct ptlrpc_thread {
2388         /**
2389          * List of active threads in svc->srv_threads
2390          */
2391         struct list_head t_link;
2392         /**
2393          * thread-private data (preallocated memory)
2394          */
2395         void *t_data;
2396         __u32 t_flags;
2397         /**
2398          * service thread index, from ptlrpc_start_threads
2399          */
2400         unsigned int t_id;
2401         /**
2402          * service thread pid
2403          */
2404         pid_t t_pid; 
2405         /**
2406          * put watchdog in the structure per thread b=14840
2407          */
2408         struct lc_watchdog *t_watchdog;
2409         /**
2410          * the svc this thread belonged to b=18582
2411          */
2412         struct ptlrpc_service_part      *t_svcpt;
2413         wait_queue_head_t               t_ctl_waitq;
2414         struct lu_env                   *t_env;
2415         char                            t_name[PTLRPC_THR_NAME_LEN];
2416 };
2417
2418 static inline int thread_is_init(struct ptlrpc_thread *thread)
2419 {
2420         return thread->t_flags == 0;
2421 }
2422
2423 static inline int thread_is_stopped(struct ptlrpc_thread *thread)
2424 {
2425         return !!(thread->t_flags & SVC_STOPPED);
2426 }
2427
2428 static inline int thread_is_stopping(struct ptlrpc_thread *thread)
2429 {
2430         return !!(thread->t_flags & SVC_STOPPING);
2431 }
2432
2433 static inline int thread_is_starting(struct ptlrpc_thread *thread)
2434 {
2435         return !!(thread->t_flags & SVC_STARTING);
2436 }
2437
2438 static inline int thread_is_running(struct ptlrpc_thread *thread)
2439 {
2440         return !!(thread->t_flags & SVC_RUNNING);
2441 }
2442
2443 static inline int thread_is_event(struct ptlrpc_thread *thread)
2444 {
2445         return !!(thread->t_flags & SVC_EVENT);
2446 }
2447
2448 static inline int thread_is_signal(struct ptlrpc_thread *thread)
2449 {
2450         return !!(thread->t_flags & SVC_SIGNAL);
2451 }
2452
2453 static inline void thread_clear_flags(struct ptlrpc_thread *thread, __u32 flags)
2454 {
2455         thread->t_flags &= ~flags;
2456 }
2457
2458 static inline void thread_set_flags(struct ptlrpc_thread *thread, __u32 flags)
2459 {
2460         thread->t_flags = flags;
2461 }
2462
2463 static inline void thread_add_flags(struct ptlrpc_thread *thread, __u32 flags)
2464 {
2465         thread->t_flags |= flags;
2466 }
2467
2468 static inline int thread_test_and_clear_flags(struct ptlrpc_thread *thread,
2469                                               __u32 flags)
2470 {
2471         if (thread->t_flags & flags) {
2472                 thread->t_flags &= ~flags;
2473                 return 1;
2474         }
2475         return 0;
2476 }
2477
2478 /**
2479  * Request buffer descriptor structure.
2480  * This is a structure that contains one posted request buffer for service.
2481  * Once data land into a buffer, event callback creates actual request and
2482  * notifies wakes one of the service threads to process new incoming request.
2483  * More than one request can fit into the buffer.
2484  */
2485 struct ptlrpc_request_buffer_desc {
2486         /** Link item for rqbds on a service */
2487         struct list_head                rqbd_list;
2488         /** History of requests for this buffer */
2489         struct list_head                rqbd_reqs;
2490         /** Back pointer to service for which this buffer is registered */
2491         struct ptlrpc_service_part      *rqbd_svcpt;
2492         /** LNet descriptor */
2493         lnet_handle_md_t                rqbd_md_h;
2494         int                             rqbd_refcount;
2495         /** The buffer itself */
2496         char                            *rqbd_buffer;
2497         struct ptlrpc_cb_id             rqbd_cbid;
2498         /**
2499          * This "embedded" request structure is only used for the
2500          * last request to fit into the buffer
2501          */
2502         struct ptlrpc_request           rqbd_req;
2503 };
2504
2505 typedef int  (*svc_handler_t)(struct ptlrpc_request *req);
2506
2507 struct ptlrpc_service_ops {
2508         /**
2509          * if non-NULL called during thread creation (ptlrpc_start_thread())
2510          * to initialize service specific per-thread state.
2511          */
2512         int             (*so_thr_init)(struct ptlrpc_thread *thr);
2513         /**
2514          * if non-NULL called during thread shutdown (ptlrpc_main()) to
2515          * destruct state created by ->srv_init().
2516          */
2517         void            (*so_thr_done)(struct ptlrpc_thread *thr);
2518         /**
2519          * Handler function for incoming requests for this service
2520          */
2521         int             (*so_req_handler)(struct ptlrpc_request *req);
2522         /**
2523          * function to determine priority of the request, it's called
2524          * on every new request
2525          */
2526         int             (*so_hpreq_handler)(struct ptlrpc_request *);
2527         /**
2528          * service-specific print fn
2529          */
2530         void            (*so_req_printer)(void *, struct ptlrpc_request *);
2531 };
2532
2533 #ifndef __cfs_cacheline_aligned
2534 /* NB: put it here for reducing patche dependence */
2535 # define __cfs_cacheline_aligned
2536 #endif
2537
2538 /**
2539  * How many high priority requests to serve before serving one normal
2540  * priority request
2541  */
2542 #define PTLRPC_SVC_HP_RATIO 10
2543
2544 /**
2545  * Definition of PortalRPC service.
2546  * The service is listening on a particular portal (like tcp port)
2547  * and perform actions for a specific server like IO service for OST
2548  * or general metadata service for MDS.
2549  */
2550 struct ptlrpc_service {
2551         /** serialize /proc operations */
2552         spinlock_t                      srv_lock;
2553         /** most often accessed fields */
2554         /** chain thru all services */
2555         struct list_head                srv_list;
2556         /** service operations table */
2557         struct ptlrpc_service_ops       srv_ops;
2558         /** only statically allocated strings here; we don't clean them */
2559         char                           *srv_name;
2560         /** only statically allocated strings here; we don't clean them */
2561         char                           *srv_thread_name;
2562         /** service thread list */
2563         struct list_head                srv_threads;
2564         /** threads # should be created for each partition on initializing */
2565         int                             srv_nthrs_cpt_init;
2566         /** limit of threads number for each partition */
2567         int                             srv_nthrs_cpt_limit;
2568         /** Root of /proc dir tree for this service */
2569         struct proc_dir_entry           *srv_procroot;
2570         /** Pointer to statistic data for this service */
2571         struct lprocfs_stats           *srv_stats;
2572         /** # hp per lp reqs to handle */
2573         int                             srv_hpreq_ratio;
2574         /** biggest request to receive */
2575         int                             srv_max_req_size;
2576         /** biggest reply to send */
2577         int                             srv_max_reply_size;
2578         /** size of individual buffers */
2579         int                             srv_buf_size;
2580         /** # buffers to allocate in 1 group */
2581         int                             srv_nbuf_per_group;
2582         /** Local portal on which to receive requests */
2583         __u32                           srv_req_portal;
2584         /** Portal on the client to send replies to */
2585         __u32                           srv_rep_portal;
2586         /**
2587          * Tags for lu_context associated with this thread, see struct
2588          * lu_context.
2589          */
2590         __u32                           srv_ctx_tags;
2591         /** soft watchdog timeout multiplier */
2592         int                             srv_watchdog_factor;
2593         /** under unregister_service */
2594         unsigned                        srv_is_stopping:1;
2595
2596         /** max # request buffers in history per partition */
2597         int                             srv_hist_nrqbds_cpt_max;
2598         /** number of CPTs this service bound on */
2599         int                             srv_ncpts;
2600         /** CPTs array this service bound on */
2601         __u32                           *srv_cpts;
2602         /** 2^srv_cptab_bits >= cfs_cpt_numbert(srv_cptable) */
2603         int                             srv_cpt_bits;
2604         /** CPT table this service is running over */
2605         struct cfs_cpt_table            *srv_cptable;
2606         /**
2607          * partition data for ptlrpc service
2608          */
2609         struct ptlrpc_service_part      *srv_parts[0];
2610 };
2611
2612 /**
2613  * Definition of PortalRPC service partition data.
2614  * Although a service only has one instance of it right now, but we
2615  * will have multiple instances very soon (instance per CPT).
2616  *
2617  * it has four locks:
2618  * \a scp_lock
2619  *    serialize operations on rqbd and requests waiting for preprocess
2620  * \a scp_req_lock
2621  *    serialize operations active requests sent to this portal
2622  * \a scp_at_lock
2623  *    serialize adaptive timeout stuff
2624  * \a scp_rep_lock
2625  *    serialize operations on RS list (reply states)
2626  *
2627  * We don't have any use-case to take two or more locks at the same time
2628  * for now, so there is no lock order issue.
2629  */
2630 struct ptlrpc_service_part {
2631         /** back reference to owner */
2632         struct ptlrpc_service           *scp_service __cfs_cacheline_aligned;
2633         /* CPT id, reserved */
2634         int                             scp_cpt;
2635         /** always increasing number */
2636         int                             scp_thr_nextid;
2637         /** # of starting threads */
2638         int                             scp_nthrs_starting;
2639         /** # of stopping threads, reserved for shrinking threads */
2640         int                             scp_nthrs_stopping;
2641         /** # running threads */
2642         int                             scp_nthrs_running;
2643         /** service threads list */
2644         struct list_head                scp_threads;
2645
2646         /**
2647          * serialize the following fields, used for protecting
2648          * rqbd list and incoming requests waiting for preprocess,
2649          * threads starting & stopping are also protected by this lock.
2650          */
2651         spinlock_t                      scp_lock  __cfs_cacheline_aligned;
2652         /** total # req buffer descs allocated */
2653         int                             scp_nrqbds_total;
2654         /** # posted request buffers for receiving */
2655         int                             scp_nrqbds_posted;
2656         /** in progress of allocating rqbd */
2657         int                             scp_rqbd_allocating;
2658         /** # incoming reqs */
2659         int                             scp_nreqs_incoming;
2660         /** request buffers to be reposted */
2661         struct list_head                scp_rqbd_idle;
2662         /** req buffers receiving */
2663         struct list_head                scp_rqbd_posted;
2664         /** incoming reqs */
2665         struct list_head                scp_req_incoming;
2666         /** timeout before re-posting reqs, in tick */
2667         cfs_duration_t                  scp_rqbd_timeout;
2668         /**
2669          * all threads sleep on this. This wait-queue is signalled when new
2670          * incoming request arrives and when difficult reply has to be handled.
2671          */
2672         wait_queue_head_t               scp_waitq;
2673
2674         /** request history */
2675         struct list_head                scp_hist_reqs;
2676         /** request buffer history */
2677         struct list_head                scp_hist_rqbds;
2678         /** # request buffers in history */
2679         int                             scp_hist_nrqbds;
2680         /** sequence number for request */
2681         __u64                           scp_hist_seq;
2682         /** highest seq culled from history */
2683         __u64                           scp_hist_seq_culled;
2684
2685         /**
2686          * serialize the following fields, used for processing requests
2687          * sent to this portal
2688          */
2689         spinlock_t                      scp_req_lock __cfs_cacheline_aligned;
2690         /** # reqs in either of the NRS heads below */
2691         /** # reqs being served */
2692         int                             scp_nreqs_active;
2693         /** # HPreqs being served */
2694         int                             scp_nhreqs_active;
2695         /** # hp requests handled */
2696         int                             scp_hreq_count;
2697
2698         /** NRS head for regular requests */
2699         struct ptlrpc_nrs               scp_nrs_reg;
2700         /** NRS head for HP requests; this is only valid for services that can
2701          *  handle HP requests */
2702         struct ptlrpc_nrs              *scp_nrs_hp;
2703
2704         /** AT stuff */
2705         /** @{ */
2706         /**
2707          * serialize the following fields, used for changes on
2708          * adaptive timeout
2709          */
2710         spinlock_t                      scp_at_lock __cfs_cacheline_aligned;
2711         /** estimated rpc service time */
2712         struct adaptive_timeout         scp_at_estimate;
2713         /** reqs waiting for replies */
2714         struct ptlrpc_at_array          scp_at_array;
2715         /** early reply timer */
2716         struct timer_list               scp_at_timer;
2717         /** debug */
2718         cfs_time_t                      scp_at_checktime;
2719         /** check early replies */
2720         unsigned                        scp_at_check;
2721         /** @} */
2722
2723         /**
2724          * serialize the following fields, used for processing
2725          * replies for this portal
2726          */
2727         spinlock_t                      scp_rep_lock __cfs_cacheline_aligned;
2728         /** all the active replies */
2729         struct list_head                scp_rep_active;
2730         /** List of free reply_states */
2731         struct list_head                scp_rep_idle;
2732         /** waitq to run, when adding stuff to srv_free_rs_list */
2733         wait_queue_head_t               scp_rep_waitq;
2734         /** # 'difficult' replies */
2735         atomic_t                        scp_nreps_difficult;
2736 };
2737
2738 #define ptlrpc_service_for_each_part(part, i, svc)                      \
2739         for (i = 0;                                                     \
2740              i < (svc)->srv_ncpts &&                                    \
2741              (svc)->srv_parts != NULL &&                                \
2742              ((part) = (svc)->srv_parts[i]) != NULL; i++)
2743
2744 /**
2745  * Declaration of ptlrpcd control structure
2746  */
2747 struct ptlrpcd_ctl {
2748         /**
2749          * Ptlrpc thread control flags (LIOD_START, LIOD_STOP, LIOD_FORCE)
2750          */
2751         unsigned long                   pc_flags;
2752         /**
2753          * Thread lock protecting structure fields.
2754          */
2755         spinlock_t                      pc_lock;
2756         /**
2757          * Start completion.
2758          */
2759         struct completion               pc_starting;
2760         /**
2761          * Stop completion.
2762          */
2763         struct completion               pc_finishing;
2764         /**
2765          * Thread requests set.
2766          */
2767         struct ptlrpc_request_set  *pc_set;
2768         /**
2769          * Thread name used in kthread_run()
2770          */
2771         char                        pc_name[16];
2772         /**
2773          * Environment for request interpreters to run in.
2774          */
2775         struct lu_env               pc_env;
2776         /**
2777          * Index of ptlrpcd thread in the array.
2778          */
2779         int                         pc_index;
2780         /**
2781          * Number of the ptlrpcd's partners.
2782          */
2783         int                         pc_npartners;
2784         /**
2785          * Pointer to the array of partners' ptlrpcd_ctl structure.
2786          */
2787         struct ptlrpcd_ctl        **pc_partners;
2788         /**
2789          * Record the partner index to be processed next.
2790          */
2791         int                         pc_cursor;
2792 };
2793
2794 /* Bits for pc_flags */
2795 enum ptlrpcd_ctl_flags {
2796         /**
2797          * Ptlrpc thread start flag.
2798          */
2799         LIOD_START       = 1 << 0,
2800         /**
2801          * Ptlrpc thread stop flag.
2802          */
2803         LIOD_STOP        = 1 << 1,
2804         /**
2805          * Ptlrpc thread force flag (only stop force so far).
2806          * This will cause aborting any inflight rpcs handled
2807          * by thread if LIOD_STOP is specified.
2808          */
2809         LIOD_FORCE       = 1 << 2,
2810         /**
2811          * This is a recovery ptlrpc thread.
2812          */
2813         LIOD_RECOVERY    = 1 << 3,
2814         /**
2815          * The ptlrpcd is bound to some CPU core.
2816          */
2817         LIOD_BIND        = 1 << 4,
2818 };
2819
2820 /**
2821  * \addtogroup nrs
2822  * @{
2823  *
2824  * Service compatibility function; the policy is compatible with all services.
2825  *
2826  * \param[in] svc  The service the policy is attempting to register with.
2827  * \param[in] desc The policy descriptor
2828  *
2829  * \retval true The policy is compatible with the service
2830  *
2831  * \see ptlrpc_nrs_pol_desc::pd_compat()
2832  */
2833 static inline bool nrs_policy_compat_all(const struct ptlrpc_service *svc,
2834                                          const struct ptlrpc_nrs_pol_desc *desc)
2835 {
2836         return true;
2837 }
2838
2839 /**
2840  * Service compatibility function; the policy is compatible with only a specific
2841  * service which is identified by its human-readable name at
2842  * ptlrpc_service::srv_name.
2843  *
2844  * \param[in] svc  The service the policy is attempting to register with.
2845  * \param[in] desc The policy descriptor
2846  *
2847  * \retval false The policy is not compatible with the service
2848  * \retval true  The policy is compatible with the service
2849  *
2850  * \see ptlrpc_nrs_pol_desc::pd_compat()
2851  */
2852 static inline bool nrs_policy_compat_one(const struct ptlrpc_service *svc,
2853                                          const struct ptlrpc_nrs_pol_desc *desc)
2854 {
2855         LASSERT(desc->pd_compat_svc_name != NULL);
2856         return strcmp(svc->srv_name, desc->pd_compat_svc_name) == 0;
2857 }
2858
2859 /** @} nrs */
2860
2861 /* ptlrpc/events.c */
2862 extern lnet_handle_eq_t ptlrpc_eq_h;
2863 extern int ptlrpc_uuid_to_peer(struct obd_uuid *uuid,
2864                                lnet_process_id_t *peer, lnet_nid_t *self);
2865 /**
2866  * These callbacks are invoked by LNet when something happened to
2867  * underlying buffer
2868  * @{
2869  */
2870 extern void request_out_callback(lnet_event_t *ev);
2871 extern void reply_in_callback(lnet_event_t *ev);
2872 extern void client_bulk_callback(lnet_event_t *ev);
2873 extern void request_in_callback(lnet_event_t *ev);
2874 extern void reply_out_callback(lnet_event_t *ev);
2875 #ifdef HAVE_SERVER_SUPPORT
2876 extern void server_bulk_callback(lnet_event_t *ev);
2877 #endif
2878 /** @} */
2879
2880 /* ptlrpc/connection.c */
2881 struct ptlrpc_connection *ptlrpc_connection_get(lnet_process_id_t peer,
2882                                                 lnet_nid_t self,
2883                                                 struct obd_uuid *uuid);
2884 int ptlrpc_connection_put(struct ptlrpc_connection *c);
2885 struct ptlrpc_connection *ptlrpc_connection_addref(struct ptlrpc_connection *);
2886 int ptlrpc_connection_init(void);
2887 void ptlrpc_connection_fini(void);
2888 extern lnet_pid_t ptl_get_pid(void);
2889
2890 /* ptlrpc/niobuf.c */
2891 /**
2892  * Actual interfacing with LNet to put/get/register/unregister stuff
2893  * @{
2894  */
2895 #ifdef HAVE_SERVER_SUPPORT
2896 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_exp(struct ptlrpc_request *req,
2897                                               unsigned npages, unsigned max_brw,
2898                                               unsigned type, unsigned portal);
2899 int ptlrpc_start_bulk_transfer(struct ptlrpc_bulk_desc *desc);
2900 void ptlrpc_abort_bulk(struct ptlrpc_bulk_desc *desc);
2901
2902 static inline int ptlrpc_server_bulk_active(struct ptlrpc_bulk_desc *desc)
2903 {
2904         int rc;
2905
2906         LASSERT(desc != NULL);
2907
2908         spin_lock(&desc->bd_lock);
2909         rc = desc->bd_md_count;
2910         spin_unlock(&desc->bd_lock);
2911         return rc;
2912 }
2913 #endif
2914
2915 int ptlrpc_register_bulk(struct ptlrpc_request *req);
2916 int ptlrpc_unregister_bulk(struct ptlrpc_request *req, int async);
2917
2918 static inline int ptlrpc_client_bulk_active(struct ptlrpc_request *req)
2919 {
2920         struct ptlrpc_bulk_desc *desc;
2921         int                      rc;
2922
2923         LASSERT(req != NULL);
2924         desc = req->rq_bulk;
2925
2926         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK) &&
2927             req->rq_bulk_deadline > cfs_time_current_sec())
2928                 return 1;
2929
2930         if (!desc)
2931                 return 0;
2932
2933         spin_lock(&desc->bd_lock);
2934         rc = desc->bd_md_count;
2935         spin_unlock(&desc->bd_lock);
2936         return rc;
2937 }
2938
2939 #define PTLRPC_REPLY_MAYBE_DIFFICULT 0x01
2940 #define PTLRPC_REPLY_EARLY           0x02
2941 int ptlrpc_send_reply(struct ptlrpc_request *req, int flags);
2942 int ptlrpc_reply(struct ptlrpc_request *req);
2943 int ptlrpc_send_error(struct ptlrpc_request *req, int difficult);
2944 int ptlrpc_error(struct ptlrpc_request *req);
2945 void ptlrpc_resend_req(struct ptlrpc_request *request);
2946 int ptlrpc_at_get_net_latency(struct ptlrpc_request *req);
2947 int ptl_send_rpc(struct ptlrpc_request *request, int noreply);
2948 int ptlrpc_register_rqbd(struct ptlrpc_request_buffer_desc *rqbd);
2949 /** @} */
2950
2951 /* ptlrpc/client.c */
2952 /**
2953  * Client-side portals API. Everything to send requests, receive replies,
2954  * request queues, request management, etc.
2955  * @{
2956  */
2957 void ptlrpc_request_committed(struct ptlrpc_request *req, int force);
2958
2959 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
2960                         struct ptlrpc_client *);
2961 void ptlrpc_cleanup_client(struct obd_import *imp);
2962 struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid);
2963
2964 int ptlrpc_queue_wait(struct ptlrpc_request *req);
2965 int ptlrpc_replay_req(struct ptlrpc_request *req);
2966 int ptlrpc_unregister_reply(struct ptlrpc_request *req, int async);
2967 void ptlrpc_restart_req(struct ptlrpc_request *req);
2968 void ptlrpc_abort_inflight(struct obd_import *imp);
2969 void ptlrpc_cleanup_imp(struct obd_import *imp);
2970 void ptlrpc_abort_set(struct ptlrpc_request_set *set);
2971
2972 struct ptlrpc_request_set *ptlrpc_prep_set(void);
2973 struct ptlrpc_request_set *ptlrpc_prep_fcset(int max, set_producer_func func,
2974                                              void *arg);
2975 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
2976                       set_interpreter_func fn, void *data);
2977 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *);
2978 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set);
2979 int ptlrpc_set_wait(struct ptlrpc_request_set *);
2980 int ptlrpc_expired_set(void *data);
2981 void ptlrpc_interrupted_set(void *data);
2982 void ptlrpc_mark_interrupted(struct ptlrpc_request *req);
2983 void ptlrpc_set_destroy(struct ptlrpc_request_set *);
2984 void ptlrpc_set_add_req(struct ptlrpc_request_set *, struct ptlrpc_request *);
2985 void ptlrpc_set_add_new_req(struct ptlrpcd_ctl *pc,
2986                             struct ptlrpc_request *req);
2987
2988 void ptlrpc_free_rq_pool(struct ptlrpc_request_pool *pool);
2989 void ptlrpc_add_rqs_to_pool(struct ptlrpc_request_pool *pool, int num_rq);
2990
2991 struct ptlrpc_request_pool *
2992 ptlrpc_init_rq_pool(int, int,
2993                     void (*populate_pool)(struct ptlrpc_request_pool *, int));
2994
2995 void ptlrpc_at_set_req_timeout(struct ptlrpc_request *req);
2996 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
2997                                             const struct req_format *format);
2998 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
2999                                             struct ptlrpc_request_pool *,
3000                                             const struct req_format *format);
3001 void ptlrpc_request_free(struct ptlrpc_request *request);
3002 int ptlrpc_request_pack(struct ptlrpc_request *request,
3003                         __u32 version, int opcode);
3004 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
3005                                                 const struct req_format *format,
3006                                                 __u32 version, int opcode);
3007 int ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
3008                              __u32 version, int opcode, char **bufs,
3009                              struct ptlrpc_cli_ctx *ctx);
3010 struct ptlrpc_request *ptlrpc_prep_req(struct obd_import *imp, __u32 version,
3011                                        int opcode, int count, __u32 *lengths,
3012                                        char **bufs);
3013 struct ptlrpc_request *ptlrpc_prep_req_pool(struct obd_import *imp,
3014                                              __u32 version, int opcode,
3015                                             int count, __u32 *lengths, char **bufs,
3016                                             struct ptlrpc_request_pool *pool);
3017 void ptlrpc_req_finished(struct ptlrpc_request *request);
3018 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request);
3019 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req);
3020 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_imp(struct ptlrpc_request *req,
3021                                               unsigned npages, unsigned max_brw,
3022                                               unsigned type, unsigned portal);
3023 void __ptlrpc_free_bulk(struct ptlrpc_bulk_desc *bulk, int pin);
3024 static inline void ptlrpc_free_bulk_pin(struct ptlrpc_bulk_desc *bulk)
3025 {
3026         __ptlrpc_free_bulk(bulk, 1);
3027 }
3028 static inline void ptlrpc_free_bulk_nopin(struct ptlrpc_bulk_desc *bulk)
3029 {
3030         __ptlrpc_free_bulk(bulk, 0);
3031 }
3032 void __ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc,
3033                              struct page *page, int pageoffset, int len, int);
3034 static inline void ptlrpc_prep_bulk_page_pin(struct ptlrpc_bulk_desc *desc,
3035                                              struct page *page, int pageoffset,
3036                                              int len)
3037 {
3038         __ptlrpc_prep_bulk_page(desc, page, pageoffset, len, 1);
3039 }
3040
3041 static inline void ptlrpc_prep_bulk_page_nopin(struct ptlrpc_bulk_desc *desc,
3042                                                struct page *page, int pageoffset,
3043                                                int len)
3044 {
3045         __ptlrpc_prep_bulk_page(desc, page, pageoffset, len, 0);
3046 }
3047
3048 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
3049                                       struct obd_import *imp);
3050 __u64 ptlrpc_next_xid(void);
3051 __u64 ptlrpc_sample_next_xid(void);
3052 __u64 ptlrpc_req_xid(struct ptlrpc_request *request);
3053
3054 /* Set of routines to run a function in ptlrpcd context */
3055 void *ptlrpcd_alloc_work(struct obd_import *imp,
3056                          int (*cb)(const struct lu_env *, void *), void *data);
3057 void ptlrpcd_destroy_work(void *handler);
3058 int ptlrpcd_queue_work(void *handler);
3059
3060 /** @} */
3061 struct ptlrpc_service_buf_conf {
3062         /* nbufs is buffers # to allocate when growing the pool */
3063         unsigned int                    bc_nbufs;
3064         /* buffer size to post */
3065         unsigned int                    bc_buf_size;
3066         /* portal to listed for requests on */
3067         unsigned int                    bc_req_portal;
3068         /* portal of where to send replies to */
3069         unsigned int                    bc_rep_portal;
3070         /* maximum request size to be accepted for this service */
3071         unsigned int                    bc_req_max_size;
3072         /* maximum reply size this service can ever send */
3073         unsigned int                    bc_rep_max_size;
3074 };
3075
3076 struct ptlrpc_service_thr_conf {
3077         /* threadname should be 8 characters or less - 6 will be added on */
3078         char                            *tc_thr_name;
3079         /* threads increasing factor for each CPU */
3080         unsigned int                    tc_thr_factor;
3081         /* service threads # to start on each partition while initializing */
3082         unsigned int                    tc_nthrs_init;
3083         /*
3084          * low water of threads # upper-limit on each partition while running,
3085          * service availability may be impacted if threads number is lower
3086          * than this value. It can be ZERO if the service doesn't require
3087          * CPU affinity or there is only one partition.
3088          */
3089         unsigned int                    tc_nthrs_base;
3090         /* "soft" limit for total threads number */
3091         unsigned int                    tc_nthrs_max;
3092         /* user specified threads number, it will be validated due to
3093          * other members of this structure. */
3094         unsigned int                    tc_nthrs_user;
3095         /* set NUMA node affinity for service threads */
3096         unsigned int                    tc_cpu_affinity;
3097         /* Tags for lu_context associated with service thread */
3098         __u32                           tc_ctx_tags;
3099 };
3100
3101 struct ptlrpc_service_cpt_conf {
3102         struct cfs_cpt_table            *cc_cptable;
3103         /* string pattern to describe CPTs for a service */
3104         char                            *cc_pattern;
3105 };
3106
3107 struct ptlrpc_service_conf {
3108         /* service name */
3109         char                            *psc_name;
3110         /* soft watchdog timeout multiplifier to print stuck service traces */
3111         unsigned int                    psc_watchdog_factor;
3112         /* buffer information */
3113         struct ptlrpc_service_buf_conf  psc_buf;
3114         /* thread information */
3115         struct ptlrpc_service_thr_conf  psc_thr;
3116         /* CPU partition information */
3117         struct ptlrpc_service_cpt_conf  psc_cpt;
3118         /* function table */
3119         struct ptlrpc_service_ops       psc_ops;
3120 };
3121
3122 /* ptlrpc/service.c */
3123 /**
3124  * Server-side services API. Register/unregister service, request state
3125  * management, service thread management
3126  *
3127  * @{
3128  */
3129 void ptlrpc_save_lock(struct ptlrpc_request *req,
3130                       struct lustre_handle *lock, int mode, int no_ack);
3131 void ptlrpc_commit_replies(struct obd_export *exp);
3132 void ptlrpc_dispatch_difficult_reply(struct ptlrpc_reply_state *rs);
3133 void ptlrpc_schedule_difficult_reply(struct ptlrpc_reply_state *rs);
3134 int ptlrpc_hpreq_handler(struct ptlrpc_request *req);
3135 struct ptlrpc_service *ptlrpc_register_service(
3136                                 struct ptlrpc_service_conf *conf,
3137                                 struct proc_dir_entry *proc_entry);
3138 void ptlrpc_stop_all_threads(struct ptlrpc_service *svc);
3139
3140 int ptlrpc_start_threads(struct ptlrpc_service *svc);
3141 int ptlrpc_unregister_service(struct ptlrpc_service *service);
3142 int liblustre_check_services(void *arg);
3143 void ptlrpc_daemonize(char *name);
3144 int ptlrpc_service_health_check(struct ptlrpc_service *);
3145 void ptlrpc_server_drop_request(struct ptlrpc_request *req);
3146 void ptlrpc_request_change_export(struct ptlrpc_request *req,
3147                                   struct obd_export *export);
3148 void ptlrpc_update_export_timer(struct obd_export *exp, long extra_delay);
3149
3150 int ptlrpc_hr_init(void);
3151 void ptlrpc_hr_fini(void);
3152
3153 /** @} */
3154
3155 /* ptlrpc/import.c */
3156 /**
3157  * Import API
3158  * @{
3159  */
3160 int ptlrpc_connect_import(struct obd_import *imp);
3161 int ptlrpc_init_import(struct obd_import *imp);
3162 int ptlrpc_disconnect_import(struct obd_import *imp, int noclose);
3163 int ptlrpc_import_recovery_state_machine(struct obd_import *imp);
3164 void deuuidify(char *uuid, const char *prefix, char **uuid_start,
3165                int *uuid_len);
3166
3167 /* ptlrpc/pack_generic.c */
3168 int ptlrpc_reconnect_import(struct obd_import *imp);
3169 /** @} */
3170
3171 /**
3172  * ptlrpc msg buffer and swab interface 
3173  *
3174  * @{
3175  */
3176 int ptlrpc_buf_need_swab(struct ptlrpc_request *req, const int inout,
3177                          int index);
3178 void ptlrpc_buf_set_swabbed(struct ptlrpc_request *req, const int inout,
3179                                 int index);
3180 int ptlrpc_unpack_rep_msg(struct ptlrpc_request *req, int len);
3181 int ptlrpc_unpack_req_msg(struct ptlrpc_request *req, int len);
3182
3183 int lustre_msg_check_version(struct lustre_msg *msg, __u32 version);
3184 void lustre_init_msg_v2(struct lustre_msg_v2 *msg, int count, __u32 *lens,
3185                         char **bufs);
3186 int lustre_pack_request(struct ptlrpc_request *, __u32 magic, int count,
3187                         __u32 *lens, char **bufs);
3188 int lustre_pack_reply(struct ptlrpc_request *, int count, __u32 *lens,
3189                       char **bufs);
3190 int lustre_pack_reply_v2(struct ptlrpc_request *req, int count,
3191                          __u32 *lens, char **bufs, int flags);
3192 #define LPRFL_EARLY_REPLY 1
3193 int lustre_pack_reply_flags(struct ptlrpc_request *, int count, __u32 *lens,
3194                             char **bufs, int flags);
3195 int lustre_shrink_msg(struct lustre_msg *msg, int segment,
3196                       unsigned int newlen, int move_data);
3197 void lustre_free_reply_state(struct ptlrpc_reply_state *rs);
3198 int __lustre_unpack_msg(struct lustre_msg *m, int len);
3199 int lustre_msg_hdr_size(__u32 magic, int count);
3200 int lustre_msg_size(__u32 magic, int count, __u32 *lengths);
3201 int lustre_msg_size_v2(int count, __u32 *lengths);
3202 int lustre_packed_msg_size(struct lustre_msg *msg);
3203 int lustre_msg_early_size(void);
3204 void *lustre_msg_buf_v2(struct lustre_msg_v2 *m, int n, int min_size);
3205 void *lustre_msg_buf(struct lustre_msg *m, int n, int minlen);
3206 int lustre_msg_buflen(struct lustre_msg *m, int n);
3207 void lustre_msg_set_buflen(struct lustre_msg *m, int n, int len);
3208 int lustre_msg_bufcount(struct lustre_msg *m);
3209 char *lustre_msg_string(struct lustre_msg *m, int n, int max_len);
3210 __u32 lustre_msghdr_get_flags(struct lustre_msg *msg);
3211 void lustre_msghdr_set_flags(struct lustre_msg *msg, __u32 flags);
3212 __u32 lustre_msg_get_flags(struct lustre_msg *msg);
3213 void lustre_msg_add_flags(struct lustre_msg *msg, int flags);
3214 void lustre_msg_set_flags(struct lustre_msg *msg, int flags);
3215 void lustre_msg_clear_flags(struct lustre_msg *msg, int flags);
3216 __u32 lustre_msg_get_op_flags(struct lustre_msg *msg);
3217 void lustre_msg_add_op_flags(struct lustre_msg *msg, int flags);
3218 void lustre_msg_set_op_flags(struct lustre_msg *msg, int flags);
3219 struct lustre_handle *lustre_msg_get_handle(struct lustre_msg *msg);
3220 __u32 lustre_msg_get_type(struct lustre_msg *msg);
3221 __u32 lustre_msg_get_version(struct lustre_msg *msg);
3222 void lustre_msg_add_version(struct lustre_msg *msg, int version);
3223 __u32 lustre_msg_get_opc(struct lustre_msg *msg);
3224 __u64 lustre_msg_get_last_xid(struct lustre_msg *msg);
3225 __u64 lustre_msg_get_last_committed(struct lustre_msg *msg);
3226 __u64 *lustre_msg_get_versions(struct lustre_msg *msg);
3227 __u64 lustre_msg_get_transno(struct lustre_msg *msg);
3228 __u64 lustre_msg_get_slv(struct lustre_msg *msg);
3229 __u32 lustre_msg_get_limit(struct lustre_msg *msg);
3230 void lustre_msg_set_slv(struct lustre_msg *msg, __u64 slv);
3231 void lustre_msg_set_limit(struct lustre_msg *msg, __u64 limit);
3232 int lustre_msg_get_status(struct lustre_msg *msg);
3233 __u32 lustre_msg_get_conn_cnt(struct lustre_msg *msg);
3234 int lustre_msg_is_v1(struct lustre_msg *msg);
3235 __u32 lustre_msg_get_magic(struct lustre_msg *msg);
3236 __u32 lustre_msg_get_timeout(struct lustre_msg *msg);
3237 __u32 lustre_msg_get_service_time(struct lustre_msg *msg);
3238 char *lustre_msg_get_jobid(struct lustre_msg *msg);
3239 __u32 lustre_msg_get_cksum(struct lustre_msg *msg);
3240 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 7, 53, 0)
3241 __u32 lustre_msg_calc_cksum(struct lustre_msg *msg, int compat18);
3242 #else
3243 __u32 lustre_msg_calc_cksum(struct lustre_msg *msg);
3244 #endif
3245 void lustre_msg_set_handle(struct lustre_msg *msg,struct lustre_handle *handle);
3246 void lustre_msg_set_type(struct lustre_msg *msg, __u32 type);
3247 void lustre_msg_set_opc(struct lustre_msg *msg, __u32 opc);
3248 void lustre_msg_set_last_xid(struct lustre_msg *msg, __u64 last_xid);
3249 void lustre_msg_set_last_committed(struct lustre_msg *msg,__u64 last_committed);
3250 void lustre_msg_set_versions(struct lustre_msg *msg, __u64 *versions);
3251 void lustre_msg_set_transno(struct lustre_msg *msg, __u64 transno);
3252 void lustre_msg_set_status(struct lustre_msg *msg, __u32 status);
3253 void lustre_msg_set_conn_cnt(struct lustre_msg *msg, __u32 conn_cnt);
3254 void ptlrpc_req_set_repsize(struct ptlrpc_request *req, int count, __u32 *sizes);
3255 void ptlrpc_request_set_replen(struct ptlrpc_request *req);
3256 void lustre_msg_set_timeout(struct lustre_msg *msg, __u32 timeout);
3257 void lustre_msg_set_service_time(struct lustre_msg *msg, __u32 service_time);
3258 void lustre_msg_set_jobid(struct lustre_msg *msg, char *jobid);
3259 void lustre_msg_set_cksum(struct lustre_msg *msg, __u32 cksum);
3260
3261 static inline void
3262 lustre_shrink_reply(struct ptlrpc_request *req, int segment,
3263                     unsigned int newlen, int move_data)
3264 {
3265         LASSERT(req->rq_reply_state);
3266         LASSERT(req->rq_repmsg);
3267         req->rq_replen = lustre_shrink_msg(req->rq_repmsg, segment,
3268                                            newlen, move_data);
3269 }
3270
3271 #ifdef LUSTRE_TRANSLATE_ERRNOS
3272
3273 static inline int ptlrpc_status_hton(int h)
3274 {
3275         /*
3276          * Positive errnos must be network errnos, such as LUSTRE_EDEADLK,
3277          * ELDLM_LOCK_ABORTED, etc.
3278          */
3279         if (h < 0)
3280                 return -lustre_errno_hton(-h);
3281         else
3282                 return h;
3283 }
3284
3285 static inline int ptlrpc_status_ntoh(int n)
3286 {
3287         /*
3288          * See the comment in ptlrpc_status_hton().
3289          */
3290         if (n < 0)
3291                 return -lustre_errno_ntoh(-n);
3292         else
3293                 return n;
3294 }
3295
3296 #else
3297
3298 #define ptlrpc_status_hton(h) (h)
3299 #define ptlrpc_status_ntoh(n) (n)
3300
3301 #endif
3302 /** @} */
3303
3304 /** Change request phase of \a req to \a new_phase */
3305 static inline void
3306 ptlrpc_rqphase_move(struct ptlrpc_request *req, enum rq_phase new_phase)
3307 {
3308         if (req->rq_phase == new_phase)
3309                 return;
3310
3311         if (new_phase == RQ_PHASE_UNREGISTERING) {
3312                 req->rq_next_phase = req->rq_phase;
3313                 if (req->rq_import)
3314                         atomic_inc(&req->rq_import->imp_unregistering);
3315         }
3316
3317         if (req->rq_phase == RQ_PHASE_UNREGISTERING) {
3318                 if (req->rq_import)
3319                         atomic_dec(&req->rq_import->imp_unregistering);
3320         }
3321
3322         DEBUG_REQ(D_INFO, req, "move req \"%s\" -> \"%s\"",
3323                   ptlrpc_rqphase2str(req), ptlrpc_phase2str(new_phase));
3324
3325         req->rq_phase = new_phase;
3326 }
3327
3328 /**
3329  * Returns true if request \a req got early reply and hard deadline is not met 
3330  */
3331 static inline int
3332 ptlrpc_client_early(struct ptlrpc_request *req)
3333 {
3334         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
3335             req->rq_reply_deadline > cfs_time_current_sec())
3336                 return 0;
3337         return req->rq_early;
3338 }
3339
3340 /**
3341  * Returns true if we got real reply from server for this request
3342  */
3343 static inline int
3344 ptlrpc_client_replied(struct ptlrpc_request *req)
3345 {
3346         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
3347             req->rq_reply_deadline > cfs_time_current_sec())
3348                 return 0;
3349         return req->rq_replied;
3350 }
3351
3352 /** Returns true if request \a req is in process of receiving server reply */
3353 static inline int
3354 ptlrpc_client_recv(struct ptlrpc_request *req)
3355 {
3356         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
3357             req->rq_reply_deadline > cfs_time_current_sec())
3358                 return 1;
3359         return req->rq_receiving_reply;
3360 }
3361
3362 static inline int
3363 ptlrpc_client_recv_or_unlink(struct ptlrpc_request *req)
3364 {
3365         int rc;
3366
3367         spin_lock(&req->rq_lock);
3368         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
3369             req->rq_reply_deadline > cfs_time_current_sec()) {
3370                 spin_unlock(&req->rq_lock);
3371                 return 1;
3372         }
3373         rc = req->rq_receiving_reply ;
3374         rc = rc || req->rq_req_unlink || req->rq_reply_unlink;
3375         spin_unlock(&req->rq_lock);
3376         return rc;
3377 }
3378
3379 static inline void
3380 ptlrpc_client_wake_req(struct ptlrpc_request *req)
3381 {
3382         if (req->rq_set == NULL)
3383                 wake_up(&req->rq_reply_waitq);
3384         else
3385                 wake_up(&req->rq_set->set_waitq);
3386 }
3387
3388 static inline void
3389 ptlrpc_rs_addref(struct ptlrpc_reply_state *rs)
3390 {
3391         LASSERT(atomic_read(&rs->rs_refcount) > 0);
3392         atomic_inc(&rs->rs_refcount);
3393 }
3394
3395 static inline void
3396 ptlrpc_rs_decref(struct ptlrpc_reply_state *rs)
3397 {
3398         LASSERT(atomic_read(&rs->rs_refcount) > 0);
3399         if (atomic_dec_and_test(&rs->rs_refcount))
3400                 lustre_free_reply_state(rs);
3401 }
3402
3403 /* Should only be called once per req */
3404 static inline void ptlrpc_req_drop_rs(struct ptlrpc_request *req)
3405 {
3406         if (req->rq_reply_state == NULL)
3407                 return; /* shouldn't occur */
3408         ptlrpc_rs_decref(req->rq_reply_state);
3409         req->rq_reply_state = NULL;
3410         req->rq_repmsg = NULL;
3411 }
3412
3413 static inline __u32 lustre_request_magic(struct ptlrpc_request *req)
3414 {
3415         return lustre_msg_get_magic(req->rq_reqmsg);
3416 }
3417
3418 static inline int ptlrpc_req_get_repsize(struct ptlrpc_request *req)
3419 {
3420         switch (req->rq_reqmsg->lm_magic) {
3421         case LUSTRE_MSG_MAGIC_V2:
3422                 return req->rq_reqmsg->lm_repsize;
3423         default:
3424                 LASSERTF(0, "incorrect message magic: %08x\n",
3425                          req->rq_reqmsg->lm_magic);
3426                 return -EFAULT;
3427         }
3428 }
3429
3430 static inline int ptlrpc_send_limit_expired(struct ptlrpc_request *req)
3431 {
3432         if (req->rq_delay_limit != 0 &&
3433             cfs_time_before(cfs_time_add(req->rq_queued_time,
3434                                          cfs_time_seconds(req->rq_delay_limit)),
3435                             cfs_time_current())) {
3436                 return 1;
3437         }
3438         return 0;
3439 }
3440
3441 static inline int ptlrpc_no_resend(struct ptlrpc_request *req)
3442 {
3443         if (!req->rq_no_resend && ptlrpc_send_limit_expired(req)) {
3444                 spin_lock(&req->rq_lock);
3445                 req->rq_no_resend = 1;
3446                 spin_unlock(&req->rq_lock);
3447         }
3448         return req->rq_no_resend;
3449 }
3450
3451 static inline int
3452 ptlrpc_server_get_timeout(struct ptlrpc_service_part *svcpt)
3453 {
3454         int at = AT_OFF ? 0 : at_get(&svcpt->scp_at_estimate);
3455
3456         return svcpt->scp_service->srv_watchdog_factor *
3457                max_t(int, at, obd_timeout);
3458 }
3459
3460 static inline struct ptlrpc_service *
3461 ptlrpc_req2svc(struct ptlrpc_request *req)
3462 {
3463         LASSERT(req->rq_rqbd != NULL);
3464         return req->rq_rqbd->rqbd_svcpt->scp_service;
3465 }
3466
3467 /* ldlm/ldlm_lib.c */
3468 /**
3469  * Target client logic
3470  * @{
3471  */
3472 int client_obd_setup(struct obd_device *obddev, struct lustre_cfg *lcfg);
3473 int client_obd_cleanup(struct obd_device *obddev);
3474 int client_connect_import(const struct lu_env *env,
3475                           struct obd_export **exp, struct obd_device *obd,
3476                           struct obd_uuid *cluuid, struct obd_connect_data *,
3477                           void *localdata);
3478 int client_disconnect_export(struct obd_export *exp);
3479 int client_import_add_conn(struct obd_import *imp, struct obd_uuid *uuid,
3480                            int priority);
3481 int client_import_del_conn(struct obd_import *imp, struct obd_uuid *uuid);
3482 int client_import_find_conn(struct obd_import *imp, lnet_nid_t peer,
3483                             struct obd_uuid *uuid);
3484 int import_set_conn_priority(struct obd_import *imp, struct obd_uuid *uuid);
3485 void client_destroy_import(struct obd_import *imp);
3486 /** @} */
3487
3488 #ifdef HAVE_SERVER_SUPPORT
3489 int server_disconnect_export(struct obd_export *exp);
3490 #endif
3491
3492 /* ptlrpc/pinger.c */
3493 /**
3494  * Pinger API (client side only)
3495  * @{
3496  */
3497 enum timeout_event {
3498         TIMEOUT_GRANT = 1
3499 };
3500 struct timeout_item;
3501 typedef int (*timeout_cb_t)(struct timeout_item *, void *);
3502 int ptlrpc_pinger_add_import(struct obd_import *imp);
3503 int ptlrpc_pinger_del_import(struct obd_import *imp);
3504 int ptlrpc_add_timeout_client(int time, enum timeout_event event,
3505                               timeout_cb_t cb, void *data,
3506                               struct list_head *obd_list);
3507 int ptlrpc_del_timeout_client(struct list_head *obd_list,
3508                               enum timeout_event event);
3509 struct ptlrpc_request * ptlrpc_prep_ping(struct obd_import *imp);
3510 int ptlrpc_obd_ping(struct obd_device *obd);
3511 void ping_evictor_start(void);
3512 void ping_evictor_stop(void);
3513 void ptlrpc_pinger_ir_up(void);
3514 void ptlrpc_pinger_ir_down(void);
3515 /** @} */
3516 int ptlrpc_pinger_suppress_pings(void);
3517
3518 /* ptlrpc daemon bind policy */
3519 typedef enum {
3520         /* all ptlrpcd threads are free mode */
3521         PDB_POLICY_NONE          = 1,
3522         /* all ptlrpcd threads are bound mode */
3523         PDB_POLICY_FULL          = 2,
3524         /* <free1 bound1> <free2 bound2> ... <freeN boundN> */
3525         PDB_POLICY_PAIR          = 3,
3526         /* <free1 bound1> <bound1 free2> ... <freeN boundN> <boundN free1>,
3527          * means each ptlrpcd[X] has two partners: thread[X-1] and thread[X+1].
3528          * If kernel supports NUMA, pthrpcd threads are binded and
3529          * grouped by NUMA node */
3530         PDB_POLICY_NEIGHBOR      = 4,
3531 } pdb_policy_t;
3532
3533 /* ptlrpc daemon load policy
3534  * It is caller's duty to specify how to push the async RPC into some ptlrpcd
3535  * queue, but it is not enforced, affected by "ptlrpcd_bind_policy". If it is
3536  * "PDB_POLICY_FULL", then the RPC will be processed by the selected ptlrpcd,
3537  * Otherwise, the RPC may be processed by the selected ptlrpcd or its partner,
3538  * depends on which is scheduled firstly, to accelerate the RPC processing. */
3539 typedef enum {
3540         /* on the same CPU core as the caller */
3541         PDL_POLICY_SAME         = 1,
3542         /* within the same CPU partition, but not the same core as the caller */
3543         PDL_POLICY_LOCAL        = 2,
3544         /* round-robin on all CPU cores, but not the same core as the caller */
3545         PDL_POLICY_ROUND        = 3,
3546         /* the specified CPU core is preferred, but not enforced */
3547         PDL_POLICY_PREFERRED    = 4,
3548 } pdl_policy_t;
3549
3550 /* ptlrpc/ptlrpcd.c */
3551 void ptlrpcd_stop(struct ptlrpcd_ctl *pc, int force);
3552 void ptlrpcd_free(struct ptlrpcd_ctl *pc);
3553 void ptlrpcd_wake(struct ptlrpc_request *req);
3554 void ptlrpcd_add_req(struct ptlrpc_request *req, pdl_policy_t policy, int idx);
3555 void ptlrpcd_add_rqset(struct ptlrpc_request_set *set);
3556 int ptlrpcd_addref(void);
3557 void ptlrpcd_decref(void);
3558
3559 /* ptlrpc/lproc_ptlrpc.c */
3560 /**
3561  * procfs output related functions
3562  * @{
3563  */
3564 const char* ll_opcode2str(__u32 opcode);
3565 #ifdef LPROCFS
3566 void ptlrpc_lprocfs_register_obd(struct obd_device *obd);
3567 void ptlrpc_lprocfs_unregister_obd(struct obd_device *obd);
3568 void ptlrpc_lprocfs_brw(struct ptlrpc_request *req, int bytes);
3569 #else
3570 static inline void ptlrpc_lprocfs_register_obd(struct obd_device *obd) {}
3571 static inline void ptlrpc_lprocfs_unregister_obd(struct obd_device *obd) {}
3572 static inline void ptlrpc_lprocfs_brw(struct ptlrpc_request *req, int bytes) {}
3573 #endif
3574 /** @} */
3575
3576 /* ptlrpc/llog_server.c */
3577 int llog_origin_handle_open(struct ptlrpc_request *req);
3578 int llog_origin_handle_destroy(struct ptlrpc_request *req);
3579 int llog_origin_handle_prev_block(struct ptlrpc_request *req);
3580 int llog_origin_handle_next_block(struct ptlrpc_request *req);
3581 int llog_origin_handle_read_header(struct ptlrpc_request *req);
3582 int llog_origin_handle_close(struct ptlrpc_request *req);
3583
3584 /* ptlrpc/llog_client.c */
3585 extern struct llog_operations llog_client_ops;
3586
3587 /** @} net */
3588
3589 #endif
3590 /** @} PtlRPC */