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