Whamcloud - gitweb
LU-3195 tests: Interop 2.3.0<->2.3.63 sanity-quota test_6
[fs/lustre-release.git] / lnet / klnds / gnilnd / gnilnd.h
1 /*
2  * Copyright (C) 2004 Cluster File Systems, Inc.
3  *
4  * Copyright (C) 2009-2012 Cray, Inc.
5  *
6  *   Derived from work by: Eric Barton <eric@bartonsoftware.com>
7  *   Author: Nic Henke <nic@cray.com>
8  *   Author: James Shimek <jshimek@cray.com>
9  *
10  *   This file is part of Lustre, http://www.lustre.org.
11  *
12  *   Lustre is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Lustre is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Lustre; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  *
25  */
26 #ifndef _GNILND_GNILND_H_
27 #define _GNILND_GNILND_H_
28
29 #ifndef EXPORT_SYMTAB
30 # define EXPORT_SYMTAB
31 #endif
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/mm.h>
35 #include <linux/string.h>
36 #include <linux/stat.h>
37 #include <linux/errno.h>
38 #ifdef HAVE_LINUX_KERNEL_LOCK
39 #include <linux/smp_lock.h>
40 #endif
41 #include <linux/unistd.h>
42 #include <linux/uio.h>
43 #include <linux/time.h>
44 #include <asm/timex.h>
45
46 #include <asm/system.h>
47 #include <asm/uaccess.h>
48 #include <asm/io.h>
49
50 #include <linux/init.h>
51 #include <linux/fs.h>
52 #include <linux/file.h>
53 #include <linux/stat.h>
54 #include <linux/list.h>
55 #include <linux/kmod.h>
56 #include <linux/sysctl.h>
57 #include <linux/kthread.h>
58 #include <linux/nmi.h>
59
60 #include <net/sock.h>
61 #include <linux/in.h>
62 #include <linux/nmi.h>
63
64 #define DEBUG_SUBSYSTEM S_LND
65
66 #include <libcfs/linux/kp30.h>
67 #include <libcfs/libcfs.h>
68 #include <lnet/lnet.h>
69 #include <lnet/lib-lnet.h>
70 #include <lnet/lnet-sysctl.h>
71
72 #include <gni_pub.h>
73 #include "gnilnd_version.h"
74
75
76 /* tunables determined at compile time */
77 #define GNILND_MIN_TIMEOUT      5               /* minimum timeout interval (seconds) */
78 #define GNILND_TO2KA(t)         (((t)-1)/2)     /* timeout -> keepalive interval */
79 #define GNILND_MIN_RECONNECT_TO (GNILND_BASE_TIMEOUT/4)
80 #define GNILND_MAX_RECONNECT_TO GNILND_BASE_TIMEOUT
81 #define GNILND_HARDWARE_TIMEOUT 15              /* maximum time for data to travel between nodes */
82 #define GNILND_MDD_TIMEOUT      15              /* MDD hold timeout in minutes */
83 #define GNILND_SCHED_TIMEOUT       1
84 #define GNILND_DGRAM_TIMEOUT       2
85 #define GNILND_FAST_MAPPING_TRY   \
86         *kgnilnd_tunables.kgn_max_retransmits   /* maximum number to attempt mapping of a tx */
87 #define GNILND_MAP_RETRY_RATE      1            /* interval between mapping attempts in jiffies */
88
89 /* map failure timeout */
90 #define GNILND_MAP_TIMEOUT         \
91         (cfs_time_seconds(*kgnilnd_tunables.kgn_timeout * \
92          *kgnilnd_tunables.kgn_timeout))
93
94 /* reaper thread wakup interval */
95 #define GNILND_REAPER_THREAD_WAKE  1
96 /* reaper thread checks each conn NCHECKS time every kgnilnd_data.kgn_new_min_timeout */
97 #define GNILND_REAPER_NCHECKS      4
98
99 /* fixed constants */
100 #define GNILND_MAXDEVS          1               /* max # of GNI devices currently supported */
101 #define GNILND_MBOX_CREDITS     256             /* number of credits per mailbox */
102 #define GNILND_COOKIE           0xa3579         /* cookie used by along with ptag by GNI */
103 #define GNILND_CONN_MAGIC         0xa100f       /* magic value for verifying connection validity */
104 /* checksum values */
105 #define GNILND_CHECKSUM_OFF             0       /* checksum turned off */
106 #define GNILND_CHECKSUM_SMSG_HEADER     1       /* Only checksum SMSG header */
107 #define GNILND_CHECKSUM_SMSG            2       /* checksum entire SMSG packet */
108 #define GNILND_CHECKSUM_SMSG_BTE        3       /* Full checksum support */
109
110 /* tune down some COMPUTE options as they won't see the same number of connections and
111  * don't need the throughput of multiple threads by default */
112 #if defined(CONFIG_CRAY_COMPUTE)
113 #define GNILND_SCHED_THREADS      1             /* default # of kgnilnd_scheduler threads */
114 #define GNILND_FMABLK             64            /* default number of mboxes per fmablk */
115 #define GNILND_SCHED_NICE         0             /* default nice value for scheduler threads */
116 #define GNILND_COMPUTE            1             /* compute image */
117 #else
118 #define GNILND_SCHED_THREADS      3             /* default # of kgnilnd_scheduler threads */
119 #define GNILND_FMABLK             1024          /* default number of mboxes per fmablk */
120 #define GNILND_SCHED_NICE         -20           /* default nice value for scheduler threads */
121 #define GNILND_COMPUTE            0             /* service image */
122 #endif
123
124 /* EXTRA_BITS are there to allow us to hide NOOP/CLOSE and anything else out of band */
125 #define GNILND_EXTRA_BITS         1
126 /* maximum number of conns & bits for cqid in the SMSG event data */
127 #define GNILND_CQID_NBITS         (21 - GNILND_EXTRA_BITS)
128 #define GNILND_MSGID_TX_NBITS     (32 - GNILND_CQID_NBITS)
129 #define GNILND_MAX_CQID           (1 << GNILND_CQID_NBITS)
130 #define GNILND_MAX_MSG_ID         (1 << GNILND_MSGID_TX_NBITS)
131 #define GNILND_MAX_MSG_SIZE       (*kgnilnd_tunables.kgn_max_immediate + sizeof(kgn_msg_t))
132
133 /* need sane upper bound to limit copy overhead */
134 #define GNILND_MAX_IMMEDIATE      (64<<10)
135
136 /* payload size to add to the base mailbox size
137  * This is subtracting 2 from the concurrent_sends as 4 messages are included in the size
138  * gni_smsg_buff_size_needed calculates, the MAX_PAYLOAD is added to
139  * the calculation return from that function.*/
140 #define GNILND_MBOX_PAYLOAD     \
141           (GNILND_MAX_MSG_SIZE * \
142           ((*kgnilnd_tunables.kgn_concurrent_sends - 2) * 2));
143
144 /* timeout -> deadman timer for kgni mdd holds */
145 #define GNILND_TIMEOUT2DEADMAN   ((*kgnilnd_tunables.kgn_mdd_timeout) * 1000 * 60)
146
147 /* timeout for failing sends in t is in jiffies*/
148 #define GNILND_TIMEOUTRX(t)     (t + cfs_time_seconds(*kgnilnd_tunables.kgn_hardware_timeout))
149
150 /* time when to release from purgatory in the reaper thread in jiffies */
151 #define GNILND_PURG_RELEASE(t)   (GNILND_TIMEOUTRX(t) * 3)
152
153 /* Macro for finding last_rx 2 datapoints are compared
154  * and the most recent one in jiffies is returned.
155  */
156 #define GNILND_LASTRX(conn) (time_after(conn->gnc_last_rx, conn->gnc_last_rx_cq) \
157                                 ? conn->gnc_last_rx : conn->gnc_last_rx_cq)
158
159 /************************************************************************
160  * Enum, flag and tag data
161  */
162 #define GNILND_INIT_NOTHING         0
163 #define GNILND_INIT_DATA            1
164 #define GNILND_INIT_ALL             2
165
166 /* If you change the ordering away from MAPPED = UNMAPPED + 1, things break */
167 #define GNILND_BUF_NONE           0              /* buffer type not set */
168 #define GNILND_BUF_IMMEDIATE      1              /* immediate data */
169 #define GNILND_BUF_IMMEDIATE_KIOV 2              /* immediate data */
170 #define GNILND_BUF_PHYS_UNMAPPED  3              /* physical: not mapped yet */
171 #define GNILND_BUF_PHYS_MAPPED    4              /* physical: mapped already */
172 #define GNILND_BUF_VIRT_UNMAPPED  5              /* virtual: not mapped yet */
173 #define GNILND_BUF_VIRT_MAPPED    6              /* virtual: mapped already */
174
175 #define GNILND_TX_WAITING_REPLY      (1<<1)     /* expecting to receive reply */
176 #define GNILND_TX_WAITING_COMPLETION (1<<2)     /* waiting for smsg_send to complete */
177 #define GNILND_TX_PENDING_RDMA       (1<<3)     /* RDMA transaction pending until we get prev. completion */
178 #define GNILND_TX_QUIET_ERROR        (1<<4)     /* don't print error on tx_done */
179 #define GNILND_TX_FAIL_SMSG          (1<<5)     /* pass down error injection for SMSG fail */
180
181 /* stash above max CQID to avoid any collision */
182 #define GNILND_MSGID_NOOP           (GNILND_MAX_CQID + 128)
183 #define GNILND_MSGID_CLOSE          (GNILND_MSGID_NOOP + 1)
184
185 /* kgn_msg_t::gnm_type */
186 #define GNILND_MSG_NONE              0x00        /* illegal message */
187 #define GNILND_MSG_NOOP              0x01        /* empty gnm_u (keepalive) */
188 #define GNILND_MSG_IMMEDIATE         0x02        /* gnm_u.immediate */
189 #define GNILND_MSG_PUT_REQ           0x03        /* gnm_u.putreq (src->sink) */
190 #define GNILND_MSG_PUT_NAK           0x04        /* gnm_u.completion (no PUT match: sink->src) */
191 #define GNILND_MSG_PUT_ACK           0x05        /* gnm_u.putack (PUT matched: sink->src) */
192 #define GNILND_MSG_PUT_DONE          0x06        /* gnm_u.completion (src->sink) */
193 #define GNILND_MSG_GET_REQ           0x07        /* gnm_u.get (sink->src) */
194 #define GNILND_MSG_GET_NAK           0x08        /* gnm_u.completion (no GET match: src->sink) */
195 #define GNILND_MSG_GET_DONE          0x09        /* gnm_u.completion (src->sink) */
196 #define GNILND_MSG_CLOSE             0x0a        /* empty gnm_u */
197 #define GNILND_MSG_PUT_REQ_REV       0x0b        /* gnm_u.get (src->sink) */
198 #define GNILND_MSG_PUT_DONE_REV      0x0c        /* gnm_u.completion (sink->src) */
199 #define GNILND_MSG_PUT_NAK_REV       0x0d        /* gnm_u.completion (no PUT match: sink->src) */
200 #define GNILND_MSG_GET_REQ_REV       0x0e        /* gnm_u.get (sink->src ) */
201 #define GNILND_MSG_GET_ACK_REV       0x0f        /* gnm_u.getack (GET matched: src->sink) */
202 #define GNILND_MSG_GET_DONE_REV      0x10        /* gnm_u.completion (sink -> src) */
203 #define GNILND_MSG_GET_NAK_REV       0x11        /* gnm_u.completeion (no GET match: sink -> src) */
204
205 /* defines for gnc_*scheduled states */
206 #define GNILND_CONN_IDLE             0
207 #define GNILND_CONN_SCHED            1
208 #define GNILND_CONN_WANTS_SCHED      2
209 #define GNILND_CONN_PROCESS          3
210
211 #define GNILND_DEV_IDLE              0
212 #define GNILND_DEV_IRQ               1
213 #define GNILND_DEV_LOOP              2
214
215 #define GNILND_DGRAM_IDLE            0
216 #define GNILND_DGRAM_SCHED           1
217 #define GNILND_DGRAM_PROCESS         2
218
219 #define GNILND_PEER_IDLE             0
220 #define GNILND_PEER_CONNECT          1
221 #define GNILND_PEER_POSTING          2
222 #define GNILND_PEER_POSTED           3
223 #define GNILND_PEER_NEEDS_DEATH      4
224 #define GNILND_PEER_KILL             5
225
226 /* for gnc_close_recvd */
227 #define GNILND_CLOSE_RX              1
228 #define GNILND_CLOSE_INJECT1         2
229 #define GNILND_CLOSE_INJECT2         3
230 #define GNILND_CLOSE_EARLY           4
231
232 /* defines for why quiesce trigger set */
233 #define GNILND_QUIESCE_IDLE          0
234 #define GNILND_QUIESCE_ADMIN         1
235 #define GNILND_QUIESCE_RESET         2
236 #define GNILND_QUIESCE_HW_QUIESCE    3
237
238 #define GNILND_PEER_CLEAN            0
239 #define GNILND_PEER_PERSISTING       1
240
241 #define GNILND_DEL_CONN              0
242 #define GNILND_DEL_PEER              1
243 #define GNILND_CLEAR_PURGATORY       2
244
245 #define GNILND_RCA_NODE_UP           0
246 #define GNILND_RCA_NODE_DOWN         1
247 #define GNILND_RCA_NODE_UNKNOWN      2
248
249 /* defines for reverse RDMA states */
250 #define GNILND_REVERSE_NONE             0
251 #define GNILND_REVERSE_GET              1
252 #define GNILND_REVERSE_PUT              2
253 #define GNILND_REVERSE_BOTH             (GNILND_REVERSE_GET | GNILND_REVERSE_PUT)
254
255 typedef enum kgn_fmablk_state {
256         GNILND_FMABLK_IDLE = 0, /* is allocated or ready to be freed */
257         GNILND_FMABLK_PHYS,     /* allocated out of slab of physical memory */
258         GNILND_FMABLK_VIRT,     /* 'standard' vmalloc hunk */
259         GNILND_FMABLK_FREED,    /* after free */
260 } kgn_fmablk_state_t;
261
262 typedef enum kgn_tx_list_state {
263         GNILND_TX_IDLE = 0,     /* TX is on the idle list, kgn_idle_txs */
264         GNILND_TX_ALLOCD,       /* TX has been alloced (off of idle), could be in any state transition */
265         GNILND_TX_PEERQ,        /* TX on peer->gnp_tx_queue (no live conn) */
266         GNILND_TX_MAPQ,         /* TX on dev:gnd_map_tx for buffer mapping */
267         GNILND_TX_FMAQ,         /* TX waiting to be send on conn FMA */
268         GNILND_TX_LIVE_FMAQ,    /* TX live on the FMA wire, waiting for completion or reply */
269         GNILND_TX_RDMAQ,        /* TX waiting to send FMA confirmation to auth RDMA PUT */
270         GNILND_TX_LIVE_RDMAQ,   /* TX live on the RDMA wire, waiting for completion */
271         GNILND_TX_DYING,        /* TX got caught on MAPQ or RDMAQ while conn was closing, needs someone to call tx_done */
272         GNILND_TX_FREED         /* TX is free! */
273 } kgn_tx_list_state_t;
274
275 typedef enum kgn_conn_state {
276         /* don't start @ 0 - prevent memset(0) badness */
277         GNILND_CONN_DUMMY = 0,
278         GNILND_CONN_LISTEN,
279         GNILND_CONN_CONNECTING,
280         GNILND_CONN_ESTABLISHED,
281         GNILND_CONN_CLOSING,
282         GNILND_CONN_CLOSED,
283         GNILND_CONN_DONE,
284         GNILND_CONN_DESTROY_EP
285 } kgn_conn_state_t;
286
287 /* changing these requires a change to GNILND_CONNREQ_VERSION and
288  * will result in dropped packets instead of NAKs. Adding to this is
289  * acceptable without changing the CONNREQ_VERSION, but code should
290  * be ready to handle NAKs on version mismatch  */
291 typedef enum kgn_connreq_type {
292         GNILND_CONNREQ_REQ = 1,         /* how YOU doin' ? */
293         GNILND_CONNREQ_NAK,             /* NO soup for you! */
294         GNILND_CONNREQ_CLOSE,           /* we should see other people */
295 } kgn_connreq_type_t;
296
297 typedef enum kgn_dgram_state {
298         /* don't use 0 to avoid thinking a memset of zero is valid data */
299         GNILND_DGRAM_USED = 1,
300         GNILND_DGRAM_POSTING,
301         GNILND_DGRAM_POSTED,
302         GNILND_DGRAM_PROCESSING,
303         GNILND_DGRAM_CANCELED,
304         GNILND_DGRAM_DONE,
305 } kgn_dgram_state_t;
306
307 typedef enum kgn_dgram_type {
308         GNILND_DGRAM_REQ = 1,         /* how YOU doin' ? */
309         GNILND_DGRAM_WC_REQ,          /* you talkin' to ME? */
310         GNILND_DGRAM_NAK,             /* NO soup for you! */
311         GNILND_DGRAM_CLOSE,           /* we should see other people */
312 } kgn_dgram_type_t;
313
314 /************************************************************************
315  * Wire message structs.  These are sent in sender's byte order
316  * (i.e. receiver checks magic and flips if required).
317  */
318
319 #define GNILND_MSG_MAGIC     LNET_PROTO_GNI_MAGIC /* unique magic */
320 #define GNILND_DGRAM_MAGIC   0x0DDBA11
321
322 /*  kgn_msg_t - FMA/SMSG wire struct
323   v2:
324    * - added checksum to FMA
325    * moved seq before paylod
326    * WIRE_ATTR added for alignment
327   v3:
328    * added gnm_payload_len for FMA payload size
329   v4:
330    * added gncm_retval to completion, allowing return code transmission
331      on RDMA NAKs
332   v5:
333    * changed how CQID and TX ids are assigned
334   v6:
335    * added retval on CLOSE
336   v7:
337    * added payload checksumming
338   v8:
339    * reworked checksumming a bit, changed payload checksums
340 */
341 #define GNILND_MSG_VERSION              8
342 /* kgn_connreq_t connection request datagram wire struct
343   v2:
344    * added NAKs
345 */
346
347 #define GNILND_CONNREQ_VERSION          2
348
349 typedef struct kgn_gniparams {
350         __u32            gnpr_host_id;          /* ph. host ID of the NIC */
351         __u32            gnpr_cqid;             /* cqid I want peer to use when sending events to me */
352         gni_smsg_attr_t  gnpr_smsg_attr;        /* my short msg. attributes */
353 } WIRE_ATTR kgn_gniparams_t;
354
355 typedef struct kgn_nak_data {
356         __s32            gnnd_errno;            /* errno reason for NAK */
357
358 } WIRE_ATTR kgn_nak_data_t;
359
360 /* the first bits of the connreq struct CANNOT CHANGE FORM EVER
361  * without breaking the ability for us to properly NAK someone */
362 typedef struct kgn_connreq {                    /* connection request/response */
363         __u32             gncr_magic;           /* I'm an gnilnd connreq */
364         __u32             gncr_cksum;           /* checksum (0 == disabled) */
365         __u16             gncr_type;            /* REQ, NAK, etc */
366         __u16             gncr_version;         /* this is my version number */
367         __u32             gncr_timeout;         /* sender's timeout */
368         __u64             gncr_srcnid;          /* sender's NID */
369         __u64             gncr_dstnid;          /* who sender expects to listen */
370         __u64             gncr_peerstamp;       /* sender's instance stamp */
371         __u64             gncr_connstamp;       /* sender's connection stamp */
372
373         /* everything before this needs to stay static, adding after should
374          * result in a change to GNILND_CONNREQ_VERSION */
375
376         union {
377                 kgn_gniparams_t   gncr_gnparams;        /* sender's endpoint info */
378                 kgn_nak_data_t    gncr_nakdata;         /* data (rc, etc) for NAK */
379         };
380 } WIRE_ATTR kgn_connreq_t;
381
382 typedef struct {
383         gni_mem_handle_t  gnrd_key;
384         __u64             gnrd_addr;
385         __u32             gnrd_nob;
386 } WIRE_ATTR kgn_rdma_desc_t;
387
388 typedef struct {
389         lnet_hdr_t        gnim_hdr;             /* LNet header */
390         /* LNet payload is in FMA "Message Data" */
391 } WIRE_ATTR kgn_immediate_msg_t;
392
393 typedef struct {
394         lnet_hdr_t        gnprm_hdr;            /* LNet header */
395         __u64             gnprm_cookie;         /* opaque completion cookie */
396 } WIRE_ATTR kgn_putreq_msg_t;
397
398 typedef struct {
399         __u64             gnpam_src_cookie;     /* reflected completion cookie */
400         __u64             gnpam_dst_cookie;     /* opaque completion cookie */
401         __u16             gnpam_payload_cksum;  /* checksum for get msg */
402         kgn_rdma_desc_t   gnpam_desc;           /* sender's sink buffer */
403 } WIRE_ATTR kgn_putack_msg_t;
404
405 typedef struct {
406         lnet_hdr_t        gngm_hdr;             /* LNet header */
407         __u64             gngm_cookie;          /* opaque completion cookie */
408         __u16             gngm_payload_cksum;   /* checksum for put msg */
409         kgn_rdma_desc_t   gngm_desc;            /* sender's sink buffer */
410 } WIRE_ATTR kgn_get_msg_t;
411
412 typedef struct {
413         int               gncm_retval;          /* error on NAK, size on REQ */
414         __u64             gncm_cookie;          /* reflected completion cookie */
415 } WIRE_ATTR kgn_completion_msg_t;
416
417 typedef struct {                                /* NB must fit in FMA "Prefix" */
418         __u32             gnm_magic;            /* I'm an gni message */
419         __u16             gnm_version;          /* this is my version number */
420         __u16             gnm_type;             /* msg type */
421         __u64             gnm_srcnid;           /* sender's NID */
422         __u64             gnm_connstamp;        /* sender's connection stamp */
423         __u32             gnm_seq;              /* incrementing sequence number */
424         __u16             gnm_cksum;            /* checksum (0 == no checksum ) */
425         __u16             gnm_payload_cksum;    /* payload checksum (0 == no checksum ) */
426         __u32             gnm_payload_len;      /* size of the FMA payload sent */
427         union {
428                 kgn_immediate_msg_t   immediate;
429                 kgn_putreq_msg_t      putreq;
430                 kgn_putack_msg_t      putack;
431                 kgn_get_msg_t         get;
432                 kgn_completion_msg_t  completion;
433         } gnm_u;
434 } WIRE_ATTR kgn_msg_t;
435
436 /************************************************************************
437  * runtime tunable data
438  */
439
440 typedef struct kgn_tunables {
441         int              *kgn_min_reconnect_interval; /* connreq starting timeout & retransmit interval */
442         int              *kgn_max_reconnect_interval; /* ...exponentially increasing to this */
443         int              *kgn_credits;          /* # concurrent sends */
444         int              *kgn_fma_cq_size;      /* # entries in receive CQ */
445         int              *kgn_peer_credits;     /* # LNet peer credits */
446         int              *kgn_concurrent_sends; /* max # of max_immediate in mbox */
447         int              *kgn_timeout;          /* comms timeout (seconds) */
448         int              *kgn_max_immediate;    /* immediate payload breakpoint */
449         int              *kgn_checksum;         /* checksum data */
450         int              *kgn_checksum_dump;    /* dump raw data to D_INFO log when checksumming */
451         int              *kgn_bte_dlvr_mode;    /* BTE delivery mode mask */
452         int              *kgn_bte_relaxed_ordering; /* relaxed ordering (PASSPW) on BTE transfers */
453         int              *kgn_ptag;             /* PTAG for cdm_create */
454         int              *kgn_max_retransmits;  /* max number of FMA retransmits */
455         int              *kgn_nwildcard;        /* # wildcard per net to post */
456         int              *kgn_nice;             /* nice value for kgnilnd threads */
457         int              *kgn_rdmaq_intervals;  /* # intervals per second for rdmaq throttle */
458         int              *kgn_loops;            /* # of loops sched does before flush/heartbeat tickle */
459         int              *kgn_peer_hash_size;   /* size of kgn_peers */
460         int              *kgn_peer_health;      /* enable/disable peer health */
461         int              *kgn_peer_timeout;     /* Override of the default peer_timeout used by peer_health */
462         int              *kgn_vmap_cksum;       /* enable/disable vmap of kiov checksums */
463         int              *kgn_mbox_per_block;   /* mailboxes per fmablk */
464         int              *kgn_nphys_mbox;       /* # mailboxes to preallocate with physical memory */
465         int              *kgn_mbox_credits;     /* max credits per fma */
466         int              *kgn_sched_threads;    /* number of kgnilnd_scheduler threads */
467         int              *kgn_net_hash_size;    /* size of kgn_net_ht */
468         int              *kgn_hardware_timeout; /* max time for a message to get across the network */
469         int              *kgn_mdd_timeout;      /* max time for ghal to hold an mdd in minutes */
470         int              *kgn_sched_timeout;    /* max time for scheduler to run before yielding */
471         int              *kgn_dgram_timeout;    /* max time for dgram mover to run before scheduling */
472         int              *kgn_sched_nice;       /* nice value for kgnilnd scheduler threads */
473         int              *kgn_reverse_rdma;     /* Reverse RDMA setting */
474 #if CONFIG_SYSCTL && !CFS_SYSFS_MODULE_PARM
475         cfs_sysctl_table_header_t *kgn_sysctl;  /* sysctl interface */
476 #endif
477 } kgn_tunables_t;
478
479 typedef struct kgn_mbox_info {
480         lnet_nid_t mbx_prev_nid;
481         lnet_nid_t mbx_prev_purg_nid;
482         unsigned long mbx_create_conn_memset;
483         unsigned long mbx_add_purgatory;
484         unsigned long mbx_detach_of_purgatory;
485         unsigned long mbx_release_from_purgatory;
486         unsigned long mbx_release_purg_active_dgram;
487         int           mbx_nallocs;
488         int           mbx_nallocs_total;
489 } kgn_mbox_info_t;
490
491 typedef struct kgn_fma_memblock {
492         struct list_head    gnm_bufflist;                          /* memblock is part of device's  gnd_fma_buffs */
493         kgn_fmablk_state_t  gnm_state;                             /* how this memory allocated & state of it */
494         int                 gnm_hold_timeout;                      /* hold_timeout if used at unmap time */
495         int                 gnm_num_mboxs;                         /* total mboxes allocated */
496         int                 gnm_avail_mboxs;                       /* number of available mailboxes in the block */
497         int                 gnm_held_mboxs;                        /* number of purgatory held  mailboxes */
498         int                 gnm_mbox_size;                         /* size of the single mailbox */
499         int                 gnm_next_avail_mbox;                   /* next available mailbox */
500         long                gnm_max_timeout;                       /* max timeout for possible purgatory hold */
501         unsigned int        gnm_blk_size;                          /* how big is our hunk o memory ? */
502         void               *gnm_block;                             /* pointer to mem. block */
503         gni_mem_handle_t    gnm_hndl;                              /* mem. handle of the block */
504         unsigned long      *gnm_bit_array;                         /* bit array tracking allocation of mailboxes */
505         kgn_mbox_info_t    *gnm_mbox_info;                         /* array of mbox_information about each mbox */
506 } kgn_fma_memblock_t;
507
508 typedef struct kgn_device {
509         gni_nic_handle_t        gnd_handle;       /* device handle */
510         gni_cdm_handle_t        gnd_domain;       /* GNI communication domain */
511         gni_err_handle_t        gnd_err_handle;   /* device error handle */
512         unsigned long           gnd_sched_alive;  /* scheduler thread alive stamp */
513         gni_cq_handle_t         gnd_rcv_fma_cqh;  /* FMA rcv. completion queue handle */
514         gni_cq_handle_t         gnd_snd_rdma_cqh; /* rdma send completion queue handle */
515         gni_cq_handle_t         gnd_snd_fma_cqh;  /* rdma send completion queue handle */
516         struct mutex            gnd_cq_mutex;     /* CQ access serialization */
517         __u32                   gnd_host_id;      /* ph. host ID of the NIC */
518         int                     gnd_id;           /* device id, also index in kgn_devices */
519         __u32                   gnd_nid;          /* ph host ID translated to NID */
520         struct list_head        gnd_fma_buffs;    /* list of FMA memory blocks */
521         struct semaphore        gnd_fmablk_sem;   /* semaphore for FMA block memory alloc/free */
522         spinlock_t              gnd_fmablk_lock;  /* lock for mbox alloc/release */
523         atomic_t                gnd_nfmablk;      /* # of fmablk live */
524         atomic_t                gnd_fmablk_vers;  /* gnd_fma_bufs stamp */
525         atomic_t                gnd_neps;         /* # EP allocated to conns */
526         short                   gnd_ready;        /* stuff to do in scheduler thread */
527         struct list_head        gnd_ready_conns;  /* connections ready to tx/rx */
528         struct list_head        gnd_map_tx;       /* TX: needing buffer mapping */
529         wait_queue_head_t       gnd_waitq;        /* scheduler wakeup */
530         spinlock_t              gnd_lock;         /* serialise gnd_ready_conns */
531         struct list_head        gnd_connd_peers;  /* peers waiting for a connection */
532         spinlock_t              gnd_connd_lock;   /* serialise connd_peers */
533         wait_queue_head_t       gnd_dgram_waitq;  /* dgram_mover thread wakeup */
534         wait_queue_head_t       gnd_dgping_waitq; /* dgram thread ping-pong */
535         int                     gnd_dgram_ready;  /* dgrams need movin' */
536         struct list_head       *gnd_dgrams;       /* nid hash to dgrams */
537         atomic_t                gnd_ndgrams;      /* # dgrams extant */
538         atomic_t                gnd_nwcdgrams;    /* # wildcard dgrams to post on device */
539         spinlock_t              gnd_dgram_lock;   /* serialize gnd_dgrams */
540         struct list_head        gnd_map_list;     /* list of all mapped regions */
541         int                     gnd_map_version;  /* version flag for map list */
542         struct timer_list       gnd_map_timer;    /* wakey-wakey */
543         atomic_t                gnd_n_mdd;        /* number of total MDD - fma, tx, etc */
544         atomic_t                gnd_n_mdd_held;   /* number of total MDD held - fma, tx, etc */
545         atomic_t                gnd_nq_map;       /* # queued waiting for mapping (MDD/GART) */
546         atomic64_t              gnd_nbytes_map;   /* bytes of total GART maps - fma, tx, etc */
547         __u32                   gnd_map_nphys;    /* # TX phys mappings */
548         __u32                   gnd_map_physnop;  /* # TX phys pages mapped */
549         __u32                   gnd_map_nvirt;    /* # TX virt mappings */
550         __u64                   gnd_map_virtnob;  /* # TX virt bytes mapped */
551         spinlock_t              gnd_map_lock;     /* serialize gnd_map_XXX */
552         unsigned long           gnd_next_map;     /* next mapping attempt in jiffies */
553         int                     gnd_map_attempt;  /* last map attempt # */
554         unsigned long           gnd_last_map;     /* map timeout base */
555         struct list_head        gnd_rdmaq;        /* RDMA to be sent */
556         spinlock_t              gnd_rdmaq_lock;   /* play nice with others */
557         atomic64_t              gnd_rdmaq_bytes_out; /* # bytes authorized */
558         atomic64_t              gnd_rdmaq_bytes_ok;  /* # bytes allowed until deadline */
559         atomic_t                gnd_rdmaq_nstalls;   /* # stalls due to throttle */
560         unsigned long           gnd_rdmaq_deadline;  /* when does bucket roll over ? */
561         struct timer_list       gnd_rdmaq_timer;     /* wakey-wakey */
562         atomic_t                gnd_short_ntx;      /* TX stats: short messages */
563         atomic64_t              gnd_short_txbytes;  /* TX stats: short message  payload*/
564         atomic_t                gnd_rdma_ntx;       /* TX stats: rdma messages */
565         atomic64_t              gnd_rdma_txbytes;   /* TX stats: rdma message payload*/
566         atomic_t                gnd_short_nrx;      /* RX stats: short messages */
567         atomic64_t              gnd_short_rxbytes;  /* RX stats: short message  payload*/
568         atomic_t                gnd_rdma_nrx;       /* RX stats: rdma messages */
569         atomic64_t              gnd_rdma_rxbytes;   /* RX stats: rdma message payload*/
570         atomic_t                gnd_fast_try;       /* # of times fast send tried */
571         atomic_t                gnd_fast_ok;        /* # of times fast send ok */
572         atomic_t                gnd_fast_block;     /* # of times fast send blocked */
573         unsigned long           gnd_mutex_delay;
574         atomic_t                gnd_n_yield;
575         atomic_t                gnd_n_schedule;
576         atomic_t                gnd_canceled_dgrams; /* # of outstanding cancels */
577         struct rw_semaphore     gnd_conn_sem;       /* serialize connection changes/data movement */
578 } kgn_device_t;
579
580 typedef struct kgn_net {
581         struct list_head    gnn_list;           /* chain on kgni_data::kgn_nets */
582         kgn_device_t       *gnn_dev;            /* device for this net */
583         lnet_ni_t          *gnn_ni;             /* network interface instance */
584         atomic_t            gnn_refcount;       /* # current references */
585         int                 gnn_shutdown;       /* lnd_shutdown set */
586         __u16               gnn_netnum;         /* stash netnum for quicker lookup */
587 } kgn_net_t;
588
589 static inline lnet_nid_t
590 kgnilnd_lnd2lnetnid(lnet_nid_t ni_nid, lnet_nid_t kgnilnd_nid)
591 {
592         return LNET_MKNID(LNET_NIDNET(ni_nid), LNET_NIDADDR(kgnilnd_nid));
593 }
594
595 static inline lnet_nid_t
596 kgnilnd_lnet2lndnid(lnet_nid_t lnet_nid, lnet_nid_t kgnilnd_nid)
597 {
598         return LNET_MKNID(LNET_NIDNET(kgnilnd_nid), LNET_NIDADDR(lnet_nid));
599 }
600
601 /* The code for this is a bit ugly - but really  this just boils down to a __u64
602  * that can have various parts accessed separately.
603  *
604  * The lower 32 bits is the ID
605  * we give to SMSG for our completion event - it needs to be globally unique across
606  * all TX currently in flight. We separate that out into the CQID so that we can
607  * reference the connection (kgnilnd_cqid2conn_locked) and then the msg_id to pull
608  * the actual TX out of the per-connection gnc_tx_ref_table.
609  *
610  * The upper 32 bits are just extra stuff we put into the cookie to ensure this TX
611  * has a unique value we can send with RDMA setup messages to ensure the completion for
612  * those is unique across the wire. The extra 32 bits are there to ensure that TX id
613  * reuse is separated.
614  */
615
616 typedef struct kgn_tx_ev_id {
617         union {
618                 __u64             txe_cookie;    /* are you my mommy ? */
619                 struct {
620                         __u32     txe_chips;     /* extra bits to ensure ID unique across reuse */
621                         union {
622                                 __u32     txe_smsg_id;      /* ID for SMSG CQ event */
623                                 /* N.B: Never ever ever ever use the bit shifts directly,
624                                  * you are just asking for a world of pain and are at the
625                                  * mercy of the compiler layouts */
626                                 struct {
627                                         __u32     txe_cqid :GNILND_CQID_NBITS;
628                                         __u32     txe_idx :GNILND_MSGID_TX_NBITS;
629                                 };
630                         };
631                 };
632         };
633 } kgn_tx_ev_id_t;
634
635 typedef struct kgn_dgram {
636         struct list_head     gndg_list;          /* on hash dev::gnd_dgrams */
637         kgn_dgram_state_t    gndg_state;         /* state of this dgram */
638         kgn_dgram_type_t     gndg_type;          /* REQ, NAK, etc */
639         __u32                gndg_magic;         /* saftey word */
640         unsigned long        gndg_post_time;     /* time when we posted */
641         struct kgn_conn     *gndg_conn;          /* unbound conn with ep & smsg */
642         kgn_connreq_t        gndg_conn_out;      /* connreq from local node */
643         kgn_connreq_t        gndg_conn_in;       /* connreq from remote node */
644 } kgn_dgram_t;
645
646 typedef struct kgn_tx {                         /* message descriptor */
647         struct list_head          tx_list;      /* TX queues - peer, conn, rdma */
648         kgn_tx_list_state_t       tx_list_state;/* where in state machine is this TX ? */
649         struct list_head         *tx_list_p;    /* pointer to current list */
650         struct kgn_conn          *tx_conn;      /* owning conn */
651         lnet_msg_t               *tx_lntmsg[2]; /* ptl msgs to finalize on completion */
652         unsigned long             tx_qtime;     /* when tx started to wait for something (jiffies) */
653         unsigned long             tx_cred_wait; /* time spend waiting for smsg creds */
654         struct list_head          tx_map_list;  /* list entry on device map list */
655         unsigned int              tx_nob;       /* # bytes of payload */
656         int                       tx_buftype;   /* payload buffer type */
657         int                       tx_phys_npages; /* # physical pages */
658         gni_mem_handle_t          tx_map_key;   /* mapping key */
659         gni_mem_handle_t          tx_buffer_copy_map_key;  /* mapping key for page aligned copy */
660         gni_mem_segment_t        *tx_phys;      /* page descriptors */
661         kgn_msg_t                 tx_msg;       /* FMA message buffer */
662         kgn_tx_ev_id_t            tx_id;        /* who are you, who ? who ? */
663         __u8                      tx_state;     /* state of the descriptor */
664         int                       tx_retrans;   /* retrans count of RDMA */
665         int                       tx_rc;        /* if we need to stash the ret code until we see completion */
666         void                     *tx_buffer;    /* source/sink buffer */
667         void                     *tx_buffer_copy;   /* pointer to page aligned buffer */
668         unsigned int              tx_nob_rdma;  /* nob actually rdma */
669         unsigned int              tx_offset;    /* offset of data into copied buffer */
670         union {
671                 gni_post_descriptor_t     tx_rdma_desc; /* rdma descriptor */
672                 struct page              *tx_imm_pages[GNILND_MAX_IMMEDIATE/PAGE_SIZE];  /* page array to map kiov for immediate send */
673         };
674
675         /* we only use one or the other */
676         union {
677                 kgn_putack_msg_t  tx_putinfo;   /* data for differed rdma & re-try */
678                 kgn_get_msg_t     tx_getinfo;   /* data for rdma re-try*/
679         };
680 } kgn_tx_t;
681
682 typedef struct kgn_conn {
683         kgn_device_t       *gnc_device;         /* which device */
684         struct kgn_peer    *gnc_peer;           /* owning peer */
685         int                 gnc_magic;          /* magic value cleared before free */
686         struct list_head    gnc_list;           /* stash on peer's conn list - or pending purgatory lists as we clear them */
687         struct list_head    gnc_hashlist;       /* stash in connection hash table */
688         struct list_head    gnc_schedlist;      /* schedule (on gnd_?_conns) for attention */
689         struct list_head    gnc_fmaq;           /* txs queued for FMA */
690         struct list_head    gnc_mdd_list;       /* hold list for MDD on hard conn reset */
691         __u64               gnc_peerstamp;      /* peer's unique stamp */
692         __u64               gnc_peer_connstamp; /* peer's unique connection stamp */
693         __u64               gnc_my_connstamp;   /* my unique connection stamp */
694         unsigned long       gnc_first_rx;       /* when I first received an FMA message (jiffies) */
695         unsigned long       gnc_last_tx;        /* when I last sent an FMA message (jiffies) */
696         unsigned long       gnc_last_rx;        /* when I last sent an FMA message (jiffies) */
697         unsigned long       gnc_last_tx_cq;     /* when I last received an FMA CQ (jiffies) */
698         unsigned long       gnc_last_rx_cq;     /* when I last received an FMA CQ (jiffies) */
699         unsigned long       gnc_last_noop_want; /* time I wanted to send NOOP */
700         unsigned long       gnc_last_noop_sent; /* time I did gni_smsg_send on NOOP */
701         unsigned long       gnc_last_noop_cq;   /* time when NOOP completed */
702         unsigned long       gnc_last_sched_ask; /* time when conn added to ready_conns */
703         unsigned long       gnc_last_sched_do;  /* time when conn processed from ready_conns */
704         atomic_t            gnc_reaper_noop;    /* # reaper triggered NOOP */
705         atomic_t            gnc_sched_noop;     /* # sched triggered NOOP */
706         unsigned int        gnc_timeout;        /* infer peer death if no rx for this many seconds */
707         __u32               gnc_cqid;           /* my completion callback id (non-unique) */
708         __u32               gnc_tx_seq;         /* tx msg sequence number */
709         __u32               gnc_rx_seq;         /* rx msg sequence number */
710         __u64               gnc_tx_retrans;     /* # retrans on SMSG */
711         atomic_t            gnc_nlive_fma;      /* # live FMA */
712         atomic_t            gnc_nq_rdma;        /* # queued (on device) RDMA */
713         atomic_t            gnc_nlive_rdma;     /* # live RDMA */
714         short               gnc_close_sent;     /* I've sent CLOSE */
715         short               gnc_close_recvd;    /* I've received CLOSE */
716         short               gnc_in_purgatory;   /* in the sin bin */
717         int                 gnc_error;          /* errno when conn being closed due to error */
718         int                 gnc_peer_error;     /* errno peer sent us on CLOSE */
719         kgn_conn_state_t    gnc_state;          /* connection state */
720         int                 gnc_scheduled;      /* being attented to */
721         char                gnc_sched_caller[30]; /* what function last called schedule */
722         int                 gnc_sched_line;     /* what line # last called schedule */
723         atomic_t            gnc_refcount;       /* # users */
724         spinlock_t          gnc_list_lock;      /* serialise tx lists, max_rx_age */
725         gni_ep_handle_t     gnc_ephandle;       /* GNI endpoint */
726         kgn_fma_memblock_t *gnc_fma_blk;        /* pointer to fma block for our mailbox */
727         gni_smsg_attr_t     gnpr_smsg_attr;     /* my short msg. attributes */
728         spinlock_t          gnc_tx_lock;        /* protect tx alloc/free */
729         __u8                gnc_tx_bits[GNILND_MAX_MSG_ID/8]; /* bit table for tx id */
730         int                 gnc_next_tx;        /* next tx to use in tx_ref_table */
731         kgn_tx_t          **gnc_tx_ref_table;   /* table of TX descriptors for this conn */
732         int                 gnc_mbox_id;        /* id of mbox in fma_blk                 */
733         short               gnc_needs_detach;   /* flag set in detach_purgatory_all_locked so reaper will clear out purgatory */
734         short               gnc_needs_closing;  /* flag set in del_conns when called from kgnilnd_del_peer_or_conn */
735         atomic_t            gnc_tx_in_use;      /* # of tx's currently in use by another thread use kgnilnd_peer_conn_lock */
736         kgn_dgram_type_t    gnc_dgram_type;     /* save dgram type used to establish this conn */
737         void               *remote_mbox_addr;   /* save remote mbox address */
738 } kgn_conn_t;
739
740 typedef struct kgn_mdd_purgatory {
741         gni_mem_handle_t    gmp_map_key;        /* mapping key */
742         struct list_head    gmp_list;           /* entry point for purgatory list */
743 } kgn_mdd_purgatory_t;
744
745 typedef struct kgn_peer {
746         struct list_head    gnp_list;                   /* stash on global peer list */
747         struct list_head    gnp_connd_list;             /* schedule on kgn_connd_peers */
748         struct list_head    gnp_conns;                  /* all active connections and all conns in purgatory for the peer */
749         struct list_head    gnp_tx_queue;               /* msgs waiting for a conn */
750         kgn_net_t          *gnp_net;                    /* net instance for this peer */
751         lnet_nid_t          gnp_nid;                    /* who's on the other end(s) */
752         atomic_t            gnp_refcount;               /* # users */
753         __u32               gnp_host_id;                /* ph. host ID of the peer */
754         short               gnp_connecting;             /* connection forming */
755         short               gnp_pending_unlink;         /* need last conn close to trigger unlink */
756         int                 gnp_last_errno;             /* last error conn saw */
757         unsigned long       gnp_last_alive;             /* last time I had valid comms */
758         int                 gnp_last_dgram_errno;       /* last error dgrams saw */
759         unsigned long       gnp_last_dgram_time;        /* last time I tried to connect */
760         unsigned long       gnp_reconnect_time;         /* CURRENT_SECONDS when reconnect OK */
761         unsigned long       gnp_reconnect_interval;     /* exponential backoff */
762         atomic_t            gnp_dirty_eps;              /* # of old but yet to be destroyed EPs from conns */
763         int                 gnp_down;                   /* rca says peer down */
764         unsigned long       gnp_down_event_time;        /* time peer down */
765         unsigned long       gnp_up_event_time;          /* time peer back up */
766 } kgn_peer_t;
767
768 /* the kgn_rx_t is a struct for handing to LNET as the private pointer for things
769  * like lnet_parse. It allows a single pointer to let us get enough
770  * information in _recv and friends */
771 typedef struct kgn_rx {
772         kgn_conn_t              *grx_conn;      /* connection */
773         kgn_msg_t               *grx_msg;       /* message */
774         lnet_msg_t              *grx_lntmsg;    /* lnet msg for this rx (eager only) */
775         int                      grx_eager;     /* if eager, we copied msg to somewhere */
776         struct timespec          grx_received;  /* time this msg received */
777 } kgn_rx_t;
778
779 typedef struct kgn_data {
780         int                     kgn_init;             /* initialisation state */
781         int                     kgn_shutdown;         /* shut down? */
782         int                     kgn_wc_kill;          /* Should I repost the WC */
783         atomic_t                kgn_nthreads;         /* # live threads */
784         int                     kgn_nresets;          /* number of stack resets */
785         int                     kgn_in_reset;         /* are we in stack reset ? */
786
787         __u64                   kgn_nid_trans_private;/* private data for each of the HW nid2nic arenas */
788
789         kgn_device_t            kgn_devices[GNILND_MAXDEVS]; /* device/ptag/cq etc */
790         int                     kgn_ndevs;            /* # devices */
791
792         int                     kgn_ruhroh_running;   /* ruhroh thread is running */
793         int                     kgn_ruhroh_shutdown;  /* ruhroh thread should or is shut down */
794         wait_queue_head_t       kgn_ruhroh_waitq;     /* ruhroh thread wakeup */
795         int                     kgn_quiesce_trigger;  /* should we quiesce ? */
796         atomic_t                kgn_nquiesce;         /* how many quiesced ? */
797         struct semaphore        kgn_quiesce_sem;      /* serialize ruhroh task, startup and shutdown */
798         int                     kgn_needs_reset;      /* we need stack reset */
799
800         /* These next three members implement communication from gnilnd into
801          * the ruhroh task.  To ensure correct operation of the task, code that
802          * writes into them must use memory barriers to ensure that the changes
803          * are visible to other cores in the order the members appear below.  */
804         __u32                   kgn_quiesce_secs;     /* seconds to bump timeouts */
805         int                     kgn_bump_info_rdy;    /* we have info needed to bump */
806         int                     kgn_needs_pause;      /* we need to pause for network quiesce */
807
808         struct list_head       *kgn_nets;             /* hashtable of kgn_net instances */
809         struct rw_semaphore     kgn_net_rw_sem;       /* serialise gnn_shutdown, kgn_nets */
810
811         rwlock_t                kgn_peer_conn_lock;   /* stabilize peer/conn ops */
812         struct list_head       *kgn_peers;            /* hash table of all my known peers */
813         atomic_t                kgn_npeers;           /* # peers extant */
814         int                     kgn_peer_version;     /* version flag for peer tables */
815
816         struct list_head       *kgn_conns;            /* conns hashed by cqid */
817         atomic_t                kgn_nconns;           /* # connections extant */
818         __u64                   kgn_peerstamp;        /* when I started up */
819         __u64                   kgn_connstamp;        /* conn stamp generator */
820         int                     kgn_conn_version;     /* version flag for conn tables */
821         int                     kgn_next_cqid;        /* cqid generator */
822
823         long                    kgn_new_min_timeout;  /* minimum timeout on any new conn */
824         wait_queue_head_t       kgn_reaper_waitq;     /* reaper sleeps here */
825         spinlock_t              kgn_reaper_lock;      /* serialise */
826
827         cfs_mem_cache_t        *kgn_rx_cache;         /* rx descriptor space */
828         cfs_mem_cache_t        *kgn_tx_cache;         /* tx descriptor memory */
829         cfs_mem_cache_t        *kgn_tx_phys_cache;    /* tx phys descriptor memory */
830         atomic_t                kgn_ntx;              /* # tx in use */
831         cfs_mem_cache_t        *kgn_dgram_cache;      /* outgoing datagrams */
832
833         struct page          ***kgn_cksum_map_pages;  /* page arrays for mapping pages on checksum */
834         __u64                   kgn_cksum_npages;     /* Number of pages allocated for checksumming */
835         atomic_t                kgn_nvmap_cksum;      /* # times we vmapped for checksums */
836         atomic_t                kgn_nvmap_short;      /* # times we vmapped for short kiov */
837
838         atomic_t                kgn_nkmap_short;      /* # time we kmapped for a short kiov */
839         long                    kgn_rdmaq_override;   /* bytes per second override */
840
841         struct kmem_cache      *kgn_mbox_cache;       /* mailboxes from not-GART */
842
843         atomic_t                kgn_npending_unlink;  /* # of peers pending unlink */
844         atomic_t                kgn_npending_conns;   /* # of conns with pending closes */
845         atomic_t                kgn_npending_detach;  /* # of conns with a pending detach */
846         unsigned long           kgn_last_scheduled;   /* last time schedule was called in a sched thread */
847         unsigned long           kgn_last_condresched; /* last time cond_resched was called in a sched thread */
848         atomic_t                kgn_rev_offset;       /* number of time REV rdma have been misaligned offsets */
849         atomic_t                kgn_rev_length;       /* Number of times REV rdma have been misaligned lengths */
850         atomic_t                kgn_rev_copy_buff;    /* Number of times REV rdma have had to make a copy buffer */
851 } kgn_data_t;
852
853 extern kgn_data_t         kgnilnd_data;
854 extern kgn_tunables_t     kgnilnd_tunables;
855
856 extern void kgnilnd_destroy_peer(kgn_peer_t *peer);
857 extern void kgnilnd_destroy_conn(kgn_conn_t *conn);
858 extern int _kgnilnd_schedule_conn(kgn_conn_t *conn, const char *caller, int line, int refheld);
859
860 /* Macro wrapper for _kgnilnd_schedule_conn. This will store the function
861  * and the line of the calling function to allow us to debug problematic
862  * schedule calls in the future without the programmer having to mark
863  * the location manually.
864  */
865 #define kgnilnd_schedule_conn(conn)                                     \
866         _kgnilnd_schedule_conn(conn, __func__, __LINE__, 0);
867
868 #define kgnilnd_schedule_conn_refheld(conn, refheld)                            \
869         _kgnilnd_schedule_conn(conn, __func__, __LINE__, refheld);
870
871 static inline int
872 kgnilnd_thread_start(int(*fn)(void *arg), void *arg, char *name, int id)
873 {
874         struct task_struct *thrd = kthread_run(fn, arg, "%s_%02d", name, id);
875         if (IS_ERR(thrd))
876                 return PTR_ERR(thrd);
877
878         atomic_inc(&kgnilnd_data.kgn_nthreads);
879         return 0;
880 }
881
882 static inline void
883 kgnilnd_thread_fini(void)
884 {
885         atomic_dec(&kgnilnd_data.kgn_nthreads);
886 }
887
888 /* like mutex_trylock but with a jiffies spinner. This is to allow certain
889  * parts of the code to avoid a scheduler trip when the mutex is held
890  *
891  * Try to acquire the mutex atomically for 1 jiffie. Returns 1 if the mutex
892  * has been acquired successfully, and 0 on contention.
893  *
894  * NOTE: this function follows the spin_trylock() convention, so
895  * it is negated to the down_trylock() return values! Be careful
896  * about this when converting semaphore users to mutexes.
897  *
898  * This function must not be used in interrupt context. The
899  * mutex must be released by the same task that acquired it.
900  */
901 static inline int kgnilnd_mutex_trylock(struct mutex *lock)
902 {
903         int             ret;
904         unsigned long   timeout;
905
906         LASSERT(!in_interrupt());
907
908         for (timeout = jiffies + 1; time_before(jiffies, timeout);) {
909
910                 ret = mutex_trylock(lock);
911                 if (ret)
912                         return ret;
913         }
914         return 0;
915 }
916
917 /* Copied from DEBUG_REQ in Lustre - the dance is needed to save stack space */
918
919 extern void
920 _kgnilnd_debug_msg(kgn_msg_t *msg,
921                 struct libcfs_debug_msg_data *data, const char *fmt, ... );
922
923 #define kgnilnd_debug_msg(msgdata, mask, cdls, msg, fmt, a...)                \
924 do {                                                                          \
925         CFS_CHECK_STACK(msgdata, mask, cdls);                                 \
926                                                                               \
927         if (((mask) & D_CANTMASK) != 0 ||                                     \
928             ((libcfs_debug & (mask)) != 0 &&                                  \
929              (libcfs_subsystem_debug & DEBUG_SUBSYSTEM) != 0))                \
930                 _kgnilnd_debug_msg((msg), msgdata, fmt, ##a);                 \
931 } while(0)
932
933 /* for most callers (level is a constant) this is resolved at compile time */
934 #define GNIDBG_MSG(level, msg, fmt, args...)                                  \
935 do {                                                                          \
936         if ((level) & (D_ERROR | D_WARNING | D_NETERROR)) {                   \
937             static cfs_debug_limit_state_t cdls;                              \
938             LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, &cdls);                \
939             kgnilnd_debug_msg(&msgdata, level, &cdls, msg,                    \
940                               "$$ "fmt" from %s ", ## args,                   \
941                               libcfs_nid2str((msg)->gnm_srcnid));             \
942         } else {                                                              \
943             LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, NULL);                 \
944             kgnilnd_debug_msg(&msgdata, level, NULL, msg,                     \
945                               "$$ "fmt" from %s ", ## args,                   \
946                               libcfs_nid2str((msg)->gnm_srcnid));             \
947         }                                                                     \
948 } while (0)
949
950 /* user puts 'to nid' in msg for us */
951 #define GNIDBG_TOMSG(level, msg, fmt, args...)                                \
952 do {                                                                          \
953         if ((level) & (D_ERROR | D_WARNING | D_NETERROR)) {                   \
954             static cfs_debug_limit_state_t cdls;                              \
955             LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, &cdls);                \
956             kgnilnd_debug_msg(&msgdata, level, &cdls, msg,                    \
957                               "$$ "fmt" ", ## args);                          \
958         } else {                                                              \
959             LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, NULL);                 \
960             kgnilnd_debug_msg(&msgdata, level, NULL, msg,                     \
961                               "$$ "fmt" ", ## args);                          \
962         }                                                                     \
963 } while (0)
964
965 extern void
966 _kgnilnd_debug_conn(kgn_conn_t *conn,
967                 struct libcfs_debug_msg_data *data, const char *fmt, ... );
968
969 #define kgnilnd_debug_conn(msgdata, mask, cdls, conn, fmt, a...)               \
970 do {                                                                           \
971         CFS_CHECK_STACK(msgdata, mask, cdls);                                  \
972                                                                                \
973         if (((mask) & D_CANTMASK) != 0 ||                                      \
974             ((libcfs_debug & (mask)) != 0 &&                                   \
975              (libcfs_subsystem_debug & DEBUG_SUBSYSTEM) != 0))                 \
976                 _kgnilnd_debug_conn((conn), msgdata, fmt, ##a);                \
977 } while(0)
978
979 /* for most callers (level is a constant) this is resolved at compile time */
980 #define GNIDBG_CONN(level, conn, fmt, args...)                                  \
981 do {                                                                            \
982         if ((level) & (D_ERROR | D_WARNING | D_NETERROR)) {                     \
983             static cfs_debug_limit_state_t cdls;                                \
984             LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, &cdls);                  \
985             kgnilnd_debug_conn(&msgdata, level, &cdls, conn,                    \
986                                "$$ "fmt" ", ## args);                           \
987         } else {                                                                \
988             LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, NULL);                   \
989             kgnilnd_debug_conn(&msgdata, level, NULL, conn,                     \
990                                "$$ "fmt" ", ## args);                           \
991         }                                                                       \
992 } while (0)
993
994 extern void
995 _kgnilnd_debug_tx(kgn_tx_t *tx,
996                 struct libcfs_debug_msg_data *data, const char *fmt, ... );
997
998 #define kgnilnd_debug_tx(msgdata, mask, cdls, tx, fmt, a...)                   \
999 do {                                                                           \
1000         CFS_CHECK_STACK(msgdata, mask, cdls);                                  \
1001                                                                                \
1002         if (((mask) & D_CANTMASK) != 0 ||                                      \
1003             ((libcfs_debug & (mask)) != 0 &&                                   \
1004              (libcfs_subsystem_debug & DEBUG_SUBSYSTEM) != 0))                 \
1005                 _kgnilnd_debug_tx((tx), msgdata, fmt, ##a);                    \
1006 } while(0)
1007
1008 /* for most callers (level is a constant) this is resolved at compile time */
1009 #define GNIDBG_TX(level, tx, fmt, args...)                                      \
1010 do {                                                                            \
1011         if ((level) & (D_ERROR | D_WARNING | D_NETERROR)) {                     \
1012             static cfs_debug_limit_state_t cdls;                                \
1013             LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, &cdls);                  \
1014             kgnilnd_debug_tx(&msgdata, level, &cdls, tx,                        \
1015                               "$$ "fmt" ", ## args);                            \
1016         } else {                                                                \
1017             LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, NULL);                   \
1018             kgnilnd_debug_tx(&msgdata, level, NULL, tx,                         \
1019                               "$$ "fmt" ", ## args);                            \
1020         }                                                                       \
1021 } while (0)
1022
1023 #define GNITX_ASSERTF(tx, cond, fmt, a...)                                      \
1024 ({                                                                              \
1025         if (unlikely(!(cond))) {                                                \
1026                 GNIDBG_TX(D_EMERG, tx, "ASSERTION(" #cond ") failed:" fmt, a);  \
1027                 LBUG();                                                         \
1028         }                                                                       \
1029 })
1030
1031 #define GNILND_IS_QUIESCED                                                      \
1032         (atomic_read(&kgnilnd_data.kgn_nquiesce) ==                             \
1033                 atomic_read(&kgnilnd_data.kgn_nthreads))
1034
1035 #define KGNILND_SPIN_QUIESCE                                                 \
1036 do {                                                                         \
1037         /* E.T phone home */                                                 \
1038         atomic_inc(&kgnilnd_data.kgn_nquiesce);                              \
1039         CDEBUG(D_NET, "Waiting for thread pause to be over...\n");           \
1040         while (kgnilnd_data.kgn_quiesce_trigger) {                           \
1041                 set_current_state(TASK_INTERRUPTIBLE);                       \
1042                 cfs_schedule_timeout_and_set_state(TASK_INTERRUPTIBLE,       \
1043                         cfs_time_seconds(1));                                \
1044         }                                                                    \
1045         /* Mom, my homework is done */                                       \
1046         CDEBUG(D_NET, "Waking up from thread pause\n");                      \
1047         atomic_dec(&kgnilnd_data.kgn_nquiesce);                              \
1048 } while(0)
1049
1050 /* use macros for addref/decref to get the calling function name in the CDEBUG */
1051 #ifndef LIBCFS_DEBUG
1052 #error "this code uses actions inside LASSERT for ref counting"
1053 #endif
1054
1055 #define kgnilnd_admin_addref(atomic)                                     \
1056 do {                                                                            \
1057         int     val = atomic_inc_return(&atomic);                               \
1058         LASSERTF(val > 0,  #atomic " refcount %d\n", val);                       \
1059         CDEBUG(D_NETTRACE, #atomic " refcount %d\n", val);                       \
1060 } while (0)
1061
1062 #define kgnilnd_admin_decref(atomic)                                     \
1063 do {                                                                            \
1064         int     val = atomic_dec_return(&atomic);                               \
1065         LASSERTF(val >=0,  #atomic " refcount %d\n", val);                        \
1066         CDEBUG(D_NETTRACE, #atomic " refcount %d\n", val);                       \
1067 }while (0)
1068
1069 #define kgnilnd_net_addref(net)                                                 \
1070 do {                                                                            \
1071         int     val = atomic_inc_return(&net->gnn_refcount);                    \
1072         LASSERTF(val > 1, "net %p refcount %d\n", net, val);                    \
1073         CDEBUG(D_NETTRACE, "net %p->%s++ (%d)\n", net,                          \
1074                 libcfs_nid2str(net->gnn_ni->ni_nid), val);                      \
1075 } while (0)
1076
1077 #define kgnilnd_net_decref(net)                                                 \
1078 do {                                                                            \
1079         int     val = atomic_dec_return(&net->gnn_refcount);                    \
1080         LASSERTF(val >= 0, "net %p refcount %d\n", net, val);                   \
1081         CDEBUG(D_NETTRACE, "net %p->%s-- (%d)\n", net,                          \
1082                libcfs_nid2str(net->gnn_ni->ni_nid), val);                       \
1083 } while (0)
1084
1085 #define kgnilnd_peer_addref(peer)                                               \
1086 do {                                                                            \
1087         int     val = atomic_inc_return(&peer->gnp_refcount);                   \
1088         LASSERTF(val > 1, "peer %p refcount %d\n", peer, val);                  \
1089         CDEBUG(D_NETTRACE, "peer %p->%s++ (%d)\n", peer,                        \
1090                libcfs_nid2str(peer->gnp_nid), val);                             \
1091 } while (0)
1092
1093 #define kgnilnd_peer_decref(peer)                                               \
1094 do {                                                                            \
1095         int     val = atomic_dec_return(&peer->gnp_refcount);                   \
1096         LASSERTF(val >= 0, "peer %p refcount %d\n", peer, val);                 \
1097         CDEBUG(D_NETTRACE, "peer %p->%s--(%d)\n", peer,                         \
1098                libcfs_nid2str(peer->gnp_nid), val);                             \
1099         if (val == 0)                                                           \
1100                 kgnilnd_destroy_peer(peer);                                     \
1101 } while(0)
1102
1103 #define kgnilnd_conn_addref(conn)                                       \
1104 do {                                                                    \
1105         int     val;                                                    \
1106                                                                         \
1107         smp_wmb();                                                      \
1108         val = atomic_inc_return(&conn->gnc_refcount);                   \
1109         LASSERTF(val > 1 && conn->gnc_magic == GNILND_CONN_MAGIC,       \
1110                 "conn %p refc %d to %s\n",                              \
1111                 conn, val,                                              \
1112                 conn->gnc_peer                                          \
1113                         ? libcfs_nid2str(conn->gnc_peer->gnp_nid)       \
1114                         : "<?>");                                       \
1115         CDEBUG(D_NETTRACE, "conn %p->%s++ (%d)\n", conn,                \
1116                 conn->gnc_peer                                          \
1117                         ? libcfs_nid2str(conn->gnc_peer->gnp_nid)       \
1118                         : "<?>",                                        \
1119                 val);                                                   \
1120 } while (0)
1121
1122 /* we hijack conn_decref && gnc_refcount = 1 to allow us to push the conn
1123  * through the scheduler thread to get the EP destroyed. This avoids some
1124  * messy semaphore business and allows us to reuse the connd_list and existing
1125  * linkage and avoid creating extra lists just for destroying EPs */
1126
1127 /* Safety Disclaimer:
1128  * Q: If we decrement the refcount and then check it again, is it possible that
1129  *    another caller could have passed through this macro concurrently? If so,
1130  *    then it is possible that both will attempt to call kgnilnd_destroy_conn().
1131  *
1132  * A: Yes, entirely possible in most cases, but we can't get concurrent users
1133  * once we are refcount <= 2. It hinges around gnc_state and membership of
1134  * gnc_hashlist. There are two ways to find a connection - either ask for
1135  * it from the peer, kgnilnd_find_conn_locked(peer) or from the CQ id,
1136  * kgnilnd_cqid2conn_locked(id). While a conn is live, we'll have at least
1137  * 4 refcounts
1138  *
1139  * - #1 from create (kgnilnd_create_conn)
1140  * - #2 for EP (kgnilnd_create_conn)
1141  * - #3 - living on peer (gnc_list, kgnilnd_finish_connect)
1142  * - #4 living in global hash (gnc_hashlist, kgnilnd_finish_connect).
1143  *
1144  * Actually, only 3 live, as at the end of kgnilnd_finish_connect, we drop:
1145  * - #1 - the ref the dgram inherited from kgnilnd_create_conn.
1146  *
1147  * There could be more from TX descriptors during the lifetime of a live
1148  * conn.
1149  *
1150  * If we nuke the conn before finish_connect, we won't have parallel paths
1151  * because nobody besides the dgram handler for the single outstanding
1152  * dgram can find the connection as it isn't in any searchable tables yet.
1153  *
1154  * This leaves connection close, we'll drop 2 refs (#4 and #3) but only
1155  * after calling kgnilnd_schedule_conn, which would add a new ref (#5). At
1156  * this point gnc_refcount=2 (#2, #5). We have a 'maybe' send of the CLOSE
1157  * now on the next scheduler loop, this could be #6 (schedule_conn again)
1158  * and #7 (TX on gnc_fmaq). Both would be cleared quickly as that TX is
1159  * sent. Now the gnc_state == CLOSED, so we hit
1160  * kgnilnd_complete_closed_conn. At this point, nobody can 'find' this conn
1161  * - we've nuked them from the peer and CQ id tables, so we own them and
1162  * are guaranteed serial access - hence the complete lack of conn list
1163  * locking in kgnilnd_complete_closed_conn. We are free then to mark the
1164  * conn DESTROY_EP (add #6 for schedule_conn), then lose #5 in
1165  * kgnilnd_process_conns. Then the next scheduler loop would call
1166  * kgnilnd_destroy_conn_ep (drop #2 for EP) and lose #6 (refcount=0) in
1167  * kgnilnd_process_conns.
1168  *
1169  * Clearly, we are totally safe. Clearly.
1170  */
1171
1172 #define kgnilnd_conn_decref(conn)                                       \
1173 do {                                                                    \
1174         int     val;                                                    \
1175                                                                         \
1176         smp_wmb();                                                      \
1177         val = atomic_dec_return(&conn->gnc_refcount);                   \
1178         LASSERTF(val >= 0, "conn %p refc %d to %s\n",                   \
1179                 conn, val,                                              \
1180                 conn->gnc_peer                                          \
1181                         ? libcfs_nid2str(conn->gnc_peer->gnp_nid)       \
1182                         : "<?>");                                       \
1183         CDEBUG(D_NETTRACE, "conn %p->%s-- (%d)\n", conn,                \
1184                 conn->gnc_peer                                          \
1185                         ? libcfs_nid2str(conn->gnc_peer->gnp_nid)       \
1186                         : "<?>",                                        \
1187                 val);                                                   \
1188         smp_rmb();                                                      \
1189         if ((val == 1) &&                                               \
1190             (conn->gnc_ephandle != NULL) &&                             \
1191             (conn->gnc_state != GNILND_CONN_DESTROY_EP)) {              \
1192                 set_mb(conn->gnc_state, GNILND_CONN_DESTROY_EP);        \
1193                 kgnilnd_schedule_conn(conn);                            \
1194         } else if (val == 0) {                                          \
1195                 kgnilnd_destroy_conn(conn);                             \
1196         }                                                               \
1197 } while (0)
1198
1199 static inline struct list_head *
1200 kgnilnd_nid2peerlist(lnet_nid_t nid)
1201 {
1202         unsigned int hash = ((unsigned int)LNET_NIDADDR(nid)) % *kgnilnd_tunables.kgn_peer_hash_size;
1203
1204         RETURN(&kgnilnd_data.kgn_peers[hash]);
1205 }
1206
1207 static inline struct list_head *
1208 kgnilnd_netnum2netlist(__u16 netnum)
1209 {
1210         unsigned int hash = ((unsigned int) netnum) % *kgnilnd_tunables.kgn_net_hash_size;
1211
1212         RETURN(&kgnilnd_data.kgn_nets[hash]);
1213 }
1214
1215 static inline int
1216 kgnilnd_peer_active(kgn_peer_t *peer)
1217 {
1218         /* Am I in the peer hash table? */
1219         return (!list_empty(&peer->gnp_list));
1220 }
1221
1222 /* need write_lock on kgn_peer_conn_lock */
1223 static inline int
1224 kgnilnd_can_unlink_peer_locked(kgn_peer_t *peer)
1225 {
1226         CDEBUG(D_NET, "peer 0x%p->%s conns? %d tx? %d\n",
1227                 peer, libcfs_nid2str(peer->gnp_nid),
1228                 !list_empty(&peer->gnp_conns),
1229                 !list_empty(&peer->gnp_tx_queue));
1230
1231         /* kgn_peer_conn_lock protects us from conflict with
1232          * kgnilnd_peer_notify and gnp_persistent */
1233         RETURN ((list_empty(&peer->gnp_conns)) &&
1234                 (list_empty(&peer->gnp_tx_queue)));
1235 }
1236
1237 /* returns positive if error was for a clean shutdown of conn */
1238 static inline int
1239 kgnilnd_conn_clean_errno(int errno)
1240 {
1241         /*  - ESHUTDOWN - LND is unloading
1242          *  - EUCLEAN - admin requested via "lctl del_peer"
1243          *  - ENETRESET - admin requested via "lctl disconnect" or rca event
1244          *  - ENOTRECOVERABLE - stack reset
1245          *  - EISCONN - cleared via "lctl push"
1246          *  not doing ESTALE - that isn't clean */
1247         RETURN ((errno == 0) ||
1248                 (errno == -ESHUTDOWN) ||
1249                 (errno == -EUCLEAN) ||
1250                 (errno == -ENETRESET) ||
1251                 (errno == -EISCONN) ||
1252                 (errno == -ENOTRECOVERABLE));
1253 }
1254
1255 /* returns positive if error results in purgatory hold */
1256 static inline int
1257 kgnilnd_check_purgatory_errno(int errno)
1258 {
1259         /* We don't want to save the purgatory lists these cases:
1260          *  - EUCLEAN - admin requested via "lctl del_peer"
1261          *  - ESHUTDOWN - LND is unloading
1262          */
1263         RETURN ((errno != -ESHUTDOWN) &&
1264                 (errno != -EUCLEAN));
1265
1266 }
1267
1268 /* returns positive if a purgatory hold is needed */
1269 static inline int
1270 kgnilnd_check_purgatory_conn(kgn_conn_t *conn)
1271 {
1272         int loopback = 0;
1273
1274         if (conn->gnc_peer) {
1275                 loopback = conn->gnc_peer->gnp_nid ==
1276                        conn->gnc_peer->gnp_net->gnn_ni->ni_nid;
1277         } else {
1278                 /* short circuit - a conn that didn't complete
1279                  * setup never needs a purgatory hold */
1280                 RETURN(0);
1281         }
1282         CDEBUG(D_NETTRACE, "conn 0x%p->%s loopback %d close_recvd %d\n",
1283                 conn, conn->gnc_peer ?
1284                                 libcfs_nid2str(conn->gnc_peer->gnp_nid) :
1285                                 "<?>",
1286                 loopback, conn->gnc_close_recvd);
1287
1288         /* we only use a purgatory hold if we've not received the CLOSE msg
1289          * from our peer - without that message, we can't know the state of
1290          * the other end of this connection and must put it into purgatory
1291          * to prevent reuse and corruption.
1292          * The theory is that a TX error can be communicated in all other cases
1293          */
1294         RETURN(likely(!loopback) && !conn->gnc_close_recvd &&
1295                 kgnilnd_check_purgatory_errno(conn->gnc_error));
1296 }
1297
1298 static inline const char *
1299 kgnilnd_tx_state2str(kgn_tx_list_state_t state);
1300
1301 static inline struct list_head *
1302 kgnilnd_tx_state2list(kgn_peer_t *peer, kgn_conn_t *conn,
1303                         kgn_tx_list_state_t to_state)
1304 {
1305         switch (to_state) {
1306         case GNILND_TX_PEERQ:
1307                 return &peer->gnp_tx_queue;
1308         case GNILND_TX_FMAQ:
1309                 return &conn->gnc_fmaq;
1310         case GNILND_TX_LIVE_FMAQ:
1311         case GNILND_TX_LIVE_RDMAQ:
1312         case GNILND_TX_DYING:
1313                 return NULL;
1314         case GNILND_TX_MAPQ:
1315                 return &conn->gnc_device->gnd_map_tx;
1316         case GNILND_TX_RDMAQ:
1317                 return &conn->gnc_device->gnd_rdmaq;
1318         default:
1319                 /* IDLE, FREED or ALLOCD is not valid "on list" state */
1320                 CERROR("invalid state requested: %s\n",
1321                         kgnilnd_tx_state2str(to_state));
1322                 LBUG();
1323                 break;
1324         }
1325 }
1326
1327 /* should hold tx, conn or peer lock when calling */
1328 static inline void
1329 kgnilnd_tx_add_state_locked(kgn_tx_t *tx, kgn_peer_t *peer,
1330                         kgn_conn_t *conn, kgn_tx_list_state_t state,
1331                         int add_tail)
1332 {
1333         struct list_head        *list = NULL;
1334
1335         /* make sure we have a sane TX state to start */
1336         GNITX_ASSERTF(tx, (tx->tx_list_p == NULL &&
1337                   tx->tx_list_state == GNILND_TX_ALLOCD) &&
1338                 list_empty(&tx->tx_list),
1339                 "bad state with tx_list %s",
1340                 list_empty(&tx->tx_list) ? "empty" : "not empty");
1341
1342         /* WTF - you are already on that state buttmunch */
1343         GNITX_ASSERTF(tx, state != tx->tx_list_state,
1344                       "already at %s", kgnilnd_tx_state2str(state));
1345
1346         /* get proper list from the state requested */
1347         list = kgnilnd_tx_state2list(peer, conn, state);
1348
1349         /* add refcount */
1350         switch (state) {
1351         case GNILND_TX_PEERQ:
1352                 kgnilnd_peer_addref(peer);
1353                 break;
1354         case GNILND_TX_ALLOCD:
1355                 /* no refs needed */
1356                 break;
1357         case GNILND_TX_FMAQ:
1358                 kgnilnd_conn_addref(conn);
1359                 break;
1360         case GNILND_TX_MAPQ:
1361                 atomic_inc(&conn->gnc_device->gnd_nq_map);
1362                 kgnilnd_conn_addref(conn);
1363                 break;
1364         case GNILND_TX_LIVE_FMAQ:
1365                 atomic_inc(&conn->gnc_nlive_fma);
1366                 kgnilnd_conn_addref(conn);
1367                 break;
1368         case GNILND_TX_LIVE_RDMAQ:
1369                 atomic_inc(&conn->gnc_nlive_rdma);
1370                 kgnilnd_conn_addref(conn);
1371                 break;
1372         case GNILND_TX_RDMAQ:
1373                 atomic_inc(&conn->gnc_nq_rdma);
1374                 kgnilnd_conn_addref(conn);
1375                 break;
1376         case GNILND_TX_DYING:
1377                 kgnilnd_conn_addref(conn);
1378                 break;
1379         default:
1380                 CERROR("invalid state requested: %s\n",
1381                         kgnilnd_tx_state2str(state));
1382                 LBUG();
1383                 break;;
1384         }
1385
1386         /* if this changes, change kgnilnd_alloc_tx */
1387         tx->tx_list_state = state;
1388
1389         /* some states don't have lists - we track them in the per conn
1390          * TX table instead. Waste not, want not! */
1391         if (list != NULL) {
1392                 tx->tx_list_p = list;
1393                 if (add_tail)
1394                         list_add_tail(&tx->tx_list, list);
1395                 else
1396                         list_add(&tx->tx_list, list);
1397         } else {
1398                 /* set dummy list_p to make book keeping happy and let debugging
1399                  * be a hair easier */
1400                 tx->tx_list_p = (void *)state;
1401         }
1402
1403         GNIDBG_TX(D_NET, tx, "onto %s->0x%p",
1404                   kgnilnd_tx_state2str(state), list);
1405 }
1406
1407 static inline void
1408 kgnilnd_tx_del_state_locked(kgn_tx_t *tx, kgn_peer_t *peer,
1409                         kgn_conn_t *conn, kgn_tx_list_state_t new_state)
1410 {
1411         /* These is only 1 "off-list" state */
1412         GNITX_ASSERTF(tx, new_state == GNILND_TX_ALLOCD,
1413                       "invalid new_state %s", kgnilnd_tx_state2str(new_state));
1414
1415         /* new_state == ALLOCD means we are deallocating this tx,
1416          * so make sure it was on a valid list to start with */
1417         GNITX_ASSERTF(tx, (tx->tx_list_p != NULL) &&
1418                       (((tx->tx_list_state == GNILND_TX_LIVE_FMAQ) ||
1419                         (tx->tx_list_state == GNILND_TX_LIVE_RDMAQ) ||
1420                         (tx->tx_list_state == GNILND_TX_DYING)) == list_empty(&tx->tx_list)),
1421                       "bad state", NULL);
1422
1423         GNIDBG_TX(D_NET, tx, "off %p", tx->tx_list_p);
1424
1425         /* drop refcount */
1426         switch (tx->tx_list_state) {
1427         case GNILND_TX_PEERQ:
1428                 kgnilnd_peer_decref(peer);
1429                 break;
1430         case GNILND_TX_FREED:
1431         case GNILND_TX_IDLE:
1432         case GNILND_TX_ALLOCD:
1433                 /* no refs needed */
1434                 break;
1435         case GNILND_TX_DYING:
1436                 kgnilnd_conn_decref(conn);
1437                 break;
1438         case GNILND_TX_FMAQ:
1439                 kgnilnd_conn_decref(conn);
1440                 break;
1441         case GNILND_TX_MAPQ:
1442                 atomic_dec(&conn->gnc_device->gnd_nq_map);
1443                 kgnilnd_conn_decref(conn);
1444                 break;
1445         case GNILND_TX_LIVE_FMAQ:
1446                 atomic_dec(&conn->gnc_nlive_fma);
1447                 kgnilnd_conn_decref(conn);
1448                 break;
1449         case GNILND_TX_LIVE_RDMAQ:
1450                 atomic_dec(&conn->gnc_nlive_rdma);
1451                 kgnilnd_conn_decref(conn);
1452                 break;
1453         case GNILND_TX_RDMAQ:
1454                 atomic_dec(&conn->gnc_nq_rdma);
1455                 kgnilnd_conn_decref(conn);
1456         /* don't need to assert on default, already did in set */
1457         }
1458
1459         /* for ALLOCD, this might already be true, but no harm doing it again */
1460         list_del_init(&tx->tx_list);
1461         tx->tx_list_p = NULL;
1462         tx->tx_list_state = new_state;
1463 }
1464
1465 static inline int
1466 kgnilnd_tx_mapped(kgn_tx_t *tx)
1467 {
1468         return (tx->tx_buftype == GNILND_BUF_VIRT_MAPPED ||
1469                 tx->tx_buftype == GNILND_BUF_PHYS_MAPPED);
1470 }
1471
1472 static inline struct list_head *
1473 kgnilnd_cqid2connlist(__u32 cqid)
1474 {
1475         unsigned int hash = cqid % *kgnilnd_tunables.kgn_peer_hash_size;
1476
1477         return (&kgnilnd_data.kgn_conns [hash]);
1478 }
1479
1480 static inline kgn_conn_t *
1481 kgnilnd_cqid2conn_locked(__u32 cqid)
1482 {
1483         struct list_head *conns = kgnilnd_cqid2connlist(cqid);
1484         struct list_head *tmp;
1485         kgn_conn_t       *conn;
1486
1487         list_for_each(tmp, conns) {
1488                 conn = list_entry(tmp, kgn_conn_t, gnc_hashlist);
1489
1490                 if (conn->gnc_cqid == cqid)
1491                         return conn;
1492         }
1493
1494         return NULL;
1495 }
1496
1497 /* returns 1..GNILND_MAX_CQID on success, 0 on failure */
1498 static inline __u32
1499 kgnilnd_get_cqid_locked(void)
1500 {
1501         int     looped = 0;
1502         __u32   cqid;
1503
1504         do {
1505                 cqid = kgnilnd_data.kgn_next_cqid++;
1506                 if (kgnilnd_data.kgn_next_cqid >= GNILND_MAX_CQID) {
1507                         if (looped) {
1508                                 return 0;
1509                         }
1510                         kgnilnd_data.kgn_next_cqid = 1;
1511                         looped = 1;
1512                 }
1513         } while (kgnilnd_cqid2conn_locked(cqid) != NULL);
1514
1515         return cqid;
1516 }
1517
1518 static inline void
1519 kgnilnd_validate_tx_ev_id(kgn_tx_ev_id_t *ev_id, kgn_tx_t **txp, kgn_conn_t **connp)
1520 {
1521         kgn_tx_t        *tx = NULL;
1522         kgn_conn_t      *conn = NULL;
1523
1524         /* set to NULL so any early return is an error */
1525         *txp = NULL;
1526         *connp = NULL;
1527
1528         LASSERTF((ev_id->txe_idx > 0) &&
1529                  (ev_id->txe_idx < GNILND_MAX_MSG_ID),
1530                 "bogus txe_idx %d >= %d\n",
1531                 ev_id->txe_idx, GNILND_MAX_MSG_ID);
1532
1533         LASSERTF((ev_id->txe_cqid > 0) &&
1534                  (ev_id->txe_cqid < GNILND_MAX_CQID),
1535                 "bogus txe_cqid %d >= %d\n",
1536                 ev_id->txe_cqid, GNILND_MAX_CQID);
1537
1538         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
1539         conn = kgnilnd_cqid2conn_locked(ev_id->txe_cqid);
1540
1541         if (conn == NULL) {
1542                 /* Conn was destroyed? */
1543                 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1544                 CDEBUG(D_NET, "CQID %d lookup failed\n", ev_id->txe_cqid);
1545                 return;
1546         }
1547         /* just insurance */
1548         kgnilnd_conn_addref(conn);
1549         kgnilnd_admin_addref(conn->gnc_tx_in_use);
1550         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1551
1552         /* we know this is safe - as the TX won't be reused until AFTER
1553          * the conn is unlinked from the cqid hash, so we can use the TX
1554          * (serializing to avoid any cache oddness) freely from the conn tx ref table */
1555
1556         spin_lock(&conn->gnc_tx_lock);
1557         tx = conn->gnc_tx_ref_table[ev_id->txe_idx];
1558         spin_unlock(&conn->gnc_tx_lock);
1559
1560         /* We could have a tx that was cleared out by other forces
1561          * lctl disconnect or del_peer. */
1562         if (tx == NULL) {
1563                 CNETERR("txe_idx %d is gone, ignoring event\n", ev_id->txe_idx);
1564                 kgnilnd_admin_decref(conn->gnc_tx_in_use);
1565                 kgnilnd_conn_decref(conn);
1566                 return;
1567         }
1568
1569         /* check tx->tx_msg magic to make sure kgni didn't eat it */
1570         GNITX_ASSERTF(tx, tx->tx_msg.gnm_magic == GNILND_MSG_MAGIC,
1571                       "came back from kgni with bad magic %x", tx->tx_msg.gnm_magic);
1572
1573         GNITX_ASSERTF(tx, tx->tx_id.txe_idx == ev_id->txe_idx,
1574                       "conn 0x%p->%s tx_ref_table hosed: wanted txe_idx %d "
1575                       "found tx %p txe_idx %d",
1576                       conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
1577                       ev_id->txe_idx, tx, tx->tx_id.txe_idx);
1578
1579         GNITX_ASSERTF(tx, tx->tx_conn != NULL, "tx with NULL connection", NULL);
1580
1581         GNITX_ASSERTF(tx, tx->tx_conn == conn, "tx conn does not equal conn", NULL);
1582
1583         *txp = tx;
1584         *connp = conn;
1585
1586         GNIDBG_TX(D_NET, tx, "validated to 0x%p", conn);
1587 }
1588
1589 /* set_normalized_timepsec isn't exported from the kernel, so
1590  * we need to do the same thing inline */
1591 static inline struct timespec
1592 kgnilnd_ts_sub(struct timespec lhs, struct timespec rhs)
1593 {
1594         time_t                  sec;
1595         long                    nsec;
1596         struct timespec         ts;
1597
1598         sec = lhs.tv_sec - rhs.tv_sec;
1599         nsec = lhs.tv_nsec - rhs.tv_nsec;
1600
1601         while (nsec >= NSEC_PER_SEC) {
1602                 nsec -= NSEC_PER_SEC;
1603                 ++sec;
1604         }
1605         while (nsec < 0) {
1606                 nsec += NSEC_PER_SEC;
1607                 --sec;
1608         }
1609         ts.tv_sec = sec;
1610         ts.tv_nsec = nsec;
1611         return ts;
1612 }
1613
1614 static inline int
1615 kgnilnd_count_list(struct list_head *q)
1616 {
1617         struct list_head *e;
1618         int               n = 0;
1619
1620         list_for_each(e, q) {
1621                 n++;
1622         }
1623
1624         return n;
1625 }
1626
1627 /* kgnilnd_find_net adds a reference to the net it finds
1628  * this is so the net will not be removed before the calling function
1629  * has time to use the data returned. This reference needs to be released
1630  * by the calling function once it has finished using the returned net
1631  */
1632
1633 static inline int
1634 kgnilnd_find_net(lnet_nid_t nid, kgn_net_t **netp)
1635 {
1636         kgn_net_t *net;
1637         int rc;
1638
1639         rc = down_read_trylock(&kgnilnd_data.kgn_net_rw_sem);
1640
1641         if (!rc) {
1642                 return -ESHUTDOWN;
1643         }
1644
1645         list_for_each_entry(net, kgnilnd_netnum2netlist(LNET_NETNUM(LNET_NIDNET(nid))), gnn_list) {
1646                 if (!net->gnn_shutdown && LNET_NIDNET(net->gnn_ni->ni_nid) == LNET_NIDNET(nid)) {
1647                         kgnilnd_net_addref(net);
1648                         up_read(&kgnilnd_data.kgn_net_rw_sem);
1649                         *netp = net;
1650                         return 0;
1651                 }
1652         }
1653
1654         up_read(&kgnilnd_data.kgn_net_rw_sem);
1655
1656         return -ENONET;
1657 }
1658
1659 #ifdef CONFIG_DEBUG_SLAB
1660 #define KGNILND_POISON(ptr, c, s) do {} while(0)
1661 #else
1662 #define KGNILND_POISON(ptr, c, s) memset(ptr, c, s)
1663 #endif
1664
1665 int kgnilnd_dev_init(kgn_device_t *dev);
1666 void kgnilnd_dev_fini(kgn_device_t *dev);
1667 int kgnilnd_startup(lnet_ni_t *ni);
1668 void kgnilnd_shutdown(lnet_ni_t *ni);
1669 int kgnilnd_base_startup(void);
1670 void kgnilnd_base_shutdown(void);
1671
1672 int kgnilnd_allocate_phys_fmablk(kgn_device_t *device);
1673 int kgnilnd_map_phys_fmablk(kgn_device_t *device);
1674 void kgnilnd_unmap_phys_fmablk(kgn_device_t *device);
1675 void kgnilnd_free_phys_fmablk(kgn_device_t *device);
1676
1677 int kgnilnd_ctl(lnet_ni_t *ni, unsigned int cmd, void *arg);
1678 void kgnilnd_query(lnet_ni_t *ni, lnet_nid_t nid, cfs_time_t *when);
1679 int kgnilnd_send(lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg);
1680 int kgnilnd_eager_recv(lnet_ni_t *ni, void *private,
1681                         lnet_msg_t *lntmsg, void **new_private);
1682 int kgnilnd_recv(lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg,
1683                 int delayed, unsigned int niov,
1684                 struct iovec *iov, lnet_kiov_t *kiov,
1685                 unsigned int offset, unsigned int mlen, unsigned int rlen);
1686
1687 __u16 kgnilnd_cksum_kiov(unsigned int nkiov, lnet_kiov_t *kiov, unsigned int offset, unsigned int nob, int dump_blob);
1688
1689 /* purgatory functions */
1690 void kgnilnd_add_purgatory_locked(kgn_conn_t *conn, kgn_peer_t *peer);
1691 void kgnilnd_mark_for_detach_purgatory_all_locked(kgn_peer_t *peer);
1692 void kgnilnd_detach_purgatory_locked(kgn_conn_t *conn, struct list_head *conn_list);
1693 void kgnilnd_release_purgatory_list(struct list_head *conn_list);
1694
1695 void kgnilnd_update_reaper_timeout(long timeout);
1696 void kgnilnd_unmap_buffer(kgn_tx_t *tx, int error);
1697 kgn_tx_t *kgnilnd_new_tx_msg(int type, lnet_nid_t source);
1698 void kgnilnd_tx_done(kgn_tx_t *tx, int completion);
1699 void kgnilnd_txlist_done(struct list_head *txlist, int error);
1700 void kgnilnd_unlink_peer_locked(kgn_peer_t *peer);
1701 int _kgnilnd_schedule_conn(kgn_conn_t *conn, const char *caller, int line, int refheld);
1702 int kgnilnd_schedule_process_conn(kgn_conn_t *conn, int sched_intent);
1703
1704 void kgnilnd_schedule_dgram(kgn_device_t *dev);
1705 int kgnilnd_create_peer_safe(kgn_peer_t **peerp, lnet_nid_t nid, kgn_net_t *net);
1706 void kgnilnd_add_peer_locked(lnet_nid_t nid, kgn_peer_t *new_stub_peer, kgn_peer_t **peerp);
1707 int kgnilnd_add_peer(kgn_net_t *net, lnet_nid_t nid, kgn_peer_t **peerp);
1708
1709 kgn_peer_t *kgnilnd_find_peer_locked(lnet_nid_t nid);
1710 int kgnilnd_del_conn_or_peer(kgn_net_t *net, lnet_nid_t nid, int command, int error);
1711 void kgnilnd_peer_increase_reconnect_locked(kgn_peer_t *peer);
1712 void kgnilnd_queue_reply(kgn_conn_t *conn, kgn_tx_t *tx);
1713 void kgnilnd_queue_tx(kgn_conn_t *conn, kgn_tx_t *tx);
1714 void kgnilnd_launch_tx(kgn_tx_t *tx, kgn_net_t *net, lnet_process_id_t *target);
1715 int kgnilnd_send_mapped_tx(kgn_tx_t *tx, int try_map_if_full);
1716 void kgnilnd_consume_rx(kgn_rx_t *rx);
1717
1718 void kgnilnd_schedule_device(kgn_device_t *dev);
1719 void kgnilnd_device_callback(__u32 devid, __u64 arg);
1720 void kgnilnd_schedule_device_timer(unsigned long arg);
1721
1722 int kgnilnd_reaper(void *arg);
1723 int kgnilnd_scheduler(void *arg);
1724 int kgnilnd_dgram_mover(void *arg);
1725 int kgnilnd_rca(void *arg);
1726
1727 int kgnilnd_create_conn(kgn_conn_t **connp, kgn_device_t *dev);
1728 int kgnilnd_conn_isdup_locked(kgn_peer_t *peer, kgn_conn_t *newconn);
1729 kgn_conn_t *kgnilnd_find_conn_locked(kgn_peer_t *peer);
1730 int kgnilnd_get_conn(kgn_conn_t **connp, kgn_peer_t);
1731 kgn_conn_t *kgnilnd_find_or_create_conn_locked(kgn_peer_t *peer);
1732 void kgnilnd_peer_cancel_tx_queue(kgn_peer_t *peer);
1733 void kgnilnd_cancel_peer_connect_locked(kgn_peer_t *peer, struct list_head *zombies);
1734 int kgnilnd_close_stale_conns_locked(kgn_peer_t *peer, kgn_conn_t *newconn);
1735 void kgnilnd_peer_alive(kgn_peer_t *peer);
1736 void kgnilnd_peer_notify(kgn_peer_t *peer, int error);
1737 void kgnilnd_close_conn_locked(kgn_conn_t *conn, int error);
1738 void kgnilnd_close_conn(kgn_conn_t *conn, int error);
1739 void kgnilnd_complete_closed_conn(kgn_conn_t *conn);
1740 void kgnilnd_destroy_conn_ep(kgn_conn_t *conn);
1741
1742 int kgnilnd_close_peer_conns_locked(kgn_peer_t *peer, int why);
1743 int kgnilnd_report_node_state(lnet_nid_t nid, int down);
1744 void kgnilnd_wakeup_rca_thread(void);
1745 int kgnilnd_start_rca_thread(void);
1746
1747 int kgnilnd_tunables_init(void);
1748 void kgnilnd_tunables_fini(void);
1749 void kgnilnd_init_msg(kgn_msg_t *msg, int type, lnet_nid_t source);
1750
1751 void kgnilnd_bump_timeouts(__u32 nap_time, char *reason);
1752 void kgnilnd_pause_threads(void);
1753 int kgnilnd_hw_in_quiesce(void);
1754 int kgnilnd_check_hw_quiesce(void);
1755 void kgnilnd_quiesce_wait(char *reason);
1756 void kgnilnd_quiesce_end_callback(gni_nic_handle_t nic_handle, uint64_t msecs);
1757 int kgnilnd_ruhroh_thread(void *arg);
1758 void kgnilnd_reset_stack(void);
1759 void kgnilnd_critical_error(gni_err_handle_t err_handle);
1760
1761 void kgnilnd_insert_sysctl(void);
1762 void kgnilnd_remove_sysctl(void);
1763 void kgnilnd_proc_init(void);
1764 void kgnilnd_proc_fini(void);
1765
1766 /* gnilnd_conn.c */
1767 void kgnilnd_release_mbox(kgn_conn_t *conn, int purgatory_hold);
1768
1769 int kgnilnd_find_and_cancel_dgram(kgn_device_t *dev, lnet_nid_t dst_nid);
1770 void kgnilnd_cancel_dgram_locked(kgn_dgram_t *dgram);
1771 void kgnilnd_release_dgram(kgn_device_t *dev, kgn_dgram_t *dgram);
1772
1773 int kgnilnd_setup_wildcard_dgram(kgn_device_t *dev);
1774 int kgnilnd_cancel_net_dgrams(kgn_net_t *net);
1775 int kgnilnd_cancel_wc_dgrams(kgn_device_t *dev);
1776 void kgnilnd_wait_for_canceled_dgrams(kgn_device_t *dev);
1777
1778 int kgnilnd_dgram_waitq(void *arg);
1779
1780 int kgnilnd_set_conn_params(kgn_dgram_t *dgram);
1781
1782 /* struct2str functions - we don't use a default: case to cause the compile
1783  * to fail if there is a missing case. This allows us to hide these down here
1784  * out of the way but ensure we'll catch any updates to the enum/types
1785  * above */
1786
1787 #define DO_TYPE(x) case x: return #x;
1788 static inline const char *
1789 kgnilnd_fmablk_state2str(kgn_fmablk_state_t state)
1790 {
1791         /* Only want single char string for this */
1792         switch (state) {
1793         case GNILND_FMABLK_IDLE:
1794                 return "I";
1795         case GNILND_FMABLK_PHYS:
1796                 return "P";
1797         case GNILND_FMABLK_VIRT:
1798                 return "V";
1799         case GNILND_FMABLK_FREED:
1800                 return "F";
1801         }
1802         return "<unknown state>";
1803 }
1804
1805 static inline const char *
1806 kgnilnd_msgtype2str(int type)
1807 {
1808         switch (type) {
1809                 DO_TYPE(GNILND_MSG_NONE);
1810                 DO_TYPE(GNILND_MSG_NOOP);
1811                 DO_TYPE(GNILND_MSG_IMMEDIATE);
1812                 DO_TYPE(GNILND_MSG_PUT_REQ);
1813                 DO_TYPE(GNILND_MSG_PUT_NAK);
1814                 DO_TYPE(GNILND_MSG_PUT_ACK);
1815                 DO_TYPE(GNILND_MSG_PUT_DONE);
1816                 DO_TYPE(GNILND_MSG_GET_REQ);
1817                 DO_TYPE(GNILND_MSG_GET_NAK);
1818                 DO_TYPE(GNILND_MSG_GET_DONE);
1819                 DO_TYPE(GNILND_MSG_CLOSE);
1820                 DO_TYPE(GNILND_MSG_PUT_REQ_REV);
1821                 DO_TYPE(GNILND_MSG_PUT_DONE_REV);
1822                 DO_TYPE(GNILND_MSG_PUT_NAK_REV);
1823                 DO_TYPE(GNILND_MSG_GET_REQ_REV);
1824                 DO_TYPE(GNILND_MSG_GET_ACK_REV);
1825                 DO_TYPE(GNILND_MSG_GET_DONE_REV);
1826                 DO_TYPE(GNILND_MSG_GET_NAK_REV);
1827         }
1828         return "<unknown msg type>";
1829 }
1830
1831 static inline const char *
1832 kgnilnd_tx_state2str(kgn_tx_list_state_t state)
1833 {
1834         switch (state) {
1835                 DO_TYPE(GNILND_TX_IDLE);
1836                 DO_TYPE(GNILND_TX_ALLOCD);
1837                 DO_TYPE(GNILND_TX_PEERQ);
1838                 DO_TYPE(GNILND_TX_MAPQ);
1839                 DO_TYPE(GNILND_TX_FMAQ);
1840                 DO_TYPE(GNILND_TX_LIVE_FMAQ);
1841                 DO_TYPE(GNILND_TX_RDMAQ);
1842                 DO_TYPE(GNILND_TX_LIVE_RDMAQ);
1843                 DO_TYPE(GNILND_TX_DYING);
1844                 DO_TYPE(GNILND_TX_FREED);
1845         }
1846         return "<unknown state>";
1847 }
1848
1849 static inline const char *
1850 kgnilnd_conn_state2str(kgn_conn_t *conn)
1851 {
1852         kgn_conn_state_t state = conn->gnc_state;
1853         switch (state) {
1854                 DO_TYPE(GNILND_CONN_DUMMY);
1855                 DO_TYPE(GNILND_CONN_LISTEN);
1856                 DO_TYPE(GNILND_CONN_CONNECTING);
1857                 DO_TYPE(GNILND_CONN_ESTABLISHED);
1858                 DO_TYPE(GNILND_CONN_CLOSING);
1859                 DO_TYPE(GNILND_CONN_CLOSED);
1860                 DO_TYPE(GNILND_CONN_DONE);
1861                 DO_TYPE(GNILND_CONN_DESTROY_EP);
1862         }
1863         return "<?state?>";
1864 }
1865
1866 static inline const char *
1867 kgnilnd_connreq_type2str(kgn_connreq_t *connreq)
1868 {
1869         kgn_connreq_type_t type = connreq->gncr_type;
1870
1871         switch (type) {
1872                 DO_TYPE(GNILND_CONNREQ_REQ);
1873                 DO_TYPE(GNILND_CONNREQ_NAK);
1874                 DO_TYPE(GNILND_CONNREQ_CLOSE);
1875         }
1876         return "<?type?>";
1877 }
1878
1879 static inline const char *
1880 kgnilnd_dgram_state2str(kgn_dgram_t *dgram)
1881 {
1882         kgn_dgram_state_t state = dgram->gndg_state;
1883
1884         switch (state) {
1885                 DO_TYPE(GNILND_DGRAM_USED);
1886                 DO_TYPE(GNILND_DGRAM_POSTING);
1887                 DO_TYPE(GNILND_DGRAM_POSTED);
1888                 DO_TYPE(GNILND_DGRAM_PROCESSING);
1889                 DO_TYPE(GNILND_DGRAM_DONE);
1890                 DO_TYPE(GNILND_DGRAM_CANCELED);
1891         }
1892         return "<?state?>";
1893 }
1894
1895 static inline const char *
1896 kgnilnd_dgram_type2str(kgn_dgram_t *dgram)
1897 {
1898         kgn_dgram_type_t type = dgram->gndg_type;
1899
1900         switch (type) {
1901                 DO_TYPE(GNILND_DGRAM_REQ);
1902                 DO_TYPE(GNILND_DGRAM_WC_REQ);
1903                 DO_TYPE(GNILND_DGRAM_NAK);
1904                 DO_TYPE(GNILND_DGRAM_CLOSE);
1905         }
1906         return "<?type?>";
1907 }
1908
1909 static inline const char *
1910 kgnilnd_conn_dgram_type2str(kgn_dgram_type_t type)
1911 {
1912         switch (type) {
1913                 DO_TYPE(GNILND_DGRAM_REQ);
1914                 DO_TYPE(GNILND_DGRAM_WC_REQ);
1915                 DO_TYPE(GNILND_DGRAM_NAK);
1916                 DO_TYPE(GNILND_DGRAM_CLOSE);
1917         }
1918         return "<?type?>";
1919 }
1920
1921 #undef DO_TYPE
1922
1923 /* API wrapper functions - include late to pick up all of the other defines */
1924 #include "gnilnd_api_wrap.h"
1925
1926 /* pulls in tunables per platform and adds in nid/nic conversion
1927  * if RCA wasn't available at build time */
1928 #include "gnilnd_hss_ops.h"
1929
1930 #if defined(CONFIG_CRAY_GEMINI)
1931  #include "gnilnd_gemini.h"
1932 #elif defined(CONFIG_CRAY_ARIES)
1933  #include "gnilnd_aries.h"
1934 #else
1935  #error "Undefined Network Hardware Type"
1936 #endif
1937
1938 #endif /* _GNILND_GNILND_H_ */