Whamcloud - gitweb
LU-6142 lnet: use BIT() macro where appropriate
[fs/lustre-release.git] / lnet / klnds / gnilnd / gnilnd.c
1 /*
2  * Copyright (C) 2012 Cray, Inc.
3  *
4  * Copyright (c) 2013, 2017, Intel Corporation.
5  *
6  *   Author: Nic Henke <nic@cray.com>
7  *   Author: James Shimek <jshimek@cray.com>
8  *
9  *   This file is part of Lustre, http://www.lustre.org.
10  *
11  *   Lustre is free software; you can redistribute it and/or
12  *   modify it under the terms of version 2 of the GNU General Public
13  *   License as published by the Free Software Foundation.
14  *
15  *   Lustre is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *   GNU General Public License for more details.
19  *
20  *   You should have received a copy of the GNU General Public License
21  *   along with Lustre; if not, write to the Free Software
22  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  *
24  */
25 #include "gnilnd.h"
26
27 /* Primary entry points from LNET.  There are no guarantees against reentrance. */
28 const struct lnet_lnd the_kgnilnd = {
29         .lnd_type       = GNILND,
30         .lnd_startup    = kgnilnd_startup,
31         .lnd_shutdown   = kgnilnd_shutdown,
32         .lnd_ctl        = kgnilnd_ctl,
33         .lnd_send       = kgnilnd_send,
34         .lnd_recv       = kgnilnd_recv,
35         .lnd_eager_recv = kgnilnd_eager_recv,
36 };
37
38 kgn_data_t      kgnilnd_data;
39
40 int
41 kgnilnd_thread_start(int(*fn)(void *arg), void *arg, char *name, int id)
42 {
43         struct task_struct *thrd;
44
45         thrd = kthread_run(fn, arg, "%s_%02d", name, id);
46         if (IS_ERR(thrd))
47                 return PTR_ERR(thrd);
48
49         atomic_inc(&kgnilnd_data.kgn_nthreads);
50         return 0;
51 }
52
53 /* bind scheduler threads to cpus */
54 int
55 kgnilnd_start_sd_threads(void)
56 {
57         int cpu;
58         int i = 0;
59         struct task_struct *task;
60
61         for_each_online_cpu(cpu) {
62                 /* don't bind to cpu 0 - all interrupts are processed here */
63                 if (cpu == 0)
64                         continue;
65
66                 task = kthread_create(kgnilnd_scheduler, (void *)((long)i),
67                                       "%s_%02d", "kgnilnd_sd", i);
68                 if (!IS_ERR(task)) {
69                         kthread_bind(task, cpu);
70                         wake_up_process(task);
71                 } else {
72                         CERROR("Can't spawn gnilnd scheduler[%d] %ld\n", i,
73                                 PTR_ERR(task));
74                         return PTR_ERR(task);
75                 }
76                 atomic_inc(&kgnilnd_data.kgn_nthreads);
77
78                 if (++i >= *kgnilnd_tunables.kgn_sched_threads) {
79                         break;
80                 }
81         }
82
83         return 0;
84 }
85
86 /* needs write_lock on kgn_peer_conn_lock */
87 int
88 kgnilnd_close_stale_conns_locked(kgn_peer_t *peer, kgn_conn_t *newconn)
89 {
90         kgn_conn_t         *conn;
91         struct list_head   *ctmp, *cnxt;
92         int                 loopback;
93         int                 count = 0;
94
95         loopback = peer->gnp_nid == peer->gnp_net->gnn_ni->ni_nid;
96
97         list_for_each_safe(ctmp, cnxt, &peer->gnp_conns) {
98                 conn = list_entry(ctmp, kgn_conn_t, gnc_list);
99
100                 if (conn->gnc_state != GNILND_CONN_ESTABLISHED)
101                         continue;
102
103                 if (conn == newconn)
104                         continue;
105
106                 if (conn->gnc_device != newconn->gnc_device)
107                         continue;
108
109                 /* This is a two connection loopback - one talking to the other */
110                 if (loopback &&
111                     newconn->gnc_my_connstamp == conn->gnc_peer_connstamp &&
112                     newconn->gnc_peer_connstamp == conn->gnc_my_connstamp) {
113                         CDEBUG(D_NET, "skipping prune of %p, "
114                                 "loopback and matching stamps"
115                                 " connstamp %llu(%llu)"
116                                 " peerstamp %llu(%llu)\n",
117                                 conn, newconn->gnc_my_connstamp,
118                                 conn->gnc_peer_connstamp,
119                                 newconn->gnc_peer_connstamp,
120                                 conn->gnc_my_connstamp);
121                         continue;
122                 }
123
124                 if (conn->gnc_peerstamp != newconn->gnc_peerstamp) {
125                         LASSERTF(conn->gnc_peerstamp < newconn->gnc_peerstamp,
126                                 "conn 0x%p peerstamp %llu >= "
127                                 "newconn 0x%p peerstamp %llu\n",
128                                 conn, conn->gnc_peerstamp,
129                                 newconn, newconn->gnc_peerstamp);
130
131                         CDEBUG(D_NET, "Closing stale conn nid: %s "
132                                " peerstamp:%#llx(%#llx)\n",
133                                libcfs_nid2str(peer->gnp_nid),
134                                conn->gnc_peerstamp, newconn->gnc_peerstamp);
135                 } else {
136
137                         LASSERTF(conn->gnc_peer_connstamp < newconn->gnc_peer_connstamp,
138                                 "conn 0x%p peer_connstamp %llu >= "
139                                 "newconn 0x%p peer_connstamp %llu\n",
140                                 conn, conn->gnc_peer_connstamp,
141                                 newconn, newconn->gnc_peer_connstamp);
142
143                         CDEBUG(D_NET, "Closing stale conn nid: %s"
144                                " connstamp:%llu(%llu)\n",
145                                libcfs_nid2str(peer->gnp_nid),
146                                conn->gnc_peer_connstamp, newconn->gnc_peer_connstamp);
147                 }
148
149                 count++;
150                 kgnilnd_close_conn_locked(conn, -ESTALE);
151         }
152
153         if (count != 0) {
154                 CWARN("Closed %d stale conns to %s\n", count, libcfs_nid2str(peer->gnp_nid));
155         }
156
157         RETURN(count);
158 }
159
160 int
161 kgnilnd_conn_isdup_locked(kgn_peer_t *peer, kgn_conn_t *newconn)
162 {
163         kgn_conn_t       *conn;
164         struct list_head *tmp;
165         int               loopback;
166         ENTRY;
167
168         loopback = peer->gnp_nid == peer->gnp_net->gnn_ni->ni_nid;
169
170         list_for_each(tmp, &peer->gnp_conns) {
171                 conn = list_entry(tmp, kgn_conn_t, gnc_list);
172                 CDEBUG(D_NET, "checking conn 0x%p for peer %s"
173                         " lo %d new %llu existing %llu"
174                         " new peer %llu existing peer %llu"
175                         " new dev %p existing dev %p\n",
176                         conn, libcfs_nid2str(peer->gnp_nid),
177                         loopback,
178                         newconn->gnc_peerstamp, conn->gnc_peerstamp,
179                         newconn->gnc_peer_connstamp, conn->gnc_peer_connstamp,
180                         newconn->gnc_device, conn->gnc_device);
181
182                 /* conn is in the process of closing */
183                 if (conn->gnc_state != GNILND_CONN_ESTABLISHED)
184                         continue;
185
186                 /* 'newconn' is from an earlier version of 'peer'!!! */
187                 if (newconn->gnc_peerstamp < conn->gnc_peerstamp)
188                         RETURN(1);
189
190                 /* 'conn' is from an earlier version of 'peer': it will be
191                  * removed when we cull stale conns later on... */
192                 if (newconn->gnc_peerstamp > conn->gnc_peerstamp)
193                         continue;
194
195                 /* Different devices are OK */
196                 if (conn->gnc_device != newconn->gnc_device)
197                         continue;
198
199                 /* It's me connecting to myself */
200                 if (loopback &&
201                     newconn->gnc_my_connstamp == conn->gnc_peer_connstamp &&
202                     newconn->gnc_peer_connstamp == conn->gnc_my_connstamp)
203                         continue;
204
205                 /* 'newconn' is an earlier connection from 'peer'!!! */
206                 if (newconn->gnc_peer_connstamp < conn->gnc_peer_connstamp)
207                         RETURN(2);
208
209                 /* 'conn' is an earlier connection from 'peer': it will be
210                  * removed when we cull stale conns later on... */
211                 if (newconn->gnc_peer_connstamp > conn->gnc_peer_connstamp)
212                         continue;
213
214                 /* 'newconn' has the SAME connection stamp; 'peer' isn't
215                  * playing the game... */
216                 RETURN(3);
217         }
218
219         RETURN(0);
220 }
221
222 int
223 kgnilnd_create_conn(kgn_conn_t **connp, kgn_device_t *dev)
224 {
225         kgn_conn_t      *conn;
226         gni_return_t    rrc;
227         int             rc = 0;
228
229         LASSERT (!in_interrupt());
230         atomic_inc(&kgnilnd_data.kgn_nconns);
231
232         /* divide by 2 to allow for complete reset and immediate reconnect */
233         if (atomic_read(&kgnilnd_data.kgn_nconns) >= GNILND_MAX_CQID/2) {
234                 CERROR("Too many conn are live: %d > %d\n",
235                         atomic_read(&kgnilnd_data.kgn_nconns), GNILND_MAX_CQID/2);
236                 atomic_dec(&kgnilnd_data.kgn_nconns);
237                 return -E2BIG;
238         }
239
240         LIBCFS_ALLOC(conn, sizeof(*conn));
241         if (conn == NULL) {
242                 atomic_dec(&kgnilnd_data.kgn_nconns);
243                 return -ENOMEM;
244         }
245
246         conn->gnc_tx_ref_table =
247                 kgnilnd_vzalloc(GNILND_MAX_MSG_ID * sizeof(void *));
248         if (conn->gnc_tx_ref_table == NULL) {
249                 CERROR("Can't allocate conn tx_ref_table\n");
250                 GOTO(failed, rc = -ENOMEM);
251         }
252
253         mutex_init(&conn->gnc_smsg_mutex);
254         mutex_init(&conn->gnc_rdma_mutex);
255         atomic_set(&conn->gnc_refcount, 1);
256         atomic_set(&conn->gnc_reaper_noop, 0);
257         atomic_set(&conn->gnc_sched_noop, 0);
258         atomic_set(&conn->gnc_tx_in_use, 0);
259         INIT_LIST_HEAD(&conn->gnc_list);
260         INIT_LIST_HEAD(&conn->gnc_hashlist);
261         INIT_LIST_HEAD(&conn->gnc_schedlist);
262         INIT_LIST_HEAD(&conn->gnc_fmaq);
263         INIT_LIST_HEAD(&conn->gnc_mdd_list);
264         INIT_LIST_HEAD(&conn->gnc_delaylist);
265         spin_lock_init(&conn->gnc_list_lock);
266         spin_lock_init(&conn->gnc_tx_lock);
267         conn->gnc_magic = GNILND_CONN_MAGIC;
268
269         /* set tx id to nearly the end to make sure we find wrapping
270          * issues soon */
271         conn->gnc_next_tx = (int) GNILND_MAX_MSG_ID - 10;
272
273         /* if this fails, we have conflicts and MAX_TX is too large */
274         BUILD_BUG_ON(GNILND_MAX_MSG_ID >= GNILND_MSGID_CLOSE);
275
276         /* get a new unique CQ id for this conn */
277         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
278         conn->gnc_my_connstamp = kgnilnd_data.kgn_connstamp++;
279         conn->gnc_cqid = kgnilnd_get_cqid_locked();
280         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
281
282         if (conn->gnc_cqid == 0) {
283                 CERROR("Could not allocate unique CQ ID for conn 0x%p\n", conn);
284                 GOTO(failed, rc = -E2BIG);
285         }
286
287         CDEBUG(D_NET, "alloc cqid %u for conn 0x%p\n",
288                 conn->gnc_cqid, conn);
289
290         /* need to be set before gnc_ephandle to allow kgnilnd_destroy_conn_ep to
291          * check context */
292         conn->gnc_device = dev;
293
294         conn->gnc_timeout = max(*kgnilnd_tunables.kgn_timeout,
295                                  GNILND_MIN_TIMEOUT);
296         kgnilnd_update_reaper_timeout(conn->gnc_timeout);
297
298         /* this is the ep_handle for doing SMSG & BTE */
299         mutex_lock(&dev->gnd_cq_mutex);
300         rrc = kgnilnd_ep_create(dev->gnd_handle, dev->gnd_snd_fma_cqh,
301                                 &conn->gnc_ephandle);
302         mutex_unlock(&dev->gnd_cq_mutex);
303         if (rrc != GNI_RC_SUCCESS)
304                 GOTO(failed, rc = -ENETDOWN);
305
306         CDEBUG(D_NET, "created conn 0x%p ep_hndl 0x%p\n",
307                conn, conn->gnc_ephandle);
308
309         /* add ref for EP canceling */
310         kgnilnd_conn_addref(conn);
311         atomic_inc(&dev->gnd_neps);
312
313         *connp = conn;
314         return 0;
315
316 failed:
317         atomic_dec(&kgnilnd_data.kgn_nconns);
318         kgnilnd_vfree(conn->gnc_tx_ref_table,
319                       GNILND_MAX_MSG_ID * sizeof(void *));
320         LIBCFS_FREE(conn, sizeof(*conn));
321         return rc;
322 }
323
324 /* needs to be called with kgn_peer_conn_lock held (read or write) */
325 kgn_conn_t *
326 kgnilnd_find_conn_locked(kgn_peer_t *peer)
327 {
328         kgn_conn_t      *conn = NULL;
329
330         /* if we are in reset, this conn is going to die soon */
331         if (unlikely(kgnilnd_data.kgn_in_reset)) {
332                 RETURN(NULL);
333         }
334
335         /* just return the first ESTABLISHED connection */
336         list_for_each_entry(conn, &peer->gnp_conns, gnc_list) {
337                 /* kgnilnd_finish_connect doesn't put connections on the
338                  * peer list until they are actually established */
339                 LASSERTF(conn->gnc_state >= GNILND_CONN_ESTABLISHED,
340                         "found conn %p state %s on peer %p (%s)\n",
341                         conn, kgnilnd_conn_state2str(conn), peer,
342                         libcfs_nid2str(peer->gnp_nid));
343                 if (conn->gnc_state != GNILND_CONN_ESTABLISHED)
344                         continue;
345
346                 RETURN(conn);
347         }
348         RETURN(NULL);
349 }
350
351 /* needs write_lock on kgn_peer_conn_lock held */
352 kgn_conn_t *
353 kgnilnd_find_or_create_conn_locked(kgn_peer_t *peer) {
354
355         kgn_device_t    *dev = peer->gnp_net->gnn_dev;
356         kgn_conn_t      *conn;
357
358         conn = kgnilnd_find_conn_locked(peer);
359
360         if (conn != NULL) {
361                 return conn;
362         }
363
364         /* if the peer was previously connecting, check if we should
365          * trigger another connection attempt yet. */
366         if (time_before(jiffies, peer->gnp_reconnect_time)) {
367                 return NULL;
368         }
369
370         /* This check prevents us from creating a new connection to a peer while we are
371          * still in the process of closing an existing connection to the peer.
372          */
373         list_for_each_entry(conn, &peer->gnp_conns, gnc_list) {
374                 if (conn->gnc_ephandle != NULL) {
375                         CDEBUG(D_NET, "Not connecting non-null ephandle found peer 0x%p->%s\n", peer,
376                                 libcfs_nid2str(peer->gnp_nid));
377                         return NULL;
378                 }
379         }
380
381         if (peer->gnp_connecting != GNILND_PEER_IDLE) {
382                 /* if we are not connecting, fire up a new connection */
383                 /* or if we are anything but IDLE DONT start a new connection */
384                return NULL;
385         }
386
387         CDEBUG(D_NET, "starting connect to %s\n",
388                 libcfs_nid2str(peer->gnp_nid));
389         peer->gnp_connecting = GNILND_PEER_CONNECT;
390         kgnilnd_peer_addref(peer); /* extra ref for connd */
391
392         spin_lock(&dev->gnd_connd_lock);
393         list_add_tail(&peer->gnp_connd_list, &dev->gnd_connd_peers);
394         spin_unlock(&dev->gnd_connd_lock);
395
396         kgnilnd_schedule_dgram(dev);
397         CDEBUG(D_NETTRACE, "scheduling new connect\n");
398
399         return NULL;
400 }
401
402 /* Caller is responsible for deciding if/when to call this */
403 void
404 kgnilnd_destroy_conn_ep(kgn_conn_t *conn)
405 {
406         gni_return_t    rrc;
407         gni_ep_handle_t tmp_ep;
408
409         /* only if we actually initialized it,
410          *  then set NULL to tell kgnilnd_destroy_conn to leave it alone */
411
412         tmp_ep = xchg(&conn->gnc_ephandle, NULL);
413         if (tmp_ep != NULL) {
414                 /* we never re-use the EP, so unbind is not needed */
415                 mutex_lock(&conn->gnc_device->gnd_cq_mutex);
416                 rrc = kgnilnd_ep_destroy(tmp_ep);
417
418                 mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
419
420                 /* if this fails, it could hork up kgni smsg retransmit and others
421                  * since we could free the SMSG mbox memory, etc. */
422                 LASSERTF(rrc == GNI_RC_SUCCESS, "rrc %d conn 0x%p ep 0x%p\n",
423                          rrc, conn, conn->gnc_ephandle);
424
425                 atomic_dec(&conn->gnc_device->gnd_neps);
426
427                 /* clear out count added in kgnilnd_close_conn_locked
428                  * conn will have a peer once it hits finish_connect, where it
429                  * is the first spot we'll mark it ESTABLISHED as well */
430                 if (conn->gnc_peer) {
431                         kgnilnd_admin_decref(conn->gnc_peer->gnp_dirty_eps);
432                 }
433
434                 /* drop ref for EP */
435                 kgnilnd_conn_decref(conn);
436         }
437 }
438
439 void
440 kgnilnd_destroy_conn(kgn_conn_t *conn)
441 {
442         LASSERTF(!in_interrupt() &&
443                 !conn->gnc_scheduled &&
444                 !conn->gnc_in_purgatory &&
445                 conn->gnc_ephandle == NULL &&
446                 list_empty(&conn->gnc_list) &&
447                 list_empty(&conn->gnc_hashlist) &&
448                 list_empty(&conn->gnc_schedlist) &&
449                 list_empty(&conn->gnc_mdd_list) &&
450                 list_empty(&conn->gnc_delaylist) &&
451                 conn->gnc_magic == GNILND_CONN_MAGIC,
452                 "conn 0x%p->%s IRQ %d sched %d purg %d ep 0x%p Mg %d lists %d/%d/%d/%d/%d\n",
453                 conn, conn->gnc_peer ? libcfs_nid2str(conn->gnc_peer->gnp_nid)
454                                      : "<?>",
455                 !!in_interrupt(), conn->gnc_scheduled,
456                 conn->gnc_in_purgatory,
457                 conn->gnc_ephandle,
458                 conn->gnc_magic,
459                 list_empty(&conn->gnc_list),
460                 list_empty(&conn->gnc_hashlist),
461                 list_empty(&conn->gnc_schedlist),
462                 list_empty(&conn->gnc_mdd_list),
463                 list_empty(&conn->gnc_delaylist));
464
465         /* Tripping these is especially bad, as it means we have items on the
466          *  lists that didn't keep their refcount on the connection - or
467          *  somebody evil released their own */
468         LASSERTF(list_empty(&conn->gnc_fmaq) &&
469                  atomic_read(&conn->gnc_nlive_fma) == 0 &&
470                  atomic_read(&conn->gnc_nlive_rdma) == 0,
471                  "conn 0x%p fmaq %d@0x%p nfma %d nrdma %d\n",
472                  conn, kgnilnd_count_list(&conn->gnc_fmaq), &conn->gnc_fmaq,
473                  atomic_read(&conn->gnc_nlive_fma), atomic_read(&conn->gnc_nlive_rdma));
474
475         CDEBUG(D_NET, "destroying conn %p ephandle %p error %d\n",
476                 conn, conn->gnc_ephandle, conn->gnc_error);
477
478         /* We are freeing this memory remove the magic value from the connection */
479         conn->gnc_magic = 0;
480
481         /* if there is an FMA blk left here, we'll tear it down */
482         if (conn->gnc_fma_blk) {
483                 if (conn->gnc_peer) {
484                         kgn_mbox_info_t *mbox;
485                         mbox = &conn->gnc_fma_blk->gnm_mbox_info[conn->gnc_mbox_id];
486                         mbox->mbx_prev_nid = conn->gnc_peer->gnp_nid;
487                 }
488                 kgnilnd_release_mbox(conn, 0);
489         }
490
491         if (conn->gnc_peer != NULL)
492                 kgnilnd_peer_decref(conn->gnc_peer);
493
494         if (conn->gnc_tx_ref_table != NULL) {
495                 kgnilnd_vfree(conn->gnc_tx_ref_table,
496                               GNILND_MAX_MSG_ID * sizeof(void *));
497         }
498
499         LIBCFS_FREE(conn, sizeof(*conn));
500         atomic_dec(&kgnilnd_data.kgn_nconns);
501 }
502
503 /* peer_alive and peer_notify done in the style of the o2iblnd */
504 void
505 kgnilnd_peer_alive(kgn_peer_t *peer)
506 {
507         time64_t now = ktime_get_seconds();
508
509         set_mb(peer->gnp_last_alive, now);
510 }
511
512 void
513 kgnilnd_peer_notify(kgn_peer_t *peer, int error, int alive)
514 {
515         int                     tell_lnet = 0;
516         int                     nnets = 0;
517         int                     rc;
518         int                     i, j;
519         kgn_conn_t             *conn;
520         kgn_net_t             **nets;
521         kgn_net_t              *net;
522
523
524         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DONT_NOTIFY))
525                 return;
526
527         /* Tell LNet we are giving ups on this peer - but only
528          * if it isn't already reconnected or trying to reconnect */
529         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
530
531         /* use kgnilnd_find_conn_locked to avoid any conns in the process of being nuked
532          *
533          * don't tell LNet if we are in reset - we assume that everyone will be able to
534          * reconnect just fine
535          */
536         conn = kgnilnd_find_conn_locked(peer);
537
538         CDEBUG(D_NETTRACE, "peer 0x%p->%s ting %d conn 0x%p, rst %d error %d\n",
539                peer, libcfs_nid2str(peer->gnp_nid), peer->gnp_connecting, conn,
540                kgnilnd_data.kgn_in_reset, error);
541
542         if (((peer->gnp_connecting == GNILND_PEER_IDLE) &&
543             (conn == NULL) &&
544             (!kgnilnd_data.kgn_in_reset) &&
545             (!kgnilnd_conn_clean_errno(error))) || alive) {
546                 tell_lnet = 1;
547         }
548
549         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
550
551         if (!tell_lnet) {
552                 /* short circuit if we dont need to notify Lnet */
553                 return;
554         }
555
556         rc = down_read_trylock(&kgnilnd_data.kgn_net_rw_sem);
557
558         if (rc) {
559             /* dont do this if this fails since LNET is in shutdown or something else
560              */
561
562                 for (i = 0; i < *kgnilnd_tunables.kgn_net_hash_size; i++) {
563                         list_for_each_entry(net , &kgnilnd_data.kgn_nets[i], gnn_list) {
564                                 /* if gnn_shutdown set for any net shutdown is in progress just return */
565                                 if (net->gnn_shutdown) {
566                                         up_read(&kgnilnd_data.kgn_net_rw_sem);
567                                         return;
568                                 }
569                                 nnets++;
570                         }
571                 }
572
573                 if (nnets == 0) {
574                         /* shutdown in progress most likely */
575                         up_read(&kgnilnd_data.kgn_net_rw_sem);
576                         return;
577                 }
578
579                 CFS_ALLOC_PTR_ARRAY(nets, nnets);
580
581                 if (nets == NULL) {
582                         up_read(&kgnilnd_data.kgn_net_rw_sem);
583                         CERROR("Failed to allocate nets[%d]\n", nnets);
584                         return;
585                 }
586
587                 j = 0;
588                 for (i = 0; i < *kgnilnd_tunables.kgn_net_hash_size; i++) {
589                         list_for_each_entry(net, &kgnilnd_data.kgn_nets[i], gnn_list) {
590                                 nets[j] = net;
591                                 kgnilnd_net_addref(net);
592                                 j++;
593                         }
594                 }
595                 up_read(&kgnilnd_data.kgn_net_rw_sem);
596
597                 for (i = 0; i < nnets; i++) {
598                         lnet_nid_t peer_nid;
599
600                         net = nets[i];
601
602                         peer_nid = kgnilnd_lnd2lnetnid(net->gnn_ni->ni_nid,
603                                                                  peer->gnp_nid);
604
605                         CDEBUG(D_NET, "peer 0x%p->%s last_alive %lld (%llds ago)\n",
606                                 peer, libcfs_nid2str(peer_nid), peer->gnp_last_alive,
607                                 ktime_get_seconds() - peer->gnp_last_alive);
608
609                         lnet_notify(net->gnn_ni, peer_nid, alive,
610                                     (alive) ? true : false,
611                                     peer->gnp_last_alive);
612
613                         kgnilnd_net_decref(net);
614                 }
615
616                 CFS_FREE_PTR_ARRAY(nets, nnets);
617         }
618 }
619
620 /* need write_lock on kgn_peer_conn_lock */
621 void
622 kgnilnd_close_conn_locked(kgn_conn_t *conn, int error)
623 {
624         kgn_peer_t        *peer = conn->gnc_peer;
625         ENTRY;
626
627         LASSERT(!in_interrupt());
628
629         /* store error for tx completion */
630         conn->gnc_error = error;
631         peer->gnp_last_errno = error;
632
633         /* use real error from peer if possible */
634         if (error == -ECONNRESET) {
635                 error = conn->gnc_peer_error;
636         }
637
638         /* if we NETERROR, make sure it is rate limited */
639         if (!kgnilnd_conn_clean_errno(error) &&
640             peer->gnp_state != GNILND_PEER_DOWN) {
641                 CNETERR("closing conn to %s: error %d\n",
642                        libcfs_nid2str(peer->gnp_nid), error);
643         } else {
644                 CDEBUG(D_NET, "closing conn to %s: error %d\n",
645                        libcfs_nid2str(peer->gnp_nid), error);
646         }
647
648         LASSERTF(conn->gnc_state == GNILND_CONN_ESTABLISHED,
649                 "conn %p to %s with bogus state %s\n", conn,
650                 libcfs_nid2str(conn->gnc_peer->gnp_nid),
651                 kgnilnd_conn_state2str(conn));
652         LASSERT(!list_empty(&conn->gnc_hashlist));
653         LASSERT(!list_empty(&conn->gnc_list));
654
655
656         /* mark peer count here so any place the EP gets destroyed will
657          * open up the peer count so that a new ESTABLISHED conn is then free
658          * to send new messages -- sending before the previous EPs are destroyed
659          * could end up with messages on the network for the old conn _after_
660          * the new conn and break the mbox safety protocol */
661         kgnilnd_admin_addref(conn->gnc_peer->gnp_dirty_eps);
662
663         /* Remove from conn hash table: no new callbacks */
664         list_del_init(&conn->gnc_hashlist);
665         kgnilnd_data.kgn_conn_version++;
666         kgnilnd_conn_decref(conn);
667
668         /* if we are in reset, go right to CLOSED as there is no scheduler
669          * thread to move from CLOSING to CLOSED */
670         if (unlikely(kgnilnd_data.kgn_in_reset)) {
671                 conn->gnc_state = GNILND_CONN_CLOSED;
672         } else {
673                 conn->gnc_state = GNILND_CONN_CLOSING;
674         }
675
676         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RDMA_CQ_ERROR)) {
677                 msleep_interruptible(MSEC_PER_SEC);
678         }
679
680         /* leave on peer->gnp_conns to make sure we don't let the reaper
681          * or others try to unlink this peer until the conn is fully
682          * processed for closing */
683
684         if (kgnilnd_check_purgatory_conn(conn)) {
685                 kgnilnd_add_purgatory_locked(conn, conn->gnc_peer);
686         }
687
688         /* Reset RX timeout to ensure we wait for an incoming CLOSE
689          * for the full timeout.  If we get a CLOSE we know the
690          * peer has stopped all RDMA.  Otherwise if we wait for
691          * the full timeout we can also be sure all RDMA has stopped. */
692         conn->gnc_last_rx = conn->gnc_last_rx_cq = jiffies;
693         mb();
694
695         /* schedule sending CLOSE - if we are in quiesce, this adds to
696          * gnd_ready_conns and allows us to find it in quiesce processing */
697         kgnilnd_schedule_conn(conn);
698
699         EXIT;
700 }
701
702 void
703 kgnilnd_close_conn(kgn_conn_t *conn, int error)
704 {
705         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
706         /* need to check the state here - this call is racy and we don't
707          * know the state until after the lock is grabbed */
708         if (conn->gnc_state == GNILND_CONN_ESTABLISHED) {
709                 kgnilnd_close_conn_locked(conn, error);
710         }
711         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
712 }
713
714 void
715 kgnilnd_complete_closed_conn(kgn_conn_t *conn)
716 {
717         LIST_HEAD               (sinners);
718         kgn_tx_t               *tx, *txn;
719         int                     nlive = 0;
720         int                     nrdma = 0;
721         int                     nq_rdma = 0;
722         int                     logmsg;
723         ENTRY;
724
725         /* Dump log  on cksum error - wait until complete phase to let
726          * RX of error happen */
727         if (*kgnilnd_tunables.kgn_checksum_dump &&
728             (conn != NULL && conn->gnc_peer_error == -ENOKEY)) {
729                 libcfs_debug_dumplog();
730         }
731
732         /* _CLOSED set in kgnilnd_process_fmaq once we decide to
733          * send the CLOSE or not */
734         LASSERTF(conn->gnc_state == GNILND_CONN_CLOSED,
735                  "conn 0x%p->%s with bad state %s\n",
736                  conn, conn->gnc_peer ?
737                         libcfs_nid2str(conn->gnc_peer->gnp_nid) :
738                         "<?>",
739                  kgnilnd_conn_state2str(conn));
740
741         LASSERT(list_empty(&conn->gnc_hashlist));
742         /* We shouldnt be on the delay list, the conn can 
743          * get added to this list during a retransmit, and retransmits
744          * only occur within scheduler threads.
745          */
746         LASSERT(list_empty(&conn->gnc_delaylist));
747
748         /* we've sent the close, start nuking */
749         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SCHEDULE_COMPLETE))
750                 kgnilnd_schedule_conn(conn);
751
752         if (conn->gnc_scheduled != GNILND_CONN_PROCESS) {
753                 CDEBUG(D_NETERROR, "Error someone scheduled us after we were "
754                                 "done, Attempting to recover conn 0x%p "
755                                 "scheduled %d function: %s line: %d\n", conn,
756                                 conn->gnc_scheduled, conn->gnc_sched_caller,
757                                 conn->gnc_sched_line);
758                 RETURN_EXIT;
759         }
760
761         /* we don't use lists to track things that we can get out of the
762          * tx_ref table... */
763
764         /* need to hold locks for tx_list_state, sampling it is too racy:
765          * - the lock actually protects tx != NULL, but we can't take the proper
766          *   lock until we check tx_list_state, which would be too late and
767          *   we could have the TX change under us.
768          * gnd_rdmaq_lock and gnd_lock and not used together, so taking both
769          * should be fine */
770         spin_lock(&conn->gnc_device->gnd_rdmaq_lock);
771         spin_lock(&conn->gnc_device->gnd_lock);
772
773         for (nrdma = 0; nrdma < GNILND_MAX_MSG_ID; nrdma++) {
774                 tx = conn->gnc_tx_ref_table[nrdma];
775
776                 if (tx != NULL) {
777                         /* only print the first error and if not CLOSE, we often don't see
778                          * CQ events for that by the time we get here... and really don't care */
779                         if (nlive || tx->tx_msg.gnm_type == GNILND_MSG_CLOSE)
780                                 tx->tx_state |= GNILND_TX_QUIET_ERROR;
781                         nlive++;
782                         GNIDBG_TX(D_NET, tx, "cleaning up on close, nlive %d", nlive);
783
784                         /* don't worry about gnc_lock here as nobody else should be
785                          * touching this conn */
786                         kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
787                         list_add_tail(&tx->tx_list, &sinners);
788                 }
789         }
790         spin_unlock(&conn->gnc_device->gnd_lock);
791         spin_unlock(&conn->gnc_device->gnd_rdmaq_lock);
792
793         /* nobody should have marked this as needing scheduling after
794          * we called close - so only ref should be us handling it */
795         if (conn->gnc_scheduled != GNILND_CONN_PROCESS) {
796                 CDEBUG(D_NETERROR, "Error someone scheduled us after we were "
797                                 "done, Attempting to recover conn 0x%p "
798                                 "scheduled %d function %s line: %d\n", conn,
799                                 conn->gnc_scheduled, conn->gnc_sched_caller,
800                                 conn->gnc_sched_line);
801         }
802         /* now reset a few to actual counters... */
803         nrdma = atomic_read(&conn->gnc_nlive_rdma);
804         nq_rdma = atomic_read(&conn->gnc_nq_rdma);
805
806         if (!list_empty(&sinners)) {
807                 list_for_each_entry_safe(tx, txn, &sinners, tx_list) {
808                         /* clear tx_list to make tx_add_list_locked happy */
809                         list_del_init(&tx->tx_list);
810                         /* The error codes determine if we hold onto the MDD */
811                         kgnilnd_tx_done(tx, conn->gnc_error);
812                 }
813         }
814
815         logmsg = (nlive + nrdma + nq_rdma);
816
817         if (logmsg) {
818                 int level = conn->gnc_peer->gnp_state == GNILND_PEER_UP ?
819                                 D_NETERROR : D_NET;
820                 CDEBUG(level, "Closed conn 0x%p->%s (errno %d,"
821                         " peer errno %d): canceled %d TX, %d/%d RDMA\n",
822                         conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
823                         conn->gnc_error, conn->gnc_peer_error,
824                         nlive, nq_rdma, nrdma);
825         }
826
827         kgnilnd_destroy_conn_ep(conn);
828
829         /* Bug 765042 - race this with completing a new conn to same peer - we need
830          * finish_connect to detach purgatory before we can do it ourselves here */
831         CFS_RACE(CFS_FAIL_GNI_FINISH_PURG);
832
833         /* now it is safe to remove from peer list - anyone looking at
834          * gnp_conns now is free to unlink if not on purgatory */
835         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
836
837         conn->gnc_state = GNILND_CONN_DONE;
838
839         /* Decrement counter if we are marked by del_conn_or_peers for closing
840          */
841         if (conn->gnc_needs_closing)
842                 kgnilnd_admin_decref(kgnilnd_data.kgn_npending_conns);
843
844         /* Remove from peer's list of valid connections if its not in purgatory */
845         if (!conn->gnc_in_purgatory) {
846                 list_del_init(&conn->gnc_list);
847                 /* Lose peers reference on the conn */
848                 kgnilnd_conn_decref(conn);
849         }
850
851         /* NB - only unlinking if we set pending in del_peer_locked from admin or
852          * shutdown */
853         if (kgnilnd_peer_active(conn->gnc_peer) &&
854             conn->gnc_peer->gnp_pending_unlink &&
855             kgnilnd_can_unlink_peer_locked(conn->gnc_peer)) {
856                 kgnilnd_unlink_peer_locked(conn->gnc_peer);
857         }
858
859         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
860
861         /* I'm telling Mommy! - use peer_error if they initiated close */
862         kgnilnd_peer_notify(conn->gnc_peer,
863                             conn->gnc_error == -ECONNRESET ?
864                             conn->gnc_peer_error : conn->gnc_error, 0);
865
866         EXIT;
867 }
868
869 int
870 kgnilnd_set_conn_params(kgn_dgram_t *dgram)
871 {
872         kgn_conn_t             *conn = dgram->gndg_conn;
873         kgn_connreq_t          *connreq = &dgram->gndg_conn_in;
874         kgn_gniparams_t        *rem_param = &connreq->gncr_gnparams;
875         gni_return_t            rrc;
876         int                     rc = 0;
877         gni_smsg_attr_t        *remote = &connreq->gncr_gnparams.gnpr_smsg_attr;
878
879         /* set timeout vals in conn early so we can use them for the NAK */
880
881         /* use max of the requested and our timeout, peer will do the same */
882         conn->gnc_timeout = max(conn->gnc_timeout, connreq->gncr_timeout);
883
884         /* only ep_bind really mucks around with the CQ */
885         /* only ep bind if we are not connecting to ourself and the dstnid is not a wildcard. this check
886          * is necessary as you can only bind an ep once and we must make sure we dont bind when already bound.
887          */
888         if (connreq->gncr_dstnid != LNET_NID_ANY && dgram->gndg_conn_out.gncr_dstnid != connreq->gncr_srcnid) {
889                 mutex_lock(&conn->gnc_device->gnd_cq_mutex);
890                 rrc = kgnilnd_ep_bind(conn->gnc_ephandle,
891                         connreq->gncr_gnparams.gnpr_host_id,
892                         conn->gnc_cqid);
893                 mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
894                 if (rrc != GNI_RC_SUCCESS) {
895                         rc = -ECONNABORTED;
896                         goto return_out;
897                 }
898         }
899
900         rrc = kgnilnd_ep_set_eventdata(conn->gnc_ephandle, conn->gnc_cqid,
901                          connreq->gncr_gnparams.gnpr_cqid);
902         if (rrc != GNI_RC_SUCCESS) {
903                 rc = -ECONNABORTED;
904                 goto cleanup_out;
905         }
906
907         /* Initialize SMSG */
908         rrc = kgnilnd_smsg_init(conn->gnc_ephandle, &conn->gnpr_smsg_attr,
909                         &connreq->gncr_gnparams.gnpr_smsg_attr);
910         if (unlikely(rrc == GNI_RC_INVALID_PARAM)) {
911                 gni_smsg_attr_t *local = &conn->gnpr_smsg_attr;
912                 /* help folks figure out if there is a tunable off, etc. */
913                 LCONSOLE_ERROR("SMSG attribute mismatch. Data from local/remote:"
914                                " type %d/%d msg_maxsize %u/%u"
915                                " mbox_maxcredit %u/%u. Please check kgni"
916                                " logs for further data\n",
917                                local->msg_type, remote->msg_type,
918                                local->msg_maxsize, remote->msg_maxsize,
919                                local->mbox_maxcredit, remote->mbox_maxcredit);
920         }
921         if (rrc != GNI_RC_SUCCESS) {
922                 rc = -ECONNABORTED;
923                 goto cleanup_out;
924         }
925
926         /* log this for help in debuggin SMSG buffer re-use */
927         CDEBUG(D_NET, "conn %p src %s dst %s smsg %p acquired"
928                 " local cqid %u SMSG %p->%u hndl %#llx.%#llx"
929                 " remote cqid %u SMSG %p->%u hndl %#llx.%#llx\n",
930                 conn, libcfs_nid2str(connreq->gncr_srcnid),
931                 libcfs_nid2str(connreq->gncr_dstnid),
932                 &conn->gnpr_smsg_attr,
933                 conn->gnc_cqid,
934                 conn->gnpr_smsg_attr.msg_buffer,
935                 conn->gnpr_smsg_attr.mbox_offset,
936                 conn->gnpr_smsg_attr.mem_hndl.qword1,
937                 conn->gnpr_smsg_attr.mem_hndl.qword2,
938                 rem_param->gnpr_cqid,
939                 rem_param->gnpr_smsg_attr.msg_buffer,
940                 rem_param->gnpr_smsg_attr.mbox_offset,
941                 rem_param->gnpr_smsg_attr.mem_hndl.qword1,
942                 rem_param->gnpr_smsg_attr.mem_hndl.qword2);
943
944         conn->gnc_peerstamp = connreq->gncr_peerstamp;
945         conn->gnc_peer_connstamp = connreq->gncr_connstamp;
946         conn->remote_mbox_addr = (void *)((char *)remote->msg_buffer + remote->mbox_offset);
947
948         /* We update the reaper timeout once we have a valid conn and timeout */
949         kgnilnd_update_reaper_timeout(GNILND_TO2KA(conn->gnc_timeout));
950
951         return 0;
952
953 cleanup_out:
954         rrc = kgnilnd_ep_unbind(conn->gnc_ephandle);
955         /* not sure I can just let this fly */
956         LASSERTF(rrc == GNI_RC_SUCCESS,
957                 "bad rc from gni_ep_unbind trying to cleanup: %d\n", rrc);
958
959 return_out:
960         LASSERTF(rc != 0, "SOFTWARE BUG: rc == 0\n");
961         CERROR("Error setting connection params from %s: %d\n",
962                libcfs_nid2str(connreq->gncr_srcnid), rc);
963         return rc;
964 }
965
966 /* needs down_read on kgn_net_rw_sem held from before this call until
967  * after the write_lock on kgn_peer_conn_lock - this ensures we stay sane
968  * with kgnilnd_shutdown - it'll get the sem and set shutdown, then get the
969  * kgn_peer_conn_lock to start del_peer'ing. If we hold the sem until after
970  * kgn_peer_conn_lock is held, we guarantee that nobody calls
971  * kgnilnd_add_peer_locked without checking gnn_shutdown */
972 int
973 kgnilnd_create_peer_safe(kgn_peer_t **peerp,
974                          lnet_nid_t nid,
975                          kgn_net_t *net,
976                          int node_state)
977 {
978         kgn_peer_t      *peer;
979         int             rc;
980
981         LASSERT(nid != LNET_NID_ANY);
982
983         /* We dont pass the net around in the dgram anymore so here is where we find it
984          * this will work unless its in shutdown or the nid has a net that is invalid.
985          * Either way error code needs to be returned in that case.
986          *
987          * If the net passed in is not NULL then we can use it, this alleviates looking it
988          * when the calling function has access to the data.
989          */
990         if (net == NULL) {
991                 rc = kgnilnd_find_net(nid, &net);
992                 if (rc < 0)
993                         return rc;
994         } else {
995                 /* find net adds a reference on the net if we are not using
996                  * it we must do it manually so the net references are
997                  * correct when tearing down the net
998                  */
999                 kgnilnd_net_addref(net);
1000         }
1001
1002         LIBCFS_ALLOC(peer, sizeof(*peer));
1003         if (peer == NULL) {
1004                 kgnilnd_net_decref(net);
1005                 return -ENOMEM;
1006         }
1007         peer->gnp_nid = nid;
1008         peer->gnp_state = node_state;
1009
1010         /* translate from nid to nic addr & store */
1011         rc = kgnilnd_nid_to_nicaddrs(LNET_NIDADDR(nid), 1, &peer->gnp_host_id);
1012         if (rc <= 0) {
1013                 kgnilnd_net_decref(net);
1014                 LIBCFS_FREE(peer, sizeof(*peer));
1015                 return -ESRCH;
1016         }
1017         CDEBUG(D_NET, "peer 0x%p->%s -> NIC 0x%x\n", peer,
1018                 libcfs_nid2str(nid), peer->gnp_host_id);
1019
1020         atomic_set(&peer->gnp_refcount, 1);     /* 1 ref for caller */
1021         atomic_set(&peer->gnp_dirty_eps, 0);
1022
1023         INIT_LIST_HEAD(&peer->gnp_list);
1024         INIT_LIST_HEAD(&peer->gnp_connd_list);
1025         INIT_LIST_HEAD(&peer->gnp_conns);
1026         INIT_LIST_HEAD(&peer->gnp_tx_queue);
1027
1028         /* the first reconnect should happen immediately, so we leave
1029          * gnp_reconnect_interval set to 0 */
1030
1031         LASSERTF(net != NULL, "peer 0x%p->%s with NULL net\n",
1032                  peer, libcfs_nid2str(nid));
1033
1034         /* must have kgn_net_rw_sem held for this...  */
1035         if (net->gnn_shutdown) {
1036                 /* shutdown has started already */
1037                 kgnilnd_net_decref(net);
1038                 LIBCFS_FREE(peer, sizeof(*peer));
1039                 return -ESHUTDOWN;
1040         }
1041
1042         peer->gnp_net = net;
1043
1044         atomic_inc(&kgnilnd_data.kgn_npeers);
1045
1046         *peerp = peer;
1047         return 0;
1048 }
1049
1050 void
1051 kgnilnd_destroy_peer(kgn_peer_t *peer)
1052 {
1053         CDEBUG(D_NET, "peer %s %p deleted\n",
1054                libcfs_nid2str(peer->gnp_nid), peer);
1055         LASSERTF(atomic_read(&peer->gnp_refcount) == 0,
1056                  "peer 0x%p->%s refs %d\n",
1057                  peer, libcfs_nid2str(peer->gnp_nid),
1058                  atomic_read(&peer->gnp_refcount));
1059         LASSERTF(atomic_read(&peer->gnp_dirty_eps) == 0,
1060                  "peer 0x%p->%s dirty eps %d\n",
1061                  peer, libcfs_nid2str(peer->gnp_nid),
1062                  atomic_read(&peer->gnp_dirty_eps));
1063         LASSERTF(peer->gnp_net != NULL, "peer %p (%s) with NULL net\n",
1064                  peer, libcfs_nid2str(peer->gnp_nid));
1065         LASSERTF(!kgnilnd_peer_active(peer),
1066                  "peer 0x%p->%s\n",
1067                 peer, libcfs_nid2str(peer->gnp_nid));
1068         LASSERTF(peer->gnp_connecting == GNILND_PEER_IDLE || peer->gnp_connecting == GNILND_PEER_KILL,
1069                  "peer 0x%p->%s, connecting %d\n",
1070                 peer, libcfs_nid2str(peer->gnp_nid), peer->gnp_connecting);
1071         LASSERTF(list_empty(&peer->gnp_conns),
1072                  "peer 0x%p->%s\n",
1073                 peer, libcfs_nid2str(peer->gnp_nid));
1074         LASSERTF(list_empty(&peer->gnp_tx_queue),
1075                  "peer 0x%p->%s\n",
1076                 peer, libcfs_nid2str(peer->gnp_nid));
1077         LASSERTF(list_empty(&peer->gnp_connd_list),
1078                  "peer 0x%p->%s\n",
1079                 peer, libcfs_nid2str(peer->gnp_nid));
1080
1081         /* NB a peer's connections keep a reference on their peer until
1082          * they are destroyed, so we can be assured that _all_ state to do
1083          * with this peer has been cleaned up when its refcount drops to
1084          * zero. */
1085
1086         atomic_dec(&kgnilnd_data.kgn_npeers);
1087         kgnilnd_net_decref(peer->gnp_net);
1088
1089         LIBCFS_FREE(peer, sizeof(*peer));
1090 }
1091
1092 /* the conn might not have made it all the way through to a connected
1093  * state - but we need to purgatory any conn that a remote peer might
1094  * have seen through a posted dgram as well */
1095 void
1096 kgnilnd_add_purgatory_locked(kgn_conn_t *conn, kgn_peer_t *peer)
1097 {
1098         kgn_mbox_info_t *mbox = NULL;
1099         ENTRY;
1100
1101         /* NB - the caller should own conn by removing him from the
1102          * scheduler thread when finishing the close */
1103
1104         LASSERTF(peer != NULL, "conn %p with NULL peer\n", conn);
1105
1106         /* If this is still true, need to add the calls to unlink back in and
1107          * figure out how to close the hole on loopback conns */
1108         LASSERTF(kgnilnd_peer_active(peer), "can't use inactive peer %s (%p)"
1109                 " we'll never recover the resources\n",
1110                 libcfs_nid2str(peer->gnp_nid), peer);
1111
1112         CDEBUG(D_NET, "conn %p peer %p dev %p\n", conn, peer,
1113                 conn->gnc_device);
1114
1115         LASSERTF(conn->gnc_in_purgatory == 0,
1116                 "Conn already in purgatory\n");
1117         conn->gnc_in_purgatory = 1;
1118
1119         mbox = &conn->gnc_fma_blk->gnm_mbox_info[conn->gnc_mbox_id];
1120         mbox->mbx_prev_purg_nid = peer->gnp_nid;
1121         mbox->mbx_add_purgatory = jiffies;
1122         kgnilnd_release_mbox(conn, 1);
1123
1124         LASSERTF(list_empty(&conn->gnc_mdd_list),
1125                 "conn 0x%p->%s with active purgatory hold MDD %d\n",
1126                 conn, libcfs_nid2str(peer->gnp_nid),
1127                 kgnilnd_count_list(&conn->gnc_mdd_list));
1128
1129         EXIT;
1130 }
1131
1132 /* Instead of detaching everything from purgatory here we just mark the conn as needing
1133  * detach, when the reaper checks the conn the next time it will detach it.
1134  * Calling function requires write_lock held on kgn_peer_conn_lock
1135  */
1136 void
1137 kgnilnd_mark_for_detach_purgatory_all_locked(kgn_peer_t *peer) {
1138         kgn_conn_t       *conn;
1139
1140         list_for_each_entry(conn, &peer->gnp_conns, gnc_list) {
1141                 if (conn->gnc_in_purgatory && !conn->gnc_needs_detach) {
1142                         conn->gnc_needs_detach = 1;
1143                         kgnilnd_admin_addref(kgnilnd_data.kgn_npending_detach);
1144                 }
1145         }
1146 }
1147
1148 /* Calling function needs a write_lock held on kgn_peer_conn_lock */
1149 void
1150 kgnilnd_detach_purgatory_locked(kgn_conn_t *conn, struct list_head *conn_list)
1151 {
1152         kgn_mbox_info_t *mbox = NULL;
1153
1154         /* if needed, add the conn purgatory data to the list passed in */
1155         if (conn->gnc_in_purgatory) {
1156                 CDEBUG(D_NET, "peer %p->%s purg_conn %p@%s mdd_list #tx %d\n",
1157                         conn->gnc_peer, libcfs_nid2str(conn->gnc_peer->gnp_nid),
1158                         conn, kgnilnd_conn_state2str(conn),
1159                         kgnilnd_count_list(&conn->gnc_mdd_list));
1160
1161                 mbox = &conn->gnc_fma_blk->gnm_mbox_info[conn->gnc_mbox_id];
1162                 mbox->mbx_detach_of_purgatory = jiffies;
1163
1164                 /* conn->gnc_list is the entry point on peer->gnp_conns, so detaching it
1165                  * here removes it from the list of 'valid' peer connections.
1166                  * We put the current conn onto a list of conns to call kgnilnd_release_purgatory_locked()
1167                  * and as such the caller of kgnilnd_detach_purgatory_locked() now owns that conn, since its not
1168                  * on the peer's conn_list anymore.
1169                  */
1170
1171                 list_del_init(&conn->gnc_list);
1172
1173                 /* NB - only unlinking if we set pending in del_peer_locked from admin or
1174                  * shutdown */
1175                 if (kgnilnd_peer_active(conn->gnc_peer) &&
1176                     conn->gnc_peer->gnp_pending_unlink &&
1177                     kgnilnd_can_unlink_peer_locked(conn->gnc_peer)) {
1178                         kgnilnd_unlink_peer_locked(conn->gnc_peer);
1179                 }
1180                 /* The reaper will not call detach unless the conn is fully through kgnilnd_complete_closed_conn.
1181                  * If the conn is not in a DONE state somehow we are attempting to detach even though
1182                  * the conn has not been fully cleaned up. If we detach while the conn is still closing
1183                  * we will end up with an orphaned connection that has valid ep_handle, that is not on a
1184                  * peer.
1185                  */
1186
1187                 LASSERTF(conn->gnc_state == GNILND_CONN_DONE, "Conn in invalid state  %p@%s \n",
1188                                 conn, kgnilnd_conn_state2str(conn));
1189
1190                 /* move from peer to the delayed release list */
1191                 list_add_tail(&conn->gnc_list, conn_list);
1192         }
1193 }
1194
1195 void
1196 kgnilnd_release_purgatory_list(struct list_head *conn_list)
1197 {
1198         kgn_device_t            *dev;
1199         kgn_conn_t              *conn, *connN;
1200         kgn_mdd_purgatory_t     *gmp, *gmpN;
1201
1202         list_for_each_entry_safe(conn, connN, conn_list, gnc_list) {
1203                 dev = conn->gnc_device;
1204
1205                 kgnilnd_release_mbox(conn, -1);
1206                 conn->gnc_in_purgatory = 0;
1207
1208                 list_del_init(&conn->gnc_list);
1209
1210                 /* gnc_needs_detach is set in kgnilnd_del_conn_or_peer. It is used to keep track
1211                  * of conns that have been marked for detach by kgnilnd_del_conn_or_peer.
1212                  * The function uses kgn_npending_detach to verify the conn has
1213                  * actually been detached.
1214                  */
1215
1216                 if (conn->gnc_needs_detach)
1217                         kgnilnd_admin_decref(kgnilnd_data.kgn_npending_detach);
1218
1219                 /* if this guy is really dead (we are doing release from reaper),
1220                  * make sure we tell LNet - if this is from other context,
1221                  * the checks in the function will prevent an errant
1222                  * notification */
1223                 kgnilnd_peer_notify(conn->gnc_peer, conn->gnc_error, 0);
1224
1225                 list_for_each_entry_safe(gmp, gmpN, &conn->gnc_mdd_list,
1226                                          gmp_list) {
1227                         CDEBUG(D_NET,
1228                                "dev %p releasing held mdd %#llx.%#llx\n",
1229                                conn->gnc_device, gmp->gmp_map_key.qword1,
1230                                gmp->gmp_map_key.qword2);
1231
1232                         atomic_dec(&dev->gnd_n_mdd_held);
1233                         kgnilnd_mem_mdd_release(conn->gnc_device->gnd_handle,
1234                                                 &gmp->gmp_map_key);
1235                         /* ignoring the return code - if kgni/ghal can't find it
1236                          * it must be released already */
1237
1238                         list_del_init(&gmp->gmp_list);
1239                         LIBCFS_FREE(gmp, sizeof(*gmp));
1240                 }
1241                 /* lose conn ref for purgatory */
1242                 kgnilnd_conn_decref(conn);
1243         }
1244 }
1245
1246 /* needs write_lock on kgnilnd_data.kgn_peer_conn_lock held */
1247 void
1248 kgnilnd_peer_increase_reconnect_locked(kgn_peer_t *peer)
1249 {
1250         int current_to;
1251
1252         current_to = peer->gnp_reconnect_interval;
1253
1254         /* we'll try to reconnect fast the first time, then back-off */
1255         if (current_to == 0) {
1256                 peer->gnp_reconnect_time = jiffies - 1;
1257                 current_to = *kgnilnd_tunables.kgn_min_reconnect_interval;
1258         } else {
1259                 peer->gnp_reconnect_time = jiffies + cfs_time_seconds(current_to);
1260                 /* add 50% of min timeout & retry */
1261                 current_to += *kgnilnd_tunables.kgn_min_reconnect_interval / 2;
1262         }
1263
1264         current_to = min(current_to,
1265                          *kgnilnd_tunables.kgn_max_reconnect_interval);
1266
1267         peer->gnp_reconnect_interval = current_to;
1268         CDEBUG(D_NET, "peer %s can reconnect at %lu interval %lu\n",
1269                libcfs_nid2str(peer->gnp_nid), peer->gnp_reconnect_time,
1270                peer->gnp_reconnect_interval);
1271 }
1272
1273 /* needs kgnilnd_data.kgn_peer_conn_lock held */
1274 kgn_peer_t *
1275 kgnilnd_find_peer_locked(lnet_nid_t nid)
1276 {
1277         struct list_head *peer_list = kgnilnd_nid2peerlist(nid);
1278         kgn_peer_t       *peer;
1279
1280         /* Chopping nid down to only NIDADDR using LNET_NIDADDR so we only
1281          * have a single peer per device instead of a peer per nid/net combo.
1282          */
1283
1284         list_for_each_entry(peer, peer_list, gnp_list) {
1285                 if (LNET_NIDADDR(nid) != LNET_NIDADDR(peer->gnp_nid))
1286                         continue;
1287
1288                 CDEBUG(D_NET, "got peer [%p] -> %s c %d (%d)\n",
1289                        peer, libcfs_nid2str(nid),
1290                        peer->gnp_connecting,
1291                        atomic_read(&peer->gnp_refcount));
1292                 return peer;
1293         }
1294         return NULL;
1295 }
1296
1297 /* need write_lock on kgn_peer_conn_lock */
1298 void
1299 kgnilnd_unlink_peer_locked(kgn_peer_t *peer)
1300 {
1301         LASSERTF(list_empty(&peer->gnp_conns),
1302                 "peer 0x%p->%s\n",
1303                  peer, libcfs_nid2str(peer->gnp_nid));
1304         LASSERTF(list_empty(&peer->gnp_tx_queue),
1305                 "peer 0x%p->%s\n",
1306                  peer, libcfs_nid2str(peer->gnp_nid));
1307         LASSERTF(kgnilnd_peer_active(peer),
1308                 "peer 0x%p->%s\n",
1309                  peer, libcfs_nid2str(peer->gnp_nid));
1310         CDEBUG(D_NET, "unlinking peer 0x%p->%s\n",
1311                 peer, libcfs_nid2str(peer->gnp_nid));
1312
1313         list_del_init(&peer->gnp_list);
1314         kgnilnd_data.kgn_peer_version++;
1315         kgnilnd_admin_decref(kgnilnd_data.kgn_npending_unlink);
1316         /* lose peerlist's ref */
1317         kgnilnd_peer_decref(peer);
1318 }
1319
1320 int
1321 kgnilnd_get_peer_info(int index,
1322                       kgn_peer_t **found_peer,
1323                       lnet_nid_t *id, __u32 *nic_addr,
1324                       int *refcount, int *connecting)
1325 {
1326         struct list_head  *ptmp;
1327         kgn_peer_t        *peer;
1328         int               i;
1329         int               rc = -ENOENT;
1330
1331         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
1332
1333         for (i = 0; i < *kgnilnd_tunables.kgn_peer_hash_size; i++) {
1334
1335                 list_for_each(ptmp, &kgnilnd_data.kgn_peers[i]) {
1336                         peer = list_entry(ptmp, kgn_peer_t, gnp_list);
1337
1338                         if (index-- > 0)
1339                                 continue;
1340
1341                         CDEBUG(D_NET, "found peer %p (%s) at index %d\n",
1342                                peer, libcfs_nid2str(peer->gnp_nid), index);
1343
1344                         *found_peer  = peer;
1345                         *id          = peer->gnp_nid;
1346                         *nic_addr    = peer->gnp_host_id;
1347                         *refcount    = atomic_read(&peer->gnp_refcount);
1348                         *connecting  = peer->gnp_connecting;
1349
1350                         rc = 0;
1351                         goto out;
1352                 }
1353         }
1354 out:
1355         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1356         if (rc)
1357                 CDEBUG(D_NET, "no gni peer at index %d\n", index);
1358         return rc;
1359 }
1360
1361 /* requires write_lock on kgn_peer_conn_lock held */
1362 void
1363 kgnilnd_add_peer_locked(lnet_nid_t nid, kgn_peer_t *new_stub_peer, kgn_peer_t **peerp)
1364 {
1365         kgn_peer_t        *peer, *peer2;
1366
1367         LASSERTF(new_stub_peer != NULL, "bad stub peer for nid %s\n",
1368                  libcfs_nid2str(nid));
1369
1370         peer2 = kgnilnd_find_peer_locked(nid);
1371         if (peer2 != NULL) {
1372                 /* A peer was created during the lock transition, so drop
1373                  * the new one we created */
1374                 kgnilnd_peer_decref(new_stub_peer);
1375                 peer = peer2;
1376         } else {
1377                 peer = new_stub_peer;
1378                 /* peer table takes existing ref on peer */
1379
1380                 LASSERTF(!kgnilnd_peer_active(peer),
1381                         "peer 0x%p->%s already in peer table\n",
1382                         peer, libcfs_nid2str(peer->gnp_nid));
1383                 list_add_tail(&peer->gnp_list,
1384                               kgnilnd_nid2peerlist(nid));
1385                 kgnilnd_data.kgn_peer_version++;
1386         }
1387
1388         LASSERTF(peer->gnp_net != NULL, "peer 0x%p->%s with NULL net\n",
1389                  peer, libcfs_nid2str(peer->gnp_nid));
1390         *peerp = peer;
1391 }
1392
1393 int
1394 kgnilnd_add_peer(kgn_net_t *net, lnet_nid_t nid, kgn_peer_t **peerp)
1395 {
1396         kgn_peer_t        *peer;
1397         int                rc;
1398         int                node_state;
1399         ENTRY;
1400
1401         if (nid == LNET_NID_ANY)
1402                 return -EINVAL;
1403
1404         node_state = kgnilnd_get_node_state(LNET_NIDADDR(nid));
1405
1406         /* NB - this will not block during normal operations -
1407          * the only writer of this is in the startup/shutdown path. */
1408         rc = down_read_trylock(&kgnilnd_data.kgn_net_rw_sem);
1409         if (!rc) {
1410                 rc = -ESHUTDOWN;
1411                 RETURN(rc);
1412         }
1413         rc = kgnilnd_create_peer_safe(&peer, nid, net, node_state);
1414         if (rc != 0) {
1415                 up_read(&kgnilnd_data.kgn_net_rw_sem);
1416                 RETURN(rc);
1417         }
1418
1419         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
1420         up_read(&kgnilnd_data.kgn_net_rw_sem);
1421
1422         kgnilnd_add_peer_locked(nid, peer, peerp);
1423
1424         CDEBUG(D_NET, "peer 0x%p->%s connecting %d\n",
1425                peerp, libcfs_nid2str((*peerp)->gnp_nid),
1426                (*peerp)->gnp_connecting);
1427
1428         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1429         RETURN(0);
1430 }
1431
1432 /* needs write_lock on kgn_peer_conn_lock */
1433 void
1434 kgnilnd_cancel_peer_connect_locked(kgn_peer_t *peer, struct list_head *zombies)
1435 {
1436         kgn_tx_t        *tx, *txn;
1437
1438         /* we do care about state of gnp_connecting - we could be between
1439          * reconnect attempts, so try to find the dgram and cancel the TX
1440          * anyways. If we are in the process of posting DONT do anything;
1441          * once it fails or succeeds we can nuke the connect attempt.
1442          * We have no idea where in kgnilnd_post_dgram we are so we cant
1443          * attempt to cancel until the function is done.
1444          */
1445
1446         /* make sure peer isn't in process of connecting or waiting for connect*/
1447         spin_lock(&peer->gnp_net->gnn_dev->gnd_connd_lock);
1448         if (!(list_empty(&peer->gnp_connd_list))) {
1449                 list_del_init(&peer->gnp_connd_list);
1450                 /* remove connd ref */
1451                 kgnilnd_peer_decref(peer);
1452         }
1453         spin_unlock(&peer->gnp_net->gnn_dev->gnd_connd_lock);
1454
1455         if (peer->gnp_connecting == GNILND_PEER_POSTING || peer->gnp_connecting == GNILND_PEER_NEEDS_DEATH) {
1456                 peer->gnp_connecting = GNILND_PEER_NEEDS_DEATH;
1457                 /* We are in process of posting right now the xchg set it up for us to
1458                  * cancel the connect so we are finished for now */
1459         } else {
1460                 /* no need for exchange we have the peer lock and its ready for us to nuke */
1461                 LASSERTF(peer->gnp_connecting != GNILND_PEER_POSTING,
1462                         "Peer in invalid state 0x%p->%s, connecting %d\n",
1463                         peer, libcfs_nid2str(peer->gnp_nid), peer->gnp_connecting);
1464                 peer->gnp_connecting = GNILND_PEER_IDLE;
1465                 set_mb(peer->gnp_last_dgram_errno, -ETIMEDOUT);
1466                 kgnilnd_find_and_cancel_dgram(peer->gnp_net->gnn_dev,
1467                                                       peer->gnp_nid);
1468         }
1469
1470         /* The least we can do is nuke the tx's no matter what.... */
1471         list_for_each_entry_safe(tx, txn, &peer->gnp_tx_queue, tx_list) {
1472                 kgnilnd_tx_del_state_locked(tx, peer, NULL,
1473                                            GNILND_TX_ALLOCD);
1474                 list_add_tail(&tx->tx_list, zombies);
1475         }
1476 }
1477
1478 /* needs write_lock on kgn_peer_conn_lock */
1479 void
1480 kgnilnd_del_peer_locked(kgn_peer_t *peer, int error)
1481 {
1482         /* this peer could be passive and only held for purgatory,
1483          * take a ref to ensure it doesn't disappear in this function */
1484         kgnilnd_peer_addref(peer);
1485
1486         CFS_RACE(CFS_FAIL_GNI_FIND_TARGET);
1487
1488         /* if purgatory release cleared it out, don't try again */
1489         if (kgnilnd_peer_active(peer)) {
1490                 /* always do this to allow kgnilnd_start_connect and
1491                  * kgnilnd_finish_connect to catch this before they
1492                  * wrap up their operations */
1493                 if (kgnilnd_can_unlink_peer_locked(peer)) {
1494                         /* already released purgatory, so only active
1495                          * conns hold it */
1496                         kgnilnd_unlink_peer_locked(peer);
1497                 } else {
1498                         kgnilnd_close_peer_conns_locked(peer, error);
1499                         /* peer unlinks itself when last conn is closed */
1500                 }
1501         }
1502
1503         /* we are done, release back to the wild */
1504         kgnilnd_peer_decref(peer);
1505 }
1506
1507 int
1508 kgnilnd_del_conn_or_peer(kgn_net_t *net, lnet_nid_t nid, int command,
1509                           int error)
1510 {
1511         LIST_HEAD               (souls);
1512         LIST_HEAD               (zombies);
1513         struct list_head        *ptmp, *pnxt;
1514         kgn_peer_t              *peer;
1515         int                     lo;
1516         int                     hi;
1517         int                     i;
1518         int                     rc = -ENOENT;
1519
1520         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
1521
1522         if (nid != LNET_NID_ANY)
1523                 lo = hi = kgnilnd_nid2peerlist(nid) - kgnilnd_data.kgn_peers;
1524         else {
1525                 lo = 0;
1526                 hi = *kgnilnd_tunables.kgn_peer_hash_size - 1;
1527                 /* wildcards always succeed */
1528                 rc = 0;
1529         }
1530
1531         for (i = lo; i <= hi; i++) {
1532                 list_for_each_safe(ptmp, pnxt, &kgnilnd_data.kgn_peers[i]) {
1533                         peer = list_entry(ptmp, kgn_peer_t, gnp_list);
1534
1535                         LASSERTF(peer->gnp_net != NULL,
1536                                 "peer %p (%s) with NULL net\n",
1537                                  peer, libcfs_nid2str(peer->gnp_nid));
1538
1539                         if (net != NULL && peer->gnp_net != net)
1540                                 continue;
1541
1542                         if (!(nid == LNET_NID_ANY || LNET_NIDADDR(peer->gnp_nid) == LNET_NIDADDR(nid)))
1543                                 continue;
1544
1545                         /* In both cases, we want to stop any in-flight
1546                          * connect attempts */
1547                         kgnilnd_cancel_peer_connect_locked(peer, &zombies);
1548
1549                         switch (command) {
1550                         case GNILND_DEL_CONN:
1551                                 kgnilnd_close_peer_conns_locked(peer, error);
1552                                 break;
1553                         case GNILND_DEL_PEER:
1554                                 peer->gnp_pending_unlink = 1;
1555                                 kgnilnd_admin_addref(kgnilnd_data.kgn_npending_unlink);
1556                                 kgnilnd_mark_for_detach_purgatory_all_locked(peer);
1557                                 kgnilnd_del_peer_locked(peer, error);
1558                                 break;
1559                         case GNILND_CLEAR_PURGATORY:
1560                                 /* Mark everything ready for detach reaper will cleanup
1561                                  * once we release the kgn_peer_conn_lock
1562                                  */
1563                                 kgnilnd_mark_for_detach_purgatory_all_locked(peer);
1564                                 peer->gnp_last_errno = -EISCONN;
1565                                 /* clear reconnect so he can reconnect soon */
1566                                 peer->gnp_reconnect_time = 0;
1567                                 peer->gnp_reconnect_interval = 0;
1568                                 break;
1569                         default:
1570                                 CERROR("bad command %d\n", command);
1571                                 LBUG();
1572                         }
1573                         /* we matched something */
1574                         rc = 0;
1575                 }
1576         }
1577
1578         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1579
1580         /* nuke peer TX */
1581         kgnilnd_txlist_done(&zombies, error);
1582
1583         /* This function does not return until the commands it initiated have completed,
1584          * since they have to work there way through the other threads. In the case of shutdown
1585          * threads are not woken up until after this call is initiated so we cannot wait, we just
1586          * need to return. The same applies for stack reset we shouldnt wait as the reset thread
1587          * handles closing.
1588          */
1589
1590         CFS_RACE(CFS_FAIL_GNI_RACE_RESET);
1591
1592         if (error == -ENOTRECOVERABLE || error == -ESHUTDOWN) {
1593                 return rc;
1594         }
1595
1596         wait_var_event_warning(&kgnilnd_data,
1597                                !atomic_read(&kgnilnd_data.kgn_npending_conns) &&
1598                                !atomic_read(&kgnilnd_data.kgn_npending_detach) &&
1599                                !atomic_read(&kgnilnd_data.kgn_npending_unlink),
1600                                "Waiting on %d peers %d closes %d detaches\n",
1601                                 atomic_read(&kgnilnd_data.kgn_npending_unlink),
1602                                 atomic_read(&kgnilnd_data.kgn_npending_conns),
1603                                 atomic_read(&kgnilnd_data.kgn_npending_detach));
1604
1605         return rc;
1606 }
1607
1608 kgn_conn_t *
1609 kgnilnd_get_conn_by_idx(int index)
1610 {
1611         kgn_peer_t        *peer;
1612         struct list_head  *ptmp;
1613         kgn_conn_t        *conn;
1614         struct list_head  *ctmp;
1615         int                i;
1616
1617
1618         for (i = 0; i < *kgnilnd_tunables.kgn_peer_hash_size; i++) {
1619                 read_lock(&kgnilnd_data.kgn_peer_conn_lock);
1620                 list_for_each(ptmp, &kgnilnd_data.kgn_peers[i]) {
1621
1622                         peer = list_entry(ptmp, kgn_peer_t, gnp_list);
1623
1624                         list_for_each(ctmp, &peer->gnp_conns) {
1625                                 conn = list_entry(ctmp, kgn_conn_t, gnc_list);
1626
1627                                 if (conn->gnc_state != GNILND_CONN_ESTABLISHED)
1628                                         continue;
1629
1630                                 if (index-- > 0)
1631                                         continue;
1632
1633                                 CDEBUG(D_NET, "++conn[%p] -> %s (%d)\n", conn,
1634                                        libcfs_nid2str(conn->gnc_peer->gnp_nid),
1635                                        atomic_read(&conn->gnc_refcount));
1636                                 kgnilnd_conn_addref(conn);
1637                                 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1638                                 return conn;
1639                         }
1640                 }
1641                 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1642         }
1643
1644         return NULL;
1645 }
1646
1647 int
1648 kgnilnd_get_conn_info(kgn_peer_t *peer,
1649                       int *device_id, __u64 *peerstamp,
1650                       int *tx_seq, int *rx_seq,
1651                       int *fmaq_len, int *nfma, int *nrdma)
1652 {
1653         kgn_conn_t        *conn;
1654         int               rc = 0;
1655
1656         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
1657
1658         conn = kgnilnd_find_conn_locked(peer);
1659         if (conn == NULL) {
1660                 rc = -ENOENT;
1661                 goto out;
1662         }
1663
1664         *device_id = conn->gnc_device->gnd_host_id;
1665         *peerstamp = conn->gnc_peerstamp;
1666         *tx_seq = atomic_read(&conn->gnc_tx_seq);
1667         *rx_seq = atomic_read(&conn->gnc_rx_seq);
1668         *fmaq_len = kgnilnd_count_list(&conn->gnc_fmaq);
1669         *nfma = atomic_read(&conn->gnc_nlive_fma);
1670         *nrdma = atomic_read(&conn->gnc_nlive_rdma);
1671 out:
1672         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1673         return rc;
1674 }
1675
1676 /* needs write_lock on kgn_peer_conn_lock */
1677 int
1678 kgnilnd_close_peer_conns_locked(kgn_peer_t *peer, int why)
1679 {
1680         kgn_conn_t         *conn;
1681         struct list_head   *ctmp, *cnxt;
1682         int                 count = 0;
1683
1684         list_for_each_safe(ctmp, cnxt, &peer->gnp_conns) {
1685                 conn = list_entry(ctmp, kgn_conn_t, gnc_list);
1686
1687                 if (conn->gnc_state != GNILND_CONN_ESTABLISHED)
1688                         continue;
1689
1690                 count++;
1691                 /* we mark gnc_needs closing and increment kgn_npending_conns so that
1692                  * kgnilnd_del_conn_or_peer can wait on the other threads closing
1693                  * and cleaning up the connection.
1694                  */
1695                 if (!conn->gnc_needs_closing) {
1696                         conn->gnc_needs_closing = 1;
1697                         kgnilnd_admin_addref(kgnilnd_data.kgn_npending_conns);
1698                 }
1699                 kgnilnd_close_conn_locked(conn, why);
1700         }
1701         return count;
1702 }
1703
1704 int
1705 kgnilnd_report_node_state(lnet_nid_t nid, int down)
1706 {
1707         int         rc;
1708         kgn_peer_t  *peer, *new_peer;
1709         LIST_HEAD(zombies);
1710
1711         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
1712         peer = kgnilnd_find_peer_locked(nid);
1713
1714         if (peer == NULL) {
1715                 int       i;
1716                 int       found_net = 0;
1717                 kgn_net_t *net;
1718
1719                 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1720
1721                 /* Don't add a peer for node up events */
1722                 if (down == GNILND_PEER_UP)
1723                         return 0;
1724
1725                 /* find any valid net - we don't care which one... */
1726                 down_read(&kgnilnd_data.kgn_net_rw_sem);
1727                 for (i = 0; i < *kgnilnd_tunables.kgn_net_hash_size; i++) {
1728                         list_for_each_entry(net, &kgnilnd_data.kgn_nets[i],
1729                                             gnn_list) {
1730                                 found_net = 1;
1731                                 break;
1732                         }
1733
1734                         if (found_net) {
1735                                 break;
1736                         }
1737                 }
1738                 up_read(&kgnilnd_data.kgn_net_rw_sem);
1739
1740                 if (!found_net) {
1741                         CNETERR("Could not find a net for nid %lld\n", nid);
1742                         return 1;
1743                 }
1744
1745                 /* The nid passed in does not yet contain the net portion.
1746                  * Let's build it up now
1747                  */
1748                 nid = LNET_MKNID(LNET_NIDNET(net->gnn_ni->ni_nid), nid);
1749                 rc = kgnilnd_add_peer(net, nid, &new_peer);
1750
1751                 if (rc) {
1752                         CNETERR("Could not add peer for nid %lld, rc %d\n",
1753                                 nid, rc);
1754                         return 1;
1755                 }
1756
1757                 write_lock(&kgnilnd_data.kgn_peer_conn_lock);
1758                 peer = kgnilnd_find_peer_locked(nid);
1759
1760                 if (peer == NULL) {
1761                         CNETERR("Could not find peer for nid %lld\n", nid);
1762                         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1763                         return 1;
1764                 }
1765         }
1766
1767         peer->gnp_state = down;
1768
1769         if (down == GNILND_PEER_DOWN) {
1770                 kgn_conn_t *conn;
1771
1772                 peer->gnp_down_event_time = jiffies;
1773                 kgnilnd_cancel_peer_connect_locked(peer, &zombies);
1774                 conn = kgnilnd_find_conn_locked(peer);
1775
1776                 if (conn != NULL) {
1777                         kgnilnd_close_conn_locked(conn, -ENETRESET);
1778                 }
1779         } else {
1780                 peer->gnp_up_event_time = jiffies;
1781         }
1782
1783         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1784
1785         if (down == GNILND_PEER_DOWN) {
1786                 /* using ENETRESET so we don't get messages from
1787                  * kgnilnd_tx_done
1788                  */
1789                 kgnilnd_txlist_done(&zombies, -ENETRESET);
1790                 kgnilnd_peer_notify(peer, -ECONNRESET, 0);
1791                 LCONSOLE_INFO("Received down event for nid %d\n",
1792                               LNET_NIDADDR(nid));
1793         }
1794
1795         return 0;
1796 }
1797
1798 int
1799 kgnilnd_ctl(struct lnet_ni *ni, unsigned int cmd, void *arg)
1800 {
1801         struct libcfs_ioctl_data *data = arg;
1802         kgn_net_t                *net = ni->ni_data;
1803         int                       rc = -EINVAL;
1804
1805         LASSERT(ni == net->gnn_ni);
1806
1807         switch (cmd) {
1808         case IOC_LIBCFS_GET_PEER: {
1809                 lnet_nid_t   nid = 0;
1810                 kgn_peer_t  *peer = NULL;
1811                 __u32 nic_addr = 0;
1812                 __u64 peerstamp = 0;
1813                 int peer_refcount = 0, peer_connecting = 0;
1814                 int device_id = 0;
1815                 int tx_seq = 0, rx_seq = 0;
1816                 int fmaq_len = 0, nfma = 0, nrdma = 0;
1817
1818                 rc = kgnilnd_get_peer_info(data->ioc_count, &peer,
1819                                            &nid, &nic_addr, &peer_refcount,
1820                                            &peer_connecting);
1821                 if (rc)
1822                         break;
1823
1824                 /* Barf */
1825                 /* LNET_MKNID is used to mask from lnet the multiplexing/demultiplexing of connections and peers
1826                  * LNET assumes a conn and peer per net, the LNET_MKNID/LNET_NIDADDR allows us to let Lnet see what it
1827                  * wants to see instead of the underlying network that is being used to send the data
1828                  */
1829                 data->ioc_nid    = LNET_MKNID(LNET_NIDNET(ni->ni_nid), LNET_NIDADDR(nid));
1830                 data->ioc_flags  = peer_connecting;
1831                 data->ioc_count  = peer_refcount;
1832
1833                 rc = kgnilnd_get_conn_info(peer, &device_id, &peerstamp,
1834                                            &tx_seq, &rx_seq, &fmaq_len,
1835                                            &nfma, &nrdma);
1836
1837                 /* This is allowable - a persistent peer could not
1838                  * have a connection */
1839                 if (rc) {
1840                         /* flag to indicate we are not connected -
1841                          * need to print as such */
1842                         data->ioc_flags |= (1<<16);
1843                         rc = 0;
1844                 } else {
1845                         /* still barf */
1846                         data->ioc_net = device_id;
1847                         data->ioc_u64[0] = peerstamp;
1848                         data->ioc_u32[0] = fmaq_len;
1849                         data->ioc_u32[1] = nfma;
1850                         data->ioc_u32[2] = tx_seq;
1851                         data->ioc_u32[3] = rx_seq;
1852                         data->ioc_u32[4] = nrdma;
1853                 }
1854                 break;
1855         }
1856         case IOC_LIBCFS_ADD_PEER: {
1857                 /* just dummy value to allow using common interface */
1858                 kgn_peer_t      *peer;
1859                 rc = kgnilnd_add_peer(net, data->ioc_nid, &peer);
1860                 break;
1861         }
1862         case IOC_LIBCFS_DEL_PEER: {
1863                 /* NULL is passed in so it affects all peers in existence without regard to network
1864                  * as the peer may not exist on the network LNET believes it to be on.
1865                  */
1866                 rc = kgnilnd_del_conn_or_peer(NULL, data->ioc_nid,
1867                                               GNILND_DEL_PEER, -EUCLEAN);
1868                 break;
1869         }
1870         case IOC_LIBCFS_GET_CONN: {
1871                 kgn_conn_t *conn = kgnilnd_get_conn_by_idx(data->ioc_count);
1872
1873                 if (conn == NULL)
1874                         rc = -ENOENT;
1875                 else {
1876                         rc = 0;
1877                         /* LNET_MKNID is used to build the correct address based on what LNET wants to see instead of
1878                          * the generic connection that is used to send the data
1879                          */
1880                         data->ioc_nid    = LNET_MKNID(LNET_NIDNET(ni->ni_nid), LNET_NIDADDR(conn->gnc_peer->gnp_nid));
1881                         data->ioc_u32[0] = conn->gnc_device->gnd_id;
1882                         kgnilnd_conn_decref(conn);
1883                 }
1884                 break;
1885         }
1886         case IOC_LIBCFS_CLOSE_CONNECTION: {
1887                 /* use error = -ENETRESET to indicate it was lctl disconnect */
1888                 /* NULL is passed in so it affects all the nets as the connection is virtual
1889                  * and may not exist on the network LNET believes it to be on.
1890                  */
1891                 rc = kgnilnd_del_conn_or_peer(NULL, data->ioc_nid,
1892                                               GNILND_DEL_CONN, -ENETRESET);
1893                 break;
1894         }
1895         case IOC_LIBCFS_PUSH_CONNECTION: {
1896                 /* we use this to flush purgatory */
1897                 rc = kgnilnd_del_conn_or_peer(NULL, data->ioc_nid,
1898                                               GNILND_CLEAR_PURGATORY, -EUCLEAN);
1899                 break;
1900         }
1901         case IOC_LIBCFS_REGISTER_MYNID: {
1902                 /* Ignore if this is a noop */
1903                 if (data->ioc_nid == ni->ni_nid) {
1904                         rc = 0;
1905                 } else {
1906                         CERROR("obsolete IOC_LIBCFS_REGISTER_MYNID: %s(%s)\n",
1907                                libcfs_nid2str(data->ioc_nid),
1908                                libcfs_nid2str(ni->ni_nid));
1909                         rc = -EINVAL;
1910                 }
1911                 break;
1912         }
1913         }
1914
1915         return rc;
1916 }
1917
1918 int
1919 kgnilnd_dev_init(kgn_device_t *dev)
1920 {
1921         gni_return_t      rrc;
1922         int               rc = 0;
1923         unsigned int      cq_size;
1924         ENTRY;
1925
1926         /* size of these CQs should be able to accommodate the outgoing
1927          * RDMA and SMSG transactions.  Since we really don't know what we
1928          * really need here, we'll take credits * 2 * 3 to allow a bunch.
1929          * We need to dig into this more with the performance work. */
1930         cq_size = *kgnilnd_tunables.kgn_credits * 2 * 3;
1931
1932         rrc = kgnilnd_cdm_create(dev->gnd_id, *kgnilnd_tunables.kgn_ptag,
1933                                  *kgnilnd_tunables.kgn_pkey, 0,
1934                                  &dev->gnd_domain);
1935         if (rrc != GNI_RC_SUCCESS) {
1936                 CERROR("Can't create CDM %d (%d)\n", dev->gnd_id, rrc);
1937                 GOTO(failed, rc = -ENODEV);
1938         }
1939
1940         rrc = kgnilnd_cdm_attach(dev->gnd_domain, dev->gnd_id,
1941                                  &dev->gnd_host_id, &dev->gnd_handle);
1942         if (rrc != GNI_RC_SUCCESS) {
1943                 CERROR("Can't attach CDM to device %d (%d)\n",
1944                         dev->gnd_id, rrc);
1945                 GOTO(failed, rc = -ENODEV);
1946         }
1947
1948         /* a bit gross, but not much we can do - Aries Sim doesn't have
1949          * hardcoded NIC/NID that we can use */
1950         rc = kgnilnd_setup_nic_translation(dev->gnd_host_id);
1951         if (rc != 0)
1952                 GOTO(failed, rc = -ENODEV);
1953
1954         /* only dev 0 gets the errors - no need to reset the stack twice
1955          * - this works because we have a single PTAG, if we had more
1956          * then we'd need to have multiple handlers */
1957         if (dev->gnd_id == 0) {
1958                 rrc = kgnilnd_subscribe_errors(dev->gnd_handle,
1959                                                 GNI_ERRMASK_CRITICAL |
1960                                                 GNI_ERRMASK_UNKNOWN_TRANSACTION,
1961                                               0, NULL, kgnilnd_critical_error,
1962                                               &dev->gnd_err_handle);
1963                 if (rrc != GNI_RC_SUCCESS) {
1964                         CERROR("Can't subscribe for errors on device %d: rc %d\n",
1965                                 dev->gnd_id, rrc);
1966                         GOTO(failed, rc = -ENODEV);
1967                 }
1968
1969                 rc = kgnilnd_set_quiesce_callback(dev->gnd_handle,
1970                                                   kgnilnd_quiesce_end_callback);
1971                 if (rc != GNI_RC_SUCCESS) {
1972                         CERROR("Can't subscribe for quiesce callback on device %d: rc %d\n",
1973                                 dev->gnd_id, rrc);
1974                         GOTO(failed, rc = -ENODEV);
1975                 }
1976         }
1977
1978         rc = kgnilnd_nicaddr_to_nid(dev->gnd_host_id, &dev->gnd_nid);
1979         if (rc < 0) {
1980                 /* log messages during startup */
1981                 if (kgnilnd_data.kgn_init < GNILND_INIT_ALL) {
1982                         CERROR("couldn't translate host_id 0x%x to nid. rc %d\n",
1983                                 dev->gnd_host_id, rc);
1984                 }
1985                 GOTO(failed, rc = -ESRCH);
1986         }
1987         CDEBUG(D_NET, "NIC %x -> NID %d\n", dev->gnd_host_id, dev->gnd_nid);
1988
1989         rrc = kgnilnd_cq_create(dev->gnd_handle, *kgnilnd_tunables.kgn_credits,
1990                                 0, kgnilnd_device_callback,
1991                                 dev->gnd_id, &dev->gnd_snd_rdma_cqh);
1992         if (rrc != GNI_RC_SUCCESS) {
1993                 CERROR("Can't create rdma send cq size %u for device "
1994                        "%d (%d)\n", cq_size, dev->gnd_id, rrc);
1995                 GOTO(failed, rc = -EINVAL);
1996         }
1997
1998         rrc = kgnilnd_cq_create(dev->gnd_handle, cq_size,
1999                         0, kgnilnd_device_callback, dev->gnd_id,
2000                         &dev->gnd_snd_fma_cqh);
2001         if (rrc != GNI_RC_SUCCESS) {
2002                 CERROR("Can't create fma send cq size %u for device %d (%d)\n",
2003                        cq_size, dev->gnd_id, rrc);
2004                 GOTO(failed, rc = -EINVAL);
2005         }
2006
2007         /* This one we size differently - overflows are possible and it needs to be
2008          * sized based on machine size */
2009         rrc = kgnilnd_cq_create(dev->gnd_handle,
2010                         *kgnilnd_tunables.kgn_fma_cq_size,
2011                         0, kgnilnd_device_callback, dev->gnd_id,
2012                         &dev->gnd_rcv_fma_cqh);
2013         if (rrc != GNI_RC_SUCCESS) {
2014                 CERROR("Can't create fma cq size %d for device %d (%d)\n",
2015                        *kgnilnd_tunables.kgn_fma_cq_size, dev->gnd_id, rrc);
2016                 GOTO(failed, rc = -EINVAL);
2017         }
2018
2019         rrc = kgnilnd_register_smdd_buf(dev);
2020         if (rrc != GNI_RC_SUCCESS) {
2021                 GOTO(failed, rc = -EINVAL);
2022         }
2023
2024         RETURN(0);
2025
2026 failed:
2027         kgnilnd_dev_fini(dev);
2028         RETURN(rc);
2029 }
2030
2031 void
2032 kgnilnd_dev_fini(kgn_device_t *dev)
2033 {
2034         gni_return_t rrc;
2035         ENTRY;
2036
2037         /* At quiesce or rest time, need to loop through and clear gnd_ready_conns ?*/
2038         LASSERTF(list_empty(&dev->gnd_ready_conns) &&
2039                  list_empty(&dev->gnd_map_tx) &&
2040                  list_empty(&dev->gnd_rdmaq) &&
2041                  list_empty(&dev->gnd_delay_conns),
2042                  "dev 0x%p ready_conns %d@0x%p delay_conns %d@0x%p" 
2043                  "map_tx %d@0x%p rdmaq %d@0x%p\n",
2044                  dev, kgnilnd_count_list(&dev->gnd_ready_conns), &dev->gnd_ready_conns,
2045                  kgnilnd_count_list(&dev->gnd_delay_conns), &dev->gnd_delay_conns,
2046                  kgnilnd_count_list(&dev->gnd_map_tx), &dev->gnd_map_tx,
2047                  kgnilnd_count_list(&dev->gnd_rdmaq), &dev->gnd_rdmaq);
2048
2049         /* These should follow from tearing down all connections */
2050         LASSERTF(dev->gnd_map_nphys == 0 && dev->gnd_map_physnop == 0,
2051                 "%d physical mappings of %d pages still mapped\n",
2052                  dev->gnd_map_nphys, dev->gnd_map_physnop);
2053
2054         LASSERTF(dev->gnd_map_nvirt == 0 && dev->gnd_map_virtnob == 0,
2055                 "%d virtual mappings of %llu bytes still mapped\n",
2056                  dev->gnd_map_nvirt, dev->gnd_map_virtnob);
2057
2058         LASSERTF(atomic_read(&dev->gnd_n_mdd) == 0 &&
2059                  atomic_read(&dev->gnd_n_mdd_held) == 0 &&
2060                  atomic64_read(&dev->gnd_nbytes_map) == 0,
2061                 "%d SMSG mappings of %ld bytes still mapped or held %d\n",
2062                  atomic_read(&dev->gnd_n_mdd),
2063                  atomic64_read(&dev->gnd_nbytes_map), atomic_read(&dev->gnd_n_mdd_held));
2064
2065         LASSERT(list_empty(&dev->gnd_map_list));
2066
2067         /* What other assertions needed to ensure all connections torn down ? */
2068
2069         /* check all counters == 0 (EP, MDD, etc) */
2070
2071         /* if we are resetting due to quiese (stack reset), don't check
2072          * thread states */
2073         LASSERTF(kgnilnd_data.kgn_quiesce_trigger ||
2074                 atomic_read(&kgnilnd_data.kgn_nthreads) == 0,
2075                 "tried to shutdown with threads active\n");
2076
2077         if (dev->gnd_smdd_hold_buf) {
2078                 rrc = kgnilnd_deregister_smdd_buf(dev);
2079                 LASSERTF(rrc == GNI_RC_SUCCESS,
2080                         "bad rc from deregistion of sMDD buffer: %d\n", rrc);
2081                 dev->gnd_smdd_hold_buf = NULL;
2082         }
2083
2084         if (dev->gnd_rcv_fma_cqh) {
2085                 rrc = kgnilnd_cq_destroy(dev->gnd_rcv_fma_cqh);
2086                 LASSERTF(rrc == GNI_RC_SUCCESS,
2087                         "bad rc from gni_cq_destroy on rcv_fma_cqh: %d\n", rrc);
2088                 dev->gnd_rcv_fma_cqh = NULL;
2089         }
2090
2091         if (dev->gnd_snd_rdma_cqh) {
2092                 rrc = kgnilnd_cq_destroy(dev->gnd_snd_rdma_cqh);
2093                 LASSERTF(rrc == GNI_RC_SUCCESS,
2094                         "bad rc from gni_cq_destroy on send_rdma_cqh: %d\n", rrc);
2095                 dev->gnd_snd_rdma_cqh = NULL;
2096         }
2097
2098         if (dev->gnd_snd_fma_cqh) {
2099                 rrc = kgnilnd_cq_destroy(dev->gnd_snd_fma_cqh);
2100                 LASSERTF(rrc == GNI_RC_SUCCESS,
2101                         "bad rc from gni_cq_destroy on snd_fma_cqh: %d\n", rrc);
2102                 dev->gnd_snd_fma_cqh = NULL;
2103         }
2104
2105         if (dev->gnd_err_handle) {
2106                 rrc = kgnilnd_release_errors(dev->gnd_err_handle);
2107                 LASSERTF(rrc == GNI_RC_SUCCESS,
2108                         "bad rc from gni_release_errors: %d\n", rrc);
2109                 dev->gnd_err_handle = NULL;
2110         }
2111
2112         if (dev->gnd_domain) {
2113                 rrc = kgnilnd_cdm_destroy(dev->gnd_domain);
2114                 LASSERTF(rrc == GNI_RC_SUCCESS,
2115                         "bad rc from gni_cdm_destroy: %d\n", rrc);
2116                 dev->gnd_domain = NULL;
2117         }
2118
2119         EXIT;
2120 }
2121
2122 int kgnilnd_base_startup(void)
2123 {
2124         struct timeval       tv;
2125         int                  pkmem = atomic_read(&libcfs_kmemory);
2126         int                  rc;
2127         int                  i;
2128         kgn_device_t        *dev;
2129         struct task_struct  *thrd;
2130
2131 #if defined(CONFIG_CRAY_XT) && !defined(CONFIG_CRAY_COMPUTE)
2132         /* limit how much memory can be allocated for fma blocks in
2133          * instances where many nodes need to reconnects at the same time */
2134         struct sysinfo si;
2135         si_meminfo(&si);
2136         kgnilnd_data.free_pages_limit = si.totalram/4;
2137 #endif
2138
2139         ENTRY;
2140
2141         LASSERTF(kgnilnd_data.kgn_init == GNILND_INIT_NOTHING,
2142                 "init %d\n", kgnilnd_data.kgn_init);
2143
2144         /* zero pointers, flags etc */
2145         memset(&kgnilnd_data, 0, sizeof(kgnilnd_data));
2146         kgnilnd_check_kgni_version();
2147
2148         /* CAVEAT EMPTOR: Every 'Fma' message includes the sender's NID and
2149          * a unique (for all time) connstamp so we can uniquely identify
2150          * the sender.  The connstamp is an incrementing counter
2151          * initialised with seconds + microseconds at startup time.  So we
2152          * rely on NOT creating connections more frequently on average than
2153          * 1MHz to ensure we don't use old connstamps when we reboot. */
2154         do_gettimeofday(&tv);
2155         kgnilnd_data.kgn_connstamp =
2156                  kgnilnd_data.kgn_peerstamp =
2157                         (((__u64)tv.tv_sec) * 1000000) + tv.tv_usec;
2158
2159         init_rwsem(&kgnilnd_data.kgn_net_rw_sem);
2160
2161         for (i = 0; i < GNILND_MAXDEVS; i++) {
2162                 kgn_device_t  *dev = &kgnilnd_data.kgn_devices[i];
2163
2164                 dev->gnd_id = i;
2165                 INIT_LIST_HEAD(&dev->gnd_ready_conns);
2166                 INIT_LIST_HEAD(&dev->gnd_delay_conns);
2167                 INIT_LIST_HEAD(&dev->gnd_map_tx);
2168                 INIT_LIST_HEAD(&dev->gnd_fma_buffs);
2169                 mutex_init(&dev->gnd_cq_mutex);
2170                 mutex_init(&dev->gnd_fmablk_mutex);
2171                 spin_lock_init(&dev->gnd_fmablk_lock);
2172                 init_waitqueue_head(&dev->gnd_waitq);
2173                 init_waitqueue_head(&dev->gnd_dgram_waitq);
2174                 init_waitqueue_head(&dev->gnd_dgping_waitq);
2175                 spin_lock_init(&dev->gnd_lock);
2176                 INIT_LIST_HEAD(&dev->gnd_map_list);
2177                 spin_lock_init(&dev->gnd_map_lock);
2178                 atomic_set(&dev->gnd_nfmablk, 0);
2179                 atomic_set(&dev->gnd_fmablk_vers, 1);
2180                 atomic_set(&dev->gnd_neps, 0);
2181                 atomic_set(&dev->gnd_canceled_dgrams, 0);
2182                 INIT_LIST_HEAD(&dev->gnd_connd_peers);
2183                 spin_lock_init(&dev->gnd_connd_lock);
2184                 spin_lock_init(&dev->gnd_dgram_lock);
2185                 spin_lock_init(&dev->gnd_rdmaq_lock);
2186                 INIT_LIST_HEAD(&dev->gnd_rdmaq);
2187                 init_rwsem(&dev->gnd_conn_sem);
2188
2189                 /* alloc & setup nid based dgram table */
2190                 CFS_ALLOC_PTR_ARRAY(dev->gnd_dgrams,
2191                                     *kgnilnd_tunables.kgn_peer_hash_size);
2192
2193                 if (dev->gnd_dgrams == NULL)
2194                         GOTO(failed, rc = -ENOMEM);
2195
2196                 for (i = 0; i < *kgnilnd_tunables.kgn_peer_hash_size; i++) {
2197                         INIT_LIST_HEAD(&dev->gnd_dgrams[i]);
2198                 }
2199                 atomic_set(&dev->gnd_ndgrams, 0);
2200                 atomic_set(&dev->gnd_nwcdgrams, 0);
2201                 /* setup timer for RDMAQ processing */
2202                 setup_timer(&dev->gnd_rdmaq_timer, kgnilnd_schedule_device_timer,
2203                             (unsigned long)dev);
2204
2205                 /* setup timer for mapping processing */
2206                 setup_timer(&dev->gnd_map_timer, kgnilnd_schedule_device_timer,
2207                             (unsigned long)dev);
2208
2209         }
2210
2211         /* CQID 0 isn't allowed, set to MAX_MSG_ID - 1 to check for conflicts early */
2212         kgnilnd_data.kgn_next_cqid = GNILND_MAX_MSG_ID - 1;
2213         kgnilnd_data.kgn_new_min_timeout = *kgnilnd_tunables.kgn_timeout;
2214         init_waitqueue_head(&kgnilnd_data.kgn_reaper_waitq);
2215         init_waitqueue_head(&kgnilnd_data.kgn_ruhroh_waitq);
2216         spin_lock_init(&kgnilnd_data.kgn_reaper_lock);
2217
2218         mutex_init(&kgnilnd_data.kgn_quiesce_mutex);
2219         atomic_set(&kgnilnd_data.kgn_nquiesce, 0);
2220         atomic_set(&kgnilnd_data.kgn_npending_conns, 0);
2221         atomic_set(&kgnilnd_data.kgn_npending_unlink, 0);
2222         atomic_set(&kgnilnd_data.kgn_npending_detach, 0);
2223         atomic_set(&kgnilnd_data.kgn_rev_offset, 0);
2224         atomic_set(&kgnilnd_data.kgn_rev_length, 0);
2225         atomic_set(&kgnilnd_data.kgn_rev_copy_buff, 0);
2226
2227         /* OK to call kgnilnd_api_shutdown() to cleanup now */
2228         kgnilnd_data.kgn_init = GNILND_INIT_DATA;
2229         if (!try_module_get(THIS_MODULE))
2230                 GOTO(failed, rc = -ENOENT);
2231
2232         rwlock_init(&kgnilnd_data.kgn_peer_conn_lock);
2233
2234         CFS_ALLOC_PTR_ARRAY(kgnilnd_data.kgn_peers,
2235                             *kgnilnd_tunables.kgn_peer_hash_size);
2236
2237         if (kgnilnd_data.kgn_peers == NULL)
2238                 GOTO(failed, rc = -ENOMEM);
2239
2240         for (i = 0; i < *kgnilnd_tunables.kgn_peer_hash_size; i++) {
2241                 INIT_LIST_HEAD(&kgnilnd_data.kgn_peers[i]);
2242         }
2243
2244         CFS_ALLOC_PTR_ARRAY(kgnilnd_data.kgn_conns,
2245                             *kgnilnd_tunables.kgn_peer_hash_size);
2246
2247         if (kgnilnd_data.kgn_conns == NULL)
2248                 GOTO(failed, rc = -ENOMEM);
2249
2250         for (i = 0; i < *kgnilnd_tunables.kgn_peer_hash_size; i++) {
2251                 INIT_LIST_HEAD(&kgnilnd_data.kgn_conns[i]);
2252         }
2253
2254         CFS_ALLOC_PTR_ARRAY(kgnilnd_data.kgn_nets,
2255                             *kgnilnd_tunables.kgn_net_hash_size);
2256
2257         if (kgnilnd_data.kgn_nets == NULL)
2258                 GOTO(failed, rc = -ENOMEM);
2259
2260         for (i = 0; i < *kgnilnd_tunables.kgn_net_hash_size; i++) {
2261                 INIT_LIST_HEAD(&kgnilnd_data.kgn_nets[i]);
2262         }
2263
2264         kgnilnd_data.kgn_mbox_cache =
2265                 kmem_cache_create("kgn_mbox_block", GNILND_MBOX_SIZE, 0,
2266                                   SLAB_HWCACHE_ALIGN, NULL);
2267         if (kgnilnd_data.kgn_mbox_cache == NULL) {
2268                 CERROR("Can't create slab for physical mbox blocks\n");
2269                 GOTO(failed, rc = -ENOMEM);
2270         }
2271
2272         kgnilnd_data.kgn_rx_cache =
2273                 kmem_cache_create("kgn_rx_t", sizeof(kgn_rx_t), 0, 0, NULL);
2274         if (kgnilnd_data.kgn_rx_cache == NULL) {
2275                 CERROR("Can't create slab for kgn_rx_t descriptors\n");
2276                 GOTO(failed, rc = -ENOMEM);
2277         }
2278
2279         kgnilnd_data.kgn_tx_cache =
2280                 kmem_cache_create("kgn_tx_t", sizeof(kgn_tx_t), 0, 0, NULL);
2281         if (kgnilnd_data.kgn_tx_cache == NULL) {
2282                 CERROR("Can't create slab for kgn_tx_t\n");
2283                 GOTO(failed, rc = -ENOMEM);
2284         }
2285
2286         kgnilnd_data.kgn_tx_phys_cache =
2287                 kmem_cache_create("kgn_tx_phys",
2288                                    LNET_MAX_IOV * sizeof(gni_mem_segment_t),
2289                                    0, 0, NULL);
2290         if (kgnilnd_data.kgn_tx_phys_cache == NULL) {
2291                 CERROR("Can't create slab for kgn_tx_phys\n");
2292                 GOTO(failed, rc = -ENOMEM);
2293         }
2294
2295         kgnilnd_data.kgn_dgram_cache =
2296                 kmem_cache_create("kgn_dgram_t", sizeof(kgn_dgram_t), 0, 0, NULL);
2297         if (kgnilnd_data.kgn_dgram_cache == NULL) {
2298                 CERROR("Can't create slab for outgoing datagrams\n");
2299                 GOTO(failed, rc = -ENOMEM);
2300         }
2301
2302         /* allocate a MAX_IOV array of page pointers for each cpu */
2303         kgnilnd_data.kgn_cksum_map_pages = kmalloc(num_possible_cpus() * sizeof (struct page *),
2304                                                    GFP_KERNEL);
2305         if (kgnilnd_data.kgn_cksum_map_pages == NULL) {
2306                 CERROR("Can't allocate vmap cksum pages\n");
2307                 GOTO(failed, rc = -ENOMEM);
2308         }
2309         kgnilnd_data.kgn_cksum_npages = num_possible_cpus();
2310         memset(kgnilnd_data.kgn_cksum_map_pages, 0,
2311                 kgnilnd_data.kgn_cksum_npages * sizeof (struct page *));
2312
2313         for (i = 0; i < kgnilnd_data.kgn_cksum_npages; i++) {
2314                 kgnilnd_data.kgn_cksum_map_pages[i] = kmalloc(LNET_MAX_IOV * sizeof (struct page *),
2315                                                               GFP_KERNEL);
2316                 if (kgnilnd_data.kgn_cksum_map_pages[i] == NULL) {
2317                         CERROR("Can't allocate vmap cksum pages for cpu %d\n", i);
2318                         GOTO(failed, rc = -ENOMEM);
2319                 }
2320         }
2321
2322         LASSERT(kgnilnd_data.kgn_ndevs == 0);
2323
2324         /* Use all available GNI devices */
2325         for (i = 0; i < GNILND_MAXDEVS; i++) {
2326                 dev = &kgnilnd_data.kgn_devices[kgnilnd_data.kgn_ndevs];
2327
2328                 rc = kgnilnd_dev_init(dev);
2329                 if (rc == 0) {
2330                         /* Increment here so base_shutdown cleans it up */
2331                         kgnilnd_data.kgn_ndevs++;
2332
2333                         rc = kgnilnd_allocate_phys_fmablk(dev);
2334                         if (rc)
2335                                 GOTO(failed, rc);
2336                 }
2337         }
2338
2339         if (kgnilnd_data.kgn_ndevs == 0) {
2340                 CERROR("Can't initialise any GNI devices\n");
2341                 GOTO(failed, rc = -ENODEV);
2342         }
2343
2344         rc = kgnilnd_thread_start(kgnilnd_reaper, NULL, "kgnilnd_rpr", 0);
2345         if (rc != 0) {
2346                 CERROR("Can't spawn gnilnd reaper: %d\n", rc);
2347                 GOTO(failed, rc);
2348         }
2349
2350         rc = kgnilnd_start_rca_thread();
2351         if (rc != 0) {
2352                 CERROR("Can't spawn gnilnd rca: %d\n", rc);
2353                 GOTO(failed, rc);
2354         }
2355
2356         /*
2357          * Start ruhroh thread.  We can't use kgnilnd_thread_start() because
2358          * we don't want this thread included in kgnilnd_data.kgn_nthreads
2359          * count.  This thread controls quiesce, so it mustn't
2360          * quiesce itself.
2361          */
2362         thrd = kthread_run(kgnilnd_ruhroh_thread, NULL, "%s_%02d", "kgnilnd_rr", 0);
2363         if (IS_ERR(thrd)) {
2364                 rc = PTR_ERR(thrd);
2365                 CERROR("Can't spawn gnilnd ruhroh thread: %d\n", rc);
2366                 GOTO(failed, rc);
2367         }
2368
2369         /* threads will load balance across devs as they are available */
2370         if (*kgnilnd_tunables.kgn_thread_affinity) {
2371                 rc = kgnilnd_start_sd_threads();
2372                 if (rc != 0)
2373                         GOTO(failed, rc);
2374         } else {
2375                 for (i = 0; i < *kgnilnd_tunables.kgn_sched_threads; i++) {
2376                         rc = kgnilnd_thread_start(kgnilnd_scheduler,
2377                                                   (void *)((long)i),
2378                                                   "kgnilnd_sd", i);
2379                         if (rc != 0) {
2380                                 CERROR("Can't spawn gnilnd scheduler[%d]: %d\n",
2381                                        i, rc);
2382                                 GOTO(failed, rc);
2383                         }
2384                 }
2385         }
2386
2387         for (i = 0; i < kgnilnd_data.kgn_ndevs; i++) {
2388                 dev = &kgnilnd_data.kgn_devices[i];
2389                 rc = kgnilnd_thread_start(kgnilnd_dgram_mover, dev,
2390                                           "kgnilnd_dg", dev->gnd_id);
2391                 if (rc != 0) {
2392                         CERROR("Can't spawn gnilnd dgram_mover[%d]: %d\n",
2393                                dev->gnd_id, rc);
2394                         GOTO(failed, rc);
2395                 }
2396
2397                 rc = kgnilnd_thread_start(kgnilnd_dgram_waitq, dev,
2398                                           "kgnilnd_dgn", dev->gnd_id);
2399                 if (rc != 0) {
2400                         CERROR("Can't spawn gnilnd dgram_waitq[%d]: %d\n",
2401                                 dev->gnd_id, rc);
2402                         GOTO(failed, rc);
2403                 }
2404
2405                 rc = kgnilnd_setup_wildcard_dgram(dev);
2406
2407                 if (rc != 0) {
2408                         CERROR("Can't create wildcard dgrams[%d]: %d\n",
2409                                 dev->gnd_id, rc);
2410                         GOTO(failed, rc);
2411                 }
2412         }
2413
2414         /* flag everything initialised */
2415         kgnilnd_data.kgn_init = GNILND_INIT_ALL;
2416         /*****************************************************/
2417
2418         CDEBUG(D_MALLOC, "initial kmem %d\n", pkmem);
2419         RETURN(0);
2420
2421 failed:
2422         kgnilnd_base_shutdown();
2423         kgnilnd_data.kgn_init = GNILND_INIT_NOTHING;
2424         RETURN(rc);
2425 }
2426
2427 void
2428 kgnilnd_base_shutdown(void)
2429 {
2430         int                     i, j;
2431         ENTRY;
2432
2433         while (CFS_FAIL_TIMEOUT(CFS_FAIL_GNI_PAUSE_SHUTDOWN, 1)) {};
2434
2435         kgnilnd_data.kgn_wc_kill = 1;
2436
2437         for (i = 0; i < kgnilnd_data.kgn_ndevs; i++) {
2438                 kgn_device_t *dev = &kgnilnd_data.kgn_devices[i];
2439                 kgnilnd_cancel_wc_dgrams(dev);
2440                 kgnilnd_cancel_dgrams(dev);
2441                 kgnilnd_del_conn_or_peer(NULL, LNET_NID_ANY, GNILND_DEL_PEER, -ESHUTDOWN);
2442                 kgnilnd_wait_for_canceled_dgrams(dev);
2443         }
2444
2445         /* We need to verify there are no conns left before we let the threads
2446          * shut down otherwise we could clean up the peers but still have
2447          * some outstanding conns due to orphaned datagram conns that are
2448          * being cleaned up.
2449          */
2450         i = 2;
2451         while (atomic_read(&kgnilnd_data.kgn_nconns) != 0) {
2452                 i++;
2453
2454                 for(j = 0; j < kgnilnd_data.kgn_ndevs; ++j) {
2455                         kgn_device_t *dev = &kgnilnd_data.kgn_devices[j];
2456                         kgnilnd_schedule_device(dev);
2457                 }
2458
2459                 CDEBUG(((i & (-i)) == i) ? D_WARNING : D_NET,
2460                         "Waiting for conns to be cleaned up %d\n",atomic_read(&kgnilnd_data.kgn_nconns));
2461                 schedule_timeout_uninterruptible(cfs_time_seconds(1));
2462         }
2463         /* Peer state all cleaned up BEFORE setting shutdown, so threads don't
2464          * have to worry about shutdown races.  NB connections may be created
2465          * while there are still active connds, but these will be temporary
2466          * since peer creation always fails after the listener has started to
2467          * shut down.
2468          * all peers should have been cleared out on the nets */
2469         LASSERTF(atomic_read(&kgnilnd_data.kgn_npeers) == 0,
2470                 "peers left %d\n", atomic_read(&kgnilnd_data.kgn_npeers));
2471
2472         /* Wait for the ruhroh thread to shut down. */
2473         kgnilnd_data.kgn_ruhroh_shutdown = 1;
2474         wake_up(&kgnilnd_data.kgn_ruhroh_waitq);
2475         i = 2;
2476         while (kgnilnd_data.kgn_ruhroh_running != 0) {
2477                 i++;
2478                 CDEBUG(((i & (-i)) == i) ? D_WARNING : D_NET,
2479                        "Waiting for ruhroh thread to terminate\n");
2480                 schedule_timeout_uninterruptible(cfs_time_seconds(1));
2481         }
2482
2483        /* Flag threads to terminate */
2484         kgnilnd_data.kgn_shutdown = 1;
2485
2486         for (i = 0; i < kgnilnd_data.kgn_ndevs; i++) {
2487                 kgn_device_t *dev = &kgnilnd_data.kgn_devices[i];
2488
2489                 /* should clear all the MDDs */
2490                 kgnilnd_unmap_fma_blocks(dev);
2491
2492                 kgnilnd_schedule_device(dev);
2493                 wake_up_all(&dev->gnd_dgram_waitq);
2494                 wake_up_all(&dev->gnd_dgping_waitq);
2495                 LASSERT(list_empty(&dev->gnd_connd_peers));
2496         }
2497
2498         spin_lock(&kgnilnd_data.kgn_reaper_lock);
2499         wake_up_all(&kgnilnd_data.kgn_reaper_waitq);
2500         spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2501
2502         if (atomic_read(&kgnilnd_data.kgn_nthreads))
2503                 kgnilnd_wakeup_rca_thread();
2504
2505         /* Wait for threads to exit */
2506         i = 2;
2507         while (atomic_read(&kgnilnd_data.kgn_nthreads) != 0) {
2508                 i++;
2509                 CDEBUG(((i & (-i)) == i) ? D_WARNING : D_NET, /* power of 2? */
2510                        "Waiting for %d threads to terminate\n",
2511                        atomic_read(&kgnilnd_data.kgn_nthreads));
2512                 schedule_timeout_uninterruptible(cfs_time_seconds(1));
2513         }
2514
2515         LASSERTF(atomic_read(&kgnilnd_data.kgn_npeers) == 0,
2516                 "peers left %d\n", atomic_read(&kgnilnd_data.kgn_npeers));
2517
2518         if (kgnilnd_data.kgn_peers != NULL) {
2519                 for (i = 0; i < *kgnilnd_tunables.kgn_peer_hash_size; i++)
2520                         LASSERT(list_empty(&kgnilnd_data.kgn_peers[i]));
2521
2522                 CFS_FREE_PTR_ARRAY(kgnilnd_data.kgn_peers,
2523                                    *kgnilnd_tunables.kgn_peer_hash_size);
2524         }
2525
2526         down_write(&kgnilnd_data.kgn_net_rw_sem);
2527         if (kgnilnd_data.kgn_nets != NULL) {
2528                 for (i = 0; i < *kgnilnd_tunables.kgn_net_hash_size; i++)
2529                         LASSERT(list_empty(&kgnilnd_data.kgn_nets[i]));
2530
2531                 CFS_FREE_PTR_ARRAY(kgnilnd_data.kgn_nets,
2532                                    *kgnilnd_tunables.kgn_net_hash_size);
2533         }
2534         up_write(&kgnilnd_data.kgn_net_rw_sem);
2535
2536         LASSERTF(atomic_read(&kgnilnd_data.kgn_nconns) == 0,
2537                 "conns left %d\n", atomic_read(&kgnilnd_data.kgn_nconns));
2538
2539         if (kgnilnd_data.kgn_conns != NULL) {
2540                 for (i = 0; i < *kgnilnd_tunables.kgn_peer_hash_size; i++)
2541                         LASSERT(list_empty(&kgnilnd_data.kgn_conns[i]));
2542
2543                 CFS_FREE_PTR_ARRAY(kgnilnd_data.kgn_conns,
2544                                    *kgnilnd_tunables.kgn_peer_hash_size);
2545         }
2546
2547         for (i = 0; i < kgnilnd_data.kgn_ndevs; i++) {
2548                 kgn_device_t *dev = &kgnilnd_data.kgn_devices[i];
2549                 kgnilnd_dev_fini(dev);
2550
2551                 LASSERTF(atomic_read(&dev->gnd_ndgrams) == 0,
2552                         "dgrams left %d\n", atomic_read(&dev->gnd_ndgrams));
2553
2554                 if (dev->gnd_dgrams != NULL) {
2555                         for (i = 0; i < *kgnilnd_tunables.kgn_peer_hash_size;
2556                              i++)
2557                                 LASSERT(list_empty(&dev->gnd_dgrams[i]));
2558
2559                         CFS_FREE_PTR_ARRAY(dev->gnd_dgrams,
2560                                            *kgnilnd_tunables.kgn_peer_hash_size);
2561                 }
2562
2563                 kgnilnd_free_phys_fmablk(dev);
2564         }
2565
2566         if (kgnilnd_data.kgn_mbox_cache != NULL)
2567                 kmem_cache_destroy(kgnilnd_data.kgn_mbox_cache);
2568
2569         if (kgnilnd_data.kgn_rx_cache != NULL)
2570                 kmem_cache_destroy(kgnilnd_data.kgn_rx_cache);
2571
2572         if (kgnilnd_data.kgn_tx_cache != NULL)
2573                 kmem_cache_destroy(kgnilnd_data.kgn_tx_cache);
2574
2575         if (kgnilnd_data.kgn_tx_phys_cache != NULL)
2576                 kmem_cache_destroy(kgnilnd_data.kgn_tx_phys_cache);
2577
2578         if (kgnilnd_data.kgn_dgram_cache != NULL)
2579                 kmem_cache_destroy(kgnilnd_data.kgn_dgram_cache);
2580
2581         if (kgnilnd_data.kgn_cksum_map_pages != NULL) {
2582                 for (i = 0; i < kgnilnd_data.kgn_cksum_npages; i++) {
2583                         if (kgnilnd_data.kgn_cksum_map_pages[i] != NULL) {
2584                                 kfree(kgnilnd_data.kgn_cksum_map_pages[i]);
2585                         }
2586                 }
2587                 kfree(kgnilnd_data.kgn_cksum_map_pages);
2588         }
2589
2590         CDEBUG(D_MALLOC, "after NAL cleanup: kmem %d\n",
2591                atomic_read(&libcfs_kmemory));
2592
2593         kgnilnd_data.kgn_init = GNILND_INIT_NOTHING;
2594         module_put(THIS_MODULE);
2595
2596         EXIT;
2597 }
2598
2599 int
2600 kgnilnd_startup(struct lnet_ni *ni)
2601 {
2602         int               rc, devno;
2603         kgn_net_t        *net;
2604         ENTRY;
2605
2606         LASSERTF(ni->ni_net->net_lnd == &the_kgnilnd,
2607                 "bad LND 0x%p != the_kgnilnd @ 0x%p\n",
2608                 ni->ni_net->net_lnd, &the_kgnilnd);
2609
2610         if (kgnilnd_data.kgn_init == GNILND_INIT_NOTHING) {
2611                 rc = kgnilnd_base_startup();
2612                 if (rc != 0)
2613                         RETURN(rc);
2614         }
2615
2616         /* Serialize with shutdown. */
2617         mutex_lock(&kgnilnd_data.kgn_quiesce_mutex);
2618
2619         LIBCFS_ALLOC(net, sizeof(*net));
2620         if (net == NULL) {
2621                 CERROR("could not allocate net for new interface instance\n");
2622                 /* no need to cleanup the CDM... */
2623                 GOTO(failed, rc = -ENOMEM);
2624         }
2625         INIT_LIST_HEAD(&net->gnn_list);
2626         ni->ni_data = net;
2627         net->gnn_ni = ni;
2628         if (!ni->ni_net->net_tunables_set) {
2629                 ni->ni_net->net_tunables.lct_max_tx_credits =
2630                         *kgnilnd_tunables.kgn_credits;
2631                 ni->ni_net->net_tunables.lct_peer_tx_credits =
2632                         *kgnilnd_tunables.kgn_peer_credits;
2633         }
2634
2635         if (*kgnilnd_tunables.kgn_peer_health) {
2636                 int     fudge;
2637                 int     timeout;
2638                 /* give this a bit of leeway - we don't have a hard timeout
2639                  * as we only check timeouts periodically - see comment in kgnilnd_reaper */
2640                 fudge = (GNILND_TO2KA(*kgnilnd_tunables.kgn_timeout) / GNILND_REAPER_NCHECKS);
2641                 timeout = *kgnilnd_tunables.kgn_timeout + fudge;
2642
2643                 if (*kgnilnd_tunables.kgn_peer_timeout >= timeout) {
2644                         ni->ni_net->net_tunables.lct_peer_timeout =
2645                                  *kgnilnd_tunables.kgn_peer_timeout;
2646                 } else if (*kgnilnd_tunables.kgn_peer_timeout > -1) {
2647                         LCONSOLE_ERROR("Peer_timeout is set to %d but needs to be >= %d\n",
2648                                         *kgnilnd_tunables.kgn_peer_timeout,
2649                                         timeout);
2650                         ni->ni_data = NULL;
2651                         LIBCFS_FREE(net, sizeof(*net));
2652                         GOTO(failed, rc = -EINVAL);
2653                 } else
2654                         ni->ni_net->net_tunables.lct_peer_timeout = timeout;
2655
2656                 LCONSOLE_INFO("Enabling LNet peer health for gnilnd, timeout %ds\n",
2657                               ni->ni_net->net_tunables.lct_peer_timeout);
2658         }
2659
2660         atomic_set(&net->gnn_refcount, 1);
2661
2662         /* if we have multiple devices, spread the nets around */
2663         net->gnn_netnum = LNET_NETNUM(LNET_NIDNET(ni->ni_nid));
2664
2665         devno = LNET_NIDNET(ni->ni_nid) % GNILND_MAXDEVS;
2666         net->gnn_dev = &kgnilnd_data.kgn_devices[devno];
2667
2668         /* allocate a 'dummy' cdm for datagram use. We can only have a single
2669          * datagram between a nid:inst_id and nid2:inst_id. The fake cdm
2670          * give us additional inst_id to use, allowing the datagrams to flow
2671          * like rivers of honey and beer */
2672
2673         /* the instance id for the cdm is the NETNUM offset by MAXDEVS -
2674          * ensuring we'll have a unique id */
2675
2676
2677         ni->ni_nid = LNET_MKNID(LNET_NIDNET(ni->ni_nid), net->gnn_dev->gnd_nid);
2678         CDEBUG(D_NET, "adding net %p nid=%s on dev %d \n",
2679                 net, libcfs_nid2str(ni->ni_nid), net->gnn_dev->gnd_id);
2680         /* until the gnn_list is set, we need to cleanup ourselves as
2681          * kgnilnd_shutdown is just gonna get confused */
2682
2683         down_write(&kgnilnd_data.kgn_net_rw_sem);
2684         list_add_tail(&net->gnn_list, kgnilnd_netnum2netlist(net->gnn_netnum));
2685         up_write(&kgnilnd_data.kgn_net_rw_sem);
2686
2687         /* we need a separate thread to call probe_wait_by_id until
2688          * we get a function callback notifier from kgni */
2689         mutex_unlock(&kgnilnd_data.kgn_quiesce_mutex);
2690         RETURN(0);
2691  failed:
2692         mutex_unlock(&kgnilnd_data.kgn_quiesce_mutex);
2693         kgnilnd_shutdown(ni);
2694         RETURN(rc);
2695 }
2696
2697 void
2698 kgnilnd_shutdown(struct lnet_ni *ni)
2699 {
2700         kgn_net_t     *net = ni->ni_data;
2701         int           i;
2702         int           rc;
2703         ENTRY;
2704
2705         CFS_RACE(CFS_FAIL_GNI_SR_DOWN_RACE);
2706
2707         LASSERTF(kgnilnd_data.kgn_init == GNILND_INIT_ALL,
2708                 "init %d\n", kgnilnd_data.kgn_init);
2709
2710         /* Serialize with startup. */
2711         mutex_lock(&kgnilnd_data.kgn_quiesce_mutex);
2712         CDEBUG(D_MALLOC, "before NAL cleanup: kmem %d\n",
2713                atomic_read(&libcfs_kmemory));
2714
2715         if (net == NULL) {
2716                 CERROR("got NULL net for ni %p\n", ni);
2717                 GOTO(out, rc = -EINVAL);
2718         }
2719
2720         LASSERTF(ni == net->gnn_ni,
2721                 "ni %p gnn_ni %p\n", net, net->gnn_ni);
2722
2723         ni->ni_data = NULL;
2724
2725         LASSERT(!net->gnn_shutdown);
2726         LASSERTF(atomic_read(&net->gnn_refcount) != 0,
2727                 "net %p refcount %d\n",
2728                  net, atomic_read(&net->gnn_refcount));
2729
2730         if (!list_empty(&net->gnn_list)) {
2731                 /* serialize with peer creation */
2732                 down_write(&kgnilnd_data.kgn_net_rw_sem);
2733                 net->gnn_shutdown = 1;
2734                 up_write(&kgnilnd_data.kgn_net_rw_sem);
2735
2736                 kgnilnd_cancel_net_dgrams(net);
2737
2738                 kgnilnd_del_conn_or_peer(net, LNET_NID_ANY, GNILND_DEL_PEER, -ESHUTDOWN);
2739
2740                 /* if we are quiesced, need to wake up - we need those threads
2741                  * alive to release peers, etc */
2742                 if (GNILND_IS_QUIESCED) {
2743                         set_mb(kgnilnd_data.kgn_quiesce_trigger, GNILND_QUIESCE_IDLE);
2744                         kgnilnd_quiesce_wait("shutdown");
2745                 }
2746
2747                 kgnilnd_wait_for_canceled_dgrams(net->gnn_dev);
2748
2749                 /* We wait until the nets ref's are 1, we will release final ref which is ours
2750                  * this allows us to make sure everything else is done before we free the
2751                  * net.
2752                  */
2753                 i = 4;
2754                 while (atomic_read(&net->gnn_refcount) != 1) {
2755                         i++;
2756                         CDEBUG(((i & (-i)) == i) ? D_WARNING : D_NET,
2757                                 "Waiting for %d references to clear on net %d\n",
2758                                 atomic_read(&net->gnn_refcount),
2759                                 net->gnn_netnum);
2760                         schedule_timeout_uninterruptible(cfs_time_seconds(1));
2761                 }
2762
2763                 /* release ref from kgnilnd_startup */
2764                 kgnilnd_net_decref(net);
2765                 /* serialize with reaper and conn_task looping */
2766                 down_write(&kgnilnd_data.kgn_net_rw_sem);
2767                 list_del_init(&net->gnn_list);
2768                 up_write(&kgnilnd_data.kgn_net_rw_sem);
2769
2770         }
2771
2772         /* not locking, this can't race with writers */
2773         LASSERTF(atomic_read(&net->gnn_refcount) == 0,
2774                 "net %p refcount %d\n",
2775                  net, atomic_read(&net->gnn_refcount));
2776         LIBCFS_FREE(net, sizeof(*net));
2777
2778 out:
2779         down_read(&kgnilnd_data.kgn_net_rw_sem);
2780         for (i = 0; i < *kgnilnd_tunables.kgn_net_hash_size; i++) {
2781                 if (!list_empty(&kgnilnd_data.kgn_nets[i])) {
2782                         up_read(&kgnilnd_data.kgn_net_rw_sem);
2783                         break;
2784                 }
2785
2786                 if (i == *kgnilnd_tunables.kgn_net_hash_size - 1) {
2787                         up_read(&kgnilnd_data.kgn_net_rw_sem);
2788                         kgnilnd_base_shutdown();
2789                 }
2790         }
2791         CDEBUG(D_MALLOC, "after NAL cleanup: kmem %d\n",
2792                atomic_read(&libcfs_kmemory));
2793
2794         mutex_unlock(&kgnilnd_data.kgn_quiesce_mutex);
2795         EXIT;
2796 }
2797
2798 static void __exit kgnilnd_exit(void)
2799 {
2800         lnet_unregister_lnd(&the_kgnilnd);
2801         kgnilnd_proc_fini();
2802         kgnilnd_remove_sysctl();
2803 }
2804
2805 static int __init kgnilnd_init(void)
2806 {
2807         int    rc;
2808
2809         rc = kgnilnd_tunables_init();
2810         if (rc != 0)
2811                 return rc;
2812
2813         LCONSOLE_INFO("Lustre: kgnilnd build version: "LUSTRE_VERSION_STRING"\n");
2814
2815         kgnilnd_insert_sysctl();
2816         kgnilnd_proc_init();
2817
2818         lnet_register_lnd(&the_kgnilnd);
2819
2820         return 0;
2821 }
2822
2823 MODULE_AUTHOR("Cray, Inc. <nic@cray.com>");
2824 MODULE_DESCRIPTION("Gemini LNet Network Driver");
2825 MODULE_VERSION(LUSTRE_VERSION_STRING);
2826 MODULE_LICENSE("GPL");
2827
2828 module_init(kgnilnd_init);
2829 module_exit(kgnilnd_exit);