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