Whamcloud - gitweb
The first pass of some overdue copyright cleanup:
[fs/lustre-release.git] / lnet / klnds / socklnd / socklnd.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *   Author: Zach Brown <zab@zabbo.net>
5  *   Author: Peter J. Braam <braam@clusterfs.com>
6  *   Author: Phil Schwan <phil@clusterfs.com>
7  *   Author: Eric Barton <eric@bartonsoftware.com>
8  *
9  *   This file is part of Lustre, http://www.lustre.org
10  *
11  *   Portals 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  *   Portals 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 Portals; if not, write to the Free Software
22  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  *
24  */
25
26 #define DEBUG_PORTAL_ALLOC
27 #ifndef EXPORT_SYMTAB
28 # define EXPORT_SYMTAB
29 #endif
30
31 #include <linux/config.h>
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/mm.h>
35 #include <linux/string.h>
36 #include <linux/stat.h>
37 #include <linux/errno.h>
38 #include <linux/smp_lock.h>
39 #include <linux/unistd.h>
40 #include <net/sock.h>
41 #include <net/tcp.h>
42 #include <linux/uio.h>
43
44 #include <asm/system.h>
45 #include <asm/uaccess.h>
46 #include <asm/irq.h>
47
48 #include <linux/init.h>
49 #include <linux/fs.h>
50 #include <linux/file.h>
51 #include <linux/stat.h>
52 #include <linux/list.h>
53 #include <linux/kmod.h>
54 #include <linux/sysctl.h>
55 #include <asm/uaccess.h>
56 #include <asm/segment.h>
57 #include <asm/div64.h>
58
59 #define DEBUG_SUBSYSTEM S_NAL
60
61 #include <linux/kp30.h>
62 #include <linux/portals_compat25.h>
63 #include <linux/kpr.h>
64 #include <portals/p30.h>
65 #include <portals/lib-p30.h>
66 #include <portals/nal.h>
67 #include <portals/socknal.h>
68
69 #define SOCKNAL_N_AUTOCONNECTD  4               /* # socknal autoconnect daemons */
70
71 #define SOCKNAL_MIN_RECONNECT_INTERVAL  HZ      /* first failed connection retry... */
72 #define SOCKNAL_MAX_RECONNECT_INTERVAL  (60*HZ) /* ...exponentially increasing to this */
73
74 /* default vals for runtime tunables */
75 #define SOCKNAL_IO_TIMEOUT       50             /* default comms timeout (seconds) */
76 #define SOCKNAL_EAGER_ACK        0              /* default eager ack (boolean) */
77 #define SOCKNAL_TYPED_CONNS      1              /* unidirectional large, bidirectional small? */
78 #define SOCKNAL_ZC_MIN_FRAG     (2<<10)         /* default smallest zerocopy fragment */
79 #define SOCKNAL_MIN_BULK        (1<<10)         /* smallest "large" message */
80 #define SOCKNAL_BUFFER_SIZE     (8<<20)         /* default socket buffer size */
81 #define SOCKNAL_NAGLE            0              /* enable/disable NAGLE? */
82 #define SOCKNAL_IRQ_AFFINITY     1              /* enable/disable IRQ affinity? */
83 #define SOCKNAL_KEEPALIVE_IDLE   0              /* # seconds idle before 1st probe */
84 #define SOCKNAL_KEEPALIVE_COUNT  10             /* # unanswered probes to determine peer death */
85 #define SOCKNAL_KEEPALIVE_INTVL  1              /* seconds between probes */
86
87 #define SOCKNAL_PEER_HASH_SIZE   101            /* # peer lists */
88
89 #define SOCKNAL_SMALL_FWD_NMSGS 128             /* # small messages I can be forwarding at any time */
90 #define SOCKNAL_LARGE_FWD_NMSGS 64              /* # large messages I can be forwarding at any time */
91
92 #define SOCKNAL_SMALL_FWD_PAGES 1               /* # pages in a small message fwd buffer */
93
94 #define SOCKNAL_LARGE_FWD_PAGES (PAGE_ALIGN(PTL_MTU) >> PAGE_SHIFT)
95                                                 /* # pages in a large message fwd buffer */
96
97 #define SOCKNAL_RESCHED         100             /* # scheduler loops before reschedule */
98 #define SOCKNAL_ENOMEM_RETRY    1               /* jiffies between retries */
99
100 #define SOCKNAL_MAX_INTERFACES  16              /* Largest number of interfaces we bind */
101
102 #define SOCKNAL_ROUND_ROBIN     0               /* round robin / load balance */
103
104 #define SOCKNAL_TX_LOW_WATER(sk) (((sk)->sk_sndbuf*8)/10)
105
106 #define SOCKNAL_SINGLE_FRAG_TX      0           /* disable multi-fragment sends */
107 #define SOCKNAL_SINGLE_FRAG_RX      0           /* disable multi-fragment receives */
108 #define SOCKNAL_RISK_KMAP_DEADLOCK  0           /* risk kmap deadlock on multi-frag I/O 
109                                                  * (backs off to single-frag if disabled) */
110                                                 
111 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,72))
112 # define sk_allocation  allocation
113 # define sk_data_ready  data_ready
114 # define sk_write_space write_space
115 # define sk_user_data   user_data
116 # define sk_prot        prot
117 # define sk_sndbuf      sndbuf
118 # define sk_socket      socket
119 #endif
120
121 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0))
122 # define sk_wmem_queued wmem_queued
123 # define sk_err         err
124 #endif
125
126 typedef struct                                  /* pool of forwarding buffers */
127 {
128         spinlock_t        fmp_lock;             /* serialise */
129         struct list_head  fmp_idle_fmbs;        /* free buffers */
130         struct list_head  fmp_blocked_conns;    /* connections waiting for a buffer */
131         int               fmp_nactive_fmbs;     /* # buffers in use */
132         int               fmp_buff_pages;       /* # pages per buffer */
133 } ksock_fmb_pool_t;
134
135
136 typedef struct                                  /* per scheduler state */
137 {
138         spinlock_t        kss_lock;             /* serialise */
139         struct list_head  kss_rx_conns;         /* conn waiting to be read */
140         struct list_head  kss_tx_conns;         /* conn waiting to be written */
141 #if SOCKNAL_ZC
142         struct list_head  kss_zctxdone_list;    /* completed ZC transmits */
143 #endif
144         wait_queue_head_t kss_waitq;            /* where scheduler sleeps */
145         int               kss_nconns;           /* # connections assigned to this scheduler */
146 } ksock_sched_t;
147
148 typedef struct
149 {
150         int               ksni_valid:1;         /* been set yet? */
151         int               ksni_bound:1;         /* bound to a cpu yet? */
152         int               ksni_sched:6;         /* which scheduler (assumes < 64) */
153 } ksock_irqinfo_t;
154
155 typedef struct
156 {
157         __u32             ksni_ipaddr;          /* interface's IP address */
158         __u32             ksni_netmask;         /* interface's network mask */
159         int               ksni_nroutes;         /* # routes using (active) */
160         int               ksni_npeers;          /* # peers using (passive) */
161 } ksock_interface_t;
162
163 typedef struct
164 {
165         int               ksnd_io_timeout;      /* "stuck" socket timeout (seconds) */
166         int               ksnd_eager_ack;       /* make TCP ack eagerly? */
167         int               ksnd_typed_conns;     /* drive sockets by type? */
168         int               ksnd_min_bulk;        /* smallest "large" message */
169         int               ksnd_buffer_size;     /* socket buffer size */
170         int               ksnd_nagle;           /* enable NAGLE? */
171         int               ksnd_irq_affinity;    /* enable IRQ affinity? */
172         int               ksnd_keepalive_idle;  /* # idle secs before 1st probe */
173         int               ksnd_keepalive_count; /* # probes */
174         int               ksnd_keepalive_intvl; /* time between probes */
175 #if SOCKNAL_ZC
176         unsigned int      ksnd_zc_min_frag;     /* minimum zero copy frag size */
177 #endif
178         struct ctl_table_header *ksnd_sysctl;   /* sysctl interface */
179 } ksock_tunables_t;
180
181 typedef struct
182 {
183         int               ksnd_init;            /* initialisation state */
184         __u64             ksnd_incarnation;     /* my epoch */
185         
186         rwlock_t          ksnd_global_lock;     /* stabilize peer/conn ops */
187         struct list_head *ksnd_peers;           /* hash table of all my known peers */
188         int               ksnd_peer_hash_size;  /* size of ksnd_peers */
189
190         int               ksnd_nthreads;        /* # live threads */
191         int               ksnd_shuttingdown;    /* tell threads to exit */
192         int               ksnd_nschedulers;     /* # schedulers */
193         ksock_sched_t    *ksnd_schedulers;      /* their state */
194
195         atomic_t          ksnd_npeers;          /* total # peers extant */
196         atomic_t          ksnd_nclosing_conns;  /* # closed conns extant */
197
198         kpr_router_t      ksnd_router;          /* THE router */
199
200         ksock_fmb_pool_t  ksnd_small_fmp;       /* small message forwarding buffers */
201         ksock_fmb_pool_t  ksnd_large_fmp;       /* large message forwarding buffers */
202
203         atomic_t          ksnd_nactive_ltxs;    /* #active ltxs */
204
205         struct list_head  ksnd_deathrow_conns;  /* conns to be closed */
206         struct list_head  ksnd_zombie_conns;    /* conns to be freed */
207         struct list_head  ksnd_enomem_conns;    /* conns to be retried */
208         wait_queue_head_t ksnd_reaper_waitq;    /* reaper sleeps here */
209         unsigned long     ksnd_reaper_waketime; /* when reaper will wake */
210         spinlock_t        ksnd_reaper_lock;     /* serialise */
211
212         int               ksnd_enomem_tx;       /* test ENOMEM sender */
213         int               ksnd_stall_tx;        /* test sluggish sender */
214         int               ksnd_stall_rx;        /* test sluggish receiver */
215
216         struct list_head  ksnd_autoconnectd_routes; /* routes waiting to be connected */
217         wait_queue_head_t ksnd_autoconnectd_waitq; /* autoconnectds sleep here */
218         spinlock_t        ksnd_autoconnectd_lock; /* serialise */
219
220         ksock_irqinfo_t   ksnd_irqinfo[NR_IRQS];/* irq->scheduler lookup */
221
222         int               ksnd_ninterfaces;
223         ksock_interface_t ksnd_interfaces[SOCKNAL_MAX_INTERFACES]; /* published interfaces */
224 } ksock_nal_data_t;
225
226 #define SOCKNAL_INIT_NOTHING    0
227 #define SOCKNAL_INIT_DATA       1
228 #define SOCKNAL_INIT_LIB        2
229 #define SOCKNAL_INIT_ALL        3
230
231 /* A packet just assembled for transmission is represented by 1 or more
232  * struct iovec fragments (the first frag contains the portals header),
233  * followed by 0 or more ptl_kiov_t fragments.
234  *
235  * On the receive side, initially 1 struct iovec fragment is posted for
236  * receive (the header).  Once the header has been received, the payload is
237  * received into either struct iovec or ptl_kiov_t fragments, depending on
238  * what the header matched or whether the message needs forwarding. */
239
240 struct ksock_conn;                              /* forward ref */
241 struct ksock_peer;                              /* forward ref */
242 struct ksock_route;                             /* forward ref */
243
244 typedef struct                                  /* transmit packet */
245 {
246         struct list_head        tx_list;        /* queue on conn for transmission etc */
247         char                    tx_isfwd;       /* forwarding / sourced here */
248         int                     tx_nob;         /* # packet bytes */
249         int                     tx_resid;       /* residual bytes */
250         int                     tx_niov;        /* # packet iovec frags */
251         struct iovec           *tx_iov;         /* packet iovec frags */
252         int                     tx_nkiov;       /* # packet page frags */
253         ptl_kiov_t             *tx_kiov;        /* packet page frags */
254         struct ksock_conn      *tx_conn;        /* owning conn */
255         ptl_hdr_t              *tx_hdr;         /* packet header (for debug only) */
256 #if SOCKNAL_ZC        
257         zccd_t                  tx_zccd;        /* zero copy callback descriptor */
258 #endif
259 } ksock_tx_t;
260
261 typedef struct                                  /* forwarded packet */
262 {
263         ksock_tx_t             ftx_tx;          /* send info */
264         struct iovec           ftx_iov;         /* hdr iovec */
265 } ksock_ftx_t;
266
267 #define KSOCK_ZCCD_2_TX(ptr)    list_entry (ptr, ksock_tx_t, tx_zccd)
268 /* network zero copy callback descriptor embedded in ksock_tx_t */
269
270 typedef struct                                  /* locally transmitted packet */
271 {
272         ksock_tx_t              ltx_tx;         /* send info */
273         void                   *ltx_private;    /* lib_finalize() callback arg */
274         void                   *ltx_cookie;     /* lib_finalize() callback arg */
275         ptl_hdr_t               ltx_hdr;        /* buffer for packet header */
276         int                     ltx_desc_size;  /* bytes allocated for this desc */
277         struct iovec            ltx_iov[1];     /* iov for hdr + payload */
278         ptl_kiov_t              ltx_kiov[0];    /* kiov for payload */
279 } ksock_ltx_t;
280
281 #define KSOCK_TX_2_KPR_FWD_DESC(ptr)    list_entry ((kprfd_scratch_t *)ptr, kpr_fwd_desc_t, kprfd_scratch)
282 /* forwarded packets (router->socknal) embedded in kpr_fwd_desc_t::kprfd_scratch */
283
284 #define KSOCK_TX_2_KSOCK_LTX(ptr)       list_entry (ptr, ksock_ltx_t, ltx_tx)
285 /* local packets (lib->socknal) embedded in ksock_ltx_t::ltx_tx */
286
287 /* NB list_entry() is used here as convenient macro for calculating a
288  * pointer to a struct from the address of a member. */
289
290 typedef struct                                  /* Kernel portals Socket Forwarding message buffer */
291 {                                               /* (socknal->router) */
292         struct list_head        fmb_list;       /* queue idle */
293         kpr_fwd_desc_t          fmb_fwd;        /* router's descriptor */
294         ksock_fmb_pool_t       *fmb_pool;       /* owning pool */
295         struct ksock_peer      *fmb_peer;       /* peer received from */
296         ptl_hdr_t               fmb_hdr;        /* message header */
297         ptl_kiov_t              fmb_kiov[0];    /* payload frags */
298 } ksock_fmb_t;
299
300 /* space for the rx frag descriptors; we either read a single contiguous
301  * header, or up to PTL_MD_MAX_IOV frags of payload of either type. */
302 typedef union {
303         struct iovec    iov[PTL_MD_MAX_IOV];
304         ptl_kiov_t      kiov[PTL_MD_MAX_IOV];
305 } ksock_rxiovspace_t;
306
307 #define SOCKNAL_RX_HEADER       1               /* reading header */
308 #define SOCKNAL_RX_BODY         2               /* reading body (to deliver here) */
309 #define SOCKNAL_RX_BODY_FWD     3               /* reading body (to forward) */
310 #define SOCKNAL_RX_SLOP         4               /* skipping body */
311 #define SOCKNAL_RX_GET_FMB      5               /* scheduled for forwarding */
312 #define SOCKNAL_RX_FMB_SLEEP    6               /* blocked waiting for a fwd desc */
313
314 typedef struct ksock_conn
315
316         struct ksock_peer  *ksnc_peer;          /* owning peer */
317         struct ksock_route *ksnc_route;         /* owning route */
318         struct list_head    ksnc_list;          /* stash on peer's conn list */
319         struct socket      *ksnc_sock;          /* actual socket */
320         void               *ksnc_saved_data_ready; /* socket's original data_ready() callback */
321         void               *ksnc_saved_write_space; /* socket's original write_space() callback */
322         atomic_t            ksnc_refcount;      /* # users */
323         ksock_sched_t      *ksnc_scheduler;     /* who schedules this connection */
324         __u32               ksnc_myipaddr;      /* my IP */
325         __u32               ksnc_ipaddr;        /* peer's IP */
326         int                 ksnc_port;          /* peer's port */
327         int                 ksnc_closing;       /* being shut down */
328         int                 ksnc_type;          /* type of connection */
329         __u64               ksnc_incarnation;   /* peer's incarnation */
330         
331         /* reader */
332         struct list_head    ksnc_rx_list;       /* where I enq waiting input or a forwarding descriptor */
333         unsigned long       ksnc_rx_deadline;   /* when (in jiffies) receive times out */
334         int                 ksnc_rx_started;    /* started receiving a message */
335         int                 ksnc_rx_ready;      /* data ready to read */
336         int                 ksnc_rx_scheduled;  /* being progressed */
337         int                 ksnc_rx_state;      /* what is being read */
338         int                 ksnc_rx_nob_left;   /* # bytes to next hdr/body  */
339         int                 ksnc_rx_nob_wanted; /* bytes actually wanted */
340         int                 ksnc_rx_niov;       /* # iovec frags */
341         struct iovec       *ksnc_rx_iov;        /* the iovec frags */
342         int                 ksnc_rx_nkiov;      /* # page frags */
343         ptl_kiov_t         *ksnc_rx_kiov;       /* the page frags */
344         ksock_rxiovspace_t  ksnc_rx_iov_space;  /* space for frag descriptors */
345         void               *ksnc_cookie;        /* rx lib_finalize passthru arg */
346         ptl_hdr_t           ksnc_hdr;           /* where I read headers into */
347
348         /* WRITER */
349         struct list_head    ksnc_tx_list;       /* where I enq waiting for output space */
350         struct list_head    ksnc_tx_queue;      /* packets waiting to be sent */
351         unsigned long       ksnc_tx_deadline;   /* when (in jiffies) tx times out */
352         int                 ksnc_tx_bufnob;     /* send buffer marker */
353         atomic_t            ksnc_tx_nob;        /* # bytes queued */
354         int                 ksnc_tx_ready;      /* write space */
355         int                 ksnc_tx_scheduled;  /* being progressed */
356
357 #if !SOCKNAL_SINGLE_FRAG_RX
358         struct iovec        ksnc_rx_scratch_iov[PTL_MD_MAX_IOV];
359 #endif
360 #if !SOCKNAL_SINGLE_FRAG_TX
361         struct iovec        ksnc_tx_scratch_iov[PTL_MD_MAX_IOV];
362 #endif
363 } ksock_conn_t;
364
365 #define KSNR_TYPED_ROUTES   ((1 << SOCKNAL_CONN_CONTROL) |      \
366                              (1 << SOCKNAL_CONN_BULK_IN) |      \
367                              (1 << SOCKNAL_CONN_BULK_OUT))
368
369 typedef struct ksock_route
370 {
371         struct list_head    ksnr_list;          /* chain on peer route list */
372         struct list_head    ksnr_connect_list;  /* chain on autoconnect list */
373         struct ksock_peer  *ksnr_peer;          /* owning peer */
374         atomic_t            ksnr_refcount;      /* # users */
375         unsigned long       ksnr_timeout;       /* when (in jiffies) reconnection can happen next */
376         unsigned int        ksnr_retry_interval; /* how long between retries */
377         __u32               ksnr_myipaddr;      /* my IP */
378         __u32               ksnr_ipaddr;        /* IP address to connect to */
379         int                 ksnr_port;          /* port to connect to */
380         unsigned int        ksnr_connecting:4;  /* autoconnects in progress by type */
381         unsigned int        ksnr_connected:4;   /* connections established by type */
382         unsigned int        ksnr_deleted:1;     /* been removed from peer? */
383         unsigned int        ksnr_share_count;   /* created explicitly? */
384         int                 ksnr_conn_count;    /* # conns established by this route */
385 } ksock_route_t;
386
387 typedef struct ksock_peer
388 {
389         struct list_head    ksnp_list;          /* stash on global peer list */
390         ptl_nid_t           ksnp_nid;           /* who's on the other end(s) */
391         atomic_t            ksnp_refcount;      /* # users */
392         int                 ksnp_sharecount;    /* lconf usage counter */
393         int                 ksnp_closing;       /* being closed */
394         int                 ksnp_error;         /* errno on closing last conn */
395         struct list_head    ksnp_conns;         /* all active connections */
396         struct list_head    ksnp_routes;        /* routes */
397         struct list_head    ksnp_tx_queue;      /* waiting packets */
398         unsigned long       ksnp_last_alive;    /* when (in jiffies) I was last alive */
399         int                 ksnp_n_passive_ips; /* # of... */
400         __u32               ksnp_passive_ips[SOCKNAL_MAX_INTERFACES]; /* preferred local interfaces */
401 } ksock_peer_t;
402
403
404 extern lib_nal_t        ksocknal_lib;
405 extern ksock_nal_data_t ksocknal_data;
406 extern ksock_tunables_t ksocknal_tunables;
407
408 static inline struct list_head *
409 ksocknal_nid2peerlist (ptl_nid_t nid)
410 {
411         unsigned int hash = ((unsigned int)nid) % ksocknal_data.ksnd_peer_hash_size;
412
413         return (&ksocknal_data.ksnd_peers [hash]);
414 }
415
416 static inline int
417 ksocknal_getconnsock (ksock_conn_t *conn)
418 {
419         int   rc = -ESHUTDOWN;
420
421         read_lock (&ksocknal_data.ksnd_global_lock);
422         if (!conn->ksnc_closing) {
423                 rc = 0;
424                 get_file (conn->ksnc_sock->file);
425         }
426         read_unlock (&ksocknal_data.ksnd_global_lock);
427
428         return (rc);
429 }
430
431 static inline void
432 ksocknal_putconnsock (ksock_conn_t *conn)
433 {
434         fput (conn->ksnc_sock->file);
435 }
436
437 #ifndef CONFIG_SMP
438 static inline
439 int ksocknal_nsched(void)
440 {
441         return 1;
442 }
443 #else
444 #include <linux/lustre_version.h>
445 # if !(defined(CONFIG_X86) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,21))) || defined(CONFIG_X86_64) || (LUSTRE_KERNEL_VERSION < 39) || ((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)) && !defined(CONFIG_X86_HT))
446 static inline int
447 ksocknal_nsched(void)
448 {
449         return num_online_cpus();
450 }
451
452 static inline int
453 ksocknal_sched2cpu(int i)
454 {
455         return i;
456 }
457
458 static inline int
459 ksocknal_irqsched2cpu(int i)
460 {
461         return i;
462 }
463 # else
464 static inline int
465 ksocknal_nsched(void)
466 {
467         if (smp_num_siblings == 1)
468                 return (num_online_cpus());
469
470         /* We need to know if this assumption is crap */
471         LASSERT (smp_num_siblings == 2);
472         return (num_online_cpus()/2);
473 }
474
475 static inline int
476 ksocknal_sched2cpu(int i)
477 {
478         if (smp_num_siblings == 1)
479                 return i;
480
481         return (i * 2);
482 }
483
484 static inline int
485 ksocknal_irqsched2cpu(int i)
486 {
487         return (ksocknal_sched2cpu(i) + 1);
488 }
489 # endif
490 #endif
491
492 extern void ksocknal_put_route (ksock_route_t *route);
493 extern void ksocknal_put_peer (ksock_peer_t *peer);
494 extern ksock_peer_t *ksocknal_find_peer_locked (ptl_nid_t nid);
495 extern ksock_peer_t *ksocknal_get_peer (ptl_nid_t nid);
496 extern int ksocknal_del_route (ptl_nid_t nid, __u32 ipaddr,
497                                int single, int keep_conn);
498 extern int ksocknal_create_conn (ksock_route_t *route,
499                                  struct socket *sock, int type);
500 extern void ksocknal_close_conn_locked (ksock_conn_t *conn, int why);
501 extern void ksocknal_terminate_conn (ksock_conn_t *conn);
502 extern void ksocknal_destroy_conn (ksock_conn_t *conn);
503 extern void ksocknal_put_conn (ksock_conn_t *conn);
504 extern int ksocknal_close_stale_conns_locked (ksock_peer_t *peer, __u64 incarnation);
505 extern int ksocknal_close_conn_and_siblings (ksock_conn_t *conn, int why);
506 extern int ksocknal_close_matching_conns (ptl_nid_t nid, __u32 ipaddr);
507
508 extern void ksocknal_queue_tx_locked (ksock_tx_t *tx, ksock_conn_t *conn);
509 extern void ksocknal_tx_done (ksock_tx_t *tx, int asynch);
510 extern void ksocknal_fwd_packet (void *arg, kpr_fwd_desc_t *fwd);
511 extern void ksocknal_fmb_callback (void *arg, int error);
512 extern void ksocknal_notify (void *arg, ptl_nid_t gw_nid, int alive);
513 extern int ksocknal_thread_start (int (*fn)(void *arg), void *arg);
514 extern int ksocknal_new_packet (ksock_conn_t *conn, int skip);
515 extern int ksocknal_scheduler (void *arg);
516 extern void ksocknal_data_ready(struct sock *sk, int n);
517 extern void ksocknal_write_space(struct sock *sk);
518 extern int ksocknal_autoconnectd (void *arg);
519 extern int ksocknal_reaper (void *arg);
520 extern int ksocknal_get_conn_tunables (ksock_conn_t *conn, int *txmem, 
521                                        int *rxmem, int *nagle);
522 extern int ksocknal_setup_sock (struct socket *sock);
523 extern int ksocknal_send_hello (ksock_conn_t *conn, __u32 *ipaddrs, int nipaddrs);
524 extern int ksocknal_recv_hello (ksock_conn_t *conn,
525                                 ptl_nid_t *nid, __u64 *incarnation, __u32 *ipaddrs);