rx-fpq-trying-again-20050413
[openafs.git] / src / rx / rx_globals.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /* RX:  Globals for internal use, basically */
11
12 #ifndef AFS_RX_GLOBALS_H
13 #define AFS_RX_GLOBALS_H
14
15
16 #ifdef  KERNEL
17 #include "rx/rx.h"
18 #else /* KERNEL */
19 # include "rx.h"
20 #endif /* KERNEL */
21
22 #ifndef INIT
23 #define INIT(x)
24 #if defined(AFS_NT40_ENV) && defined(AFS_PTHREAD_ENV)
25 #define EXT __declspec(dllimport) extern
26 #else
27 #define EXT extern
28 #endif
29 #endif /* !INIT */
30
31 /* Basic socket for client requests; other sockets (for receiving server requests) are in the service structures */
32 EXT osi_socket rx_socket;
33
34 /* The array of installed services.  Null terminated. */
35 EXT struct rx_service *rx_services[RX_MAX_SERVICES + 1];
36 #ifdef RX_ENABLE_LOCKS
37 /* Protects nRequestsRunning as well as pool allocation variables. */
38 EXT afs_kmutex_t rx_serverPool_lock;
39 #endif /* RX_ENABLE_LOCKS */
40
41 /* Incoming calls wait on this queue when there are no available server processes */
42 EXT struct rx_queue rx_incomingCallQueue;
43
44 /* Server processes wait on this queue when there are no appropriate calls to process */
45 EXT struct rx_queue rx_idleServerQueue;
46
47 /* Constant delay time before sending an acknowledge of the last packet received.  This is to avoid sending an extra acknowledge when the client is about to make another call, anyway, or the server is about to respond. */
48 EXT struct clock rx_lastAckDelay;
49
50 /* Constant delay time before sending a hard ack if the receiver consumes
51  * a packet while no delayed ack event is scheduled. Ensures that the
52  * sender is able to advance its window when the receiver consumes a packet
53  * after the sender has exhausted its transmit window.
54  */
55 EXT struct clock rx_hardAckDelay;
56
57 /* Constant delay time before sending a soft ack when none was requested.
58  * This is to make sure we send soft acks before the sender times out,
59  * Normally we wait and send a hard ack when the receiver consumes the packet */
60 EXT struct clock rx_softAckDelay;
61
62 /* Variable to allow introduction of network unreliability */
63 #ifdef RXDEBUG
64 EXT int rx_intentionallyDroppedPacketsPer100 INIT(0);   /* Dropped on Send */
65 #endif
66
67 /* extra packets to add to the quota */
68 EXT int rx_extraQuota INIT(0);
69 /* extra packets to alloc (2 windows by deflt) */
70 EXT int rx_extraPackets INIT(32);
71
72 EXT int rx_stackSize INIT(RX_DEFAULT_STACK_SIZE);
73
74 /* Time until an unresponsive connection is declared dead */
75 EXT int rx_connDeadTime INIT(12);
76 /* Set rx default connection dead time; set on both services and connections at creation time */
77 #define rx_SetRxDeadTime(seconds)   (rx_connDeadTime = (seconds))
78
79 /* Time until we toss an idle connection */
80 EXT int rx_idleConnectionTime INIT(700);
81 /* Time until we toss a peer structure, after all connections using are gone */
82 EXT int rx_idlePeerTime INIT(60);
83
84 /* The file server is temporarily salvaging */
85 EXT int rx_tranquil INIT(0);
86
87 /* UDP rcv buffer size */
88 EXT int rx_UdpBufSize INIT(64 * 1024);
89 #define rx_GetMinUdpBufSize()   (64*1024)
90 #define rx_SetUdpBufSize(x)     (((x)>rx_GetMinUdpBufSize()) ? (rx_UdpBufSize = (x)):0)
91
92 /*
93  * Variables to control RX overload management. When the number of calls
94  * waiting for a thread exceed the threshold, new calls are aborted
95  * with the busy error. 
96  */
97 EXT int rx_BusyThreshold INIT(-1);      /* default is disabled */
98 EXT int rx_BusyError INIT(-1);
99
100 /* These definitions should be in one place */
101 #ifdef  AFS_SUN5_ENV
102 #define RX_CBUF_TIME    180     /* Check for packet deficit */
103 #define RX_REAP_TIME    90      /* Check for tossable connections every 90 seconds */
104 #else
105 #define RX_CBUF_TIME    120     /* Check for packet deficit */
106 #define RX_REAP_TIME    60      /* Check for tossable connections every 60 seconds */
107 #endif
108
109 #define RX_FAST_ACK_RATE 1      /* as of 3.4, ask for an ack every 
110                                  * other packet. */
111
112 EXT int rx_minWindow INIT(1);
113 EXT int rx_initReceiveWindow INIT(16);  /* how much to accept */
114 EXT int rx_maxReceiveWindow INIT(32);   /* how much to accept */
115 EXT int rx_initSendWindow INIT(8);
116 EXT int rx_maxSendWindow INIT(32);
117 EXT int rx_nackThreshold INIT(3);       /* Number NACKS to trigger congestion recovery */
118 EXT int rx_nDgramThreshold INIT(4);     /* Number of packets before increasing
119                                          * packets per datagram */
120 #define RX_MAX_FRAGS 4
121 EXT int rxi_nSendFrags INIT(RX_MAX_FRAGS);      /* max fragments in a datagram */
122 EXT int rxi_nRecvFrags INIT(RX_MAX_FRAGS);
123 EXT int rxi_OrphanFragSize INIT(512);
124
125 #define RX_MAX_DGRAM_PACKETS 6  /* max packets per jumbogram */
126
127 EXT int rxi_nDgramPackets INIT(RX_MAX_DGRAM_PACKETS);
128 /* allow n packets between soft acks - must be power of 2 -1, else change
129  * macro below */
130 EXT int rxi_SoftAckRate INIT(RX_FAST_ACK_RATE);
131 /* consume n packets before sending hard ack, should be larger than above,
132    but not absolutely necessary.  If it's smaller, than fast receivers will
133    send a soft ack, immediately followed by a hard ack. */
134 EXT int rxi_HardAckRate INIT(RX_FAST_ACK_RATE + 1);
135
136 /* EXT int rx_maxWindow INIT(15);   Temporary HACK:  transmit/receive window */
137
138 /* If window sizes become very variable (in terms of #packets), be
139  * sure that the sender can get back a hard acks without having to wait for
140  * some kind of timer event first (like a keep-alive, for instance).
141  * It might be kind of tricky, so it might be better to shrink the
142  * window size by reducing the packet size below the "natural" MTU. */
143
144 #define ACKHACK(p,r) { if (((p)->header.seq & (rxi_SoftAckRate))==0) (p)->header.flags |= RX_REQUEST_ACK; }
145
146 EXT int rx_nPackets INIT(100);  /* obsolete; use rx_extraPackets now */
147
148 /*
149  * pthreads thread-specific rx info support
150  * the rx_ts_info_t struct is meant to support all kinds of
151  * thread-specific rx data:
152  *
153  *  _FPQ member contains a thread-specific free packet queue
154  */
155 #ifdef AFS_PTHREAD_ENV
156 EXT pthread_key_t rx_ts_info_key;
157 typedef struct rx_ts_info_t {
158     struct {
159         struct rx_queue queue;
160         int len;                /* local queue length */
161         int delta;              /* number of new packets alloc'd locally since last sync w/ global queue */
162     } _FPQ;
163 } rx_ts_info_t;
164 EXT struct rx_ts_info_t * rx_ts_info_init();   /* init function for thread-specific data struct */
165 #define RX_TS_INFO_GET(ts_info_p) \
166     do { \
167         ts_info_p = (struct rx_ts_info_t*)pthread_getspecific(rx_ts_info_key); \
168         if (ts_info_p == NULL) { \
169             assert((ts_info_p = rx_ts_info_init()) != NULL); \
170         } \
171     } while(0)
172 #endif /* AFS_PTHREAD_ENV */
173
174
175 /* List of free packets */
176 /* in pthreads rx, free packet queue is now a two-tiered queueing system
177  * in which the first tier is thread-specific, and the second tier is
178  * a global free packet queue */
179 EXT struct rx_queue rx_freePacketQueue;
180 #define RX_FPQ_MARK_FREE(p) \
181     do { \
182         if ((p)->flags & RX_PKTFLAG_FREE) \
183             osi_Panic("rx packet already free\n"); \
184         (p)->flags |= RX_PKTFLAG_FREE; \
185     } while(0)
186 #define RX_FPQ_MARK_USED(p) \
187     do { \
188         if (!((p)->flags & RX_PKTFLAG_FREE)) \
189             osi_Panic("rx packet not free\n"); \
190         (p)->flags = 0;         /* clear RX_PKTFLAG_FREE, initialize the rest */ \
191         (p)->header.flags = 0; \
192     } while(0)
193 #define RX_PACKET_IOV_INIT(p) \
194     do { \
195         (p)->wirevec[0].iov_base = (char *)((p)->wirehead); \
196         (p)->wirevec[0].iov_len = RX_HEADER_SIZE; \
197         (p)->wirevec[1].iov_base = (char *)((p)->localdata); \
198         (p)->wirevec[1].iov_len = RX_FIRSTBUFFERSIZE; \
199     } while(0)
200 #define RX_PACKET_IOV_FULLINIT(p) \
201     do { \
202         (p)->wirevec[0].iov_base = (char *)((p)->wirehead); \
203         (p)->wirevec[0].iov_len = RX_HEADER_SIZE; \
204         (p)->wirevec[1].iov_base = (char *)((p)->localdata); \
205         (p)->wirevec[1].iov_len = RX_FIRSTBUFFERSIZE; \
206         (p)->niovecs = 2; \
207         (p)->length = RX_FIRSTBUFFERSIZE; \
208     } while(0)
209 #ifdef RX_ENABLE_LOCKS
210 EXT afs_kmutex_t rx_freePktQ_lock;
211 #ifdef AFS_PTHREAD_ENV
212 #define RX_ENABLE_TSFPQ
213 EXT int rx_TSFPQGlobSize INIT(3); /* number of packets to transfer between global and local queues in one op */
214 EXT int rx_TSFPQLocalMax INIT(15); /* max number of packets on local FPQ before returning a glob to the global pool */
215 EXT int rx_TSFPQMaxProcs INIT(1); /* max number of threads expected */
216 EXT void rxi_MorePacketsTSFPQ(int apackets, int flush_global, int num_keep_local); /* more flexible packet alloc function */
217 #define RX_TS_FPQ_FLUSH_GLOBAL 1
218 #define RX_TS_FPQ_PULL_GLOBAL 1
219 /* compute the localmax and globsize values from rx_TSFPQMaxProcs and rx_nPackets.
220    arbitarily set local max so that all threads consume 90% of packets, if all local queues are full.
221    arbitarily set transfer glob size to 20% of max local packet queue length.
222    also set minimum values of 15 and 3. */
223 #define RX_TS_FPQ_COMPUTE_LIMITS \
224     do { \
225         register int newmax, newglob; \
226         newmax = (rx_nPackets * 9) / (10 * rx_TSFPQMaxProcs); \
227         newmax = (newmax >= 15) ? newmax : 15; \
228         newglob = newmax / 5; \
229         newglob = (newglob >= 3) ? newglob : 3; \
230         rx_TSFPQLocalMax = newmax; \
231         rx_TSFPQGlobSize = newglob; \
232     } while(0)
233 /* move packets from local (thread-specific) to global free packet queue.
234    rx_freePktQ_lock must be held. default is to move the difference between the current lenght, and the 
235    allowed max plus one extra glob. */
236 #define RX_TS_FPQ_LTOG(rx_ts_info_p) \
237     do { \
238         register int i; \
239         register struct rx_packet * p; \
240         register int tsize = (rx_ts_info_p)->_FPQ.len - rx_TSFPQLocalMax + rx_TSFPQGlobSize; \
241         for (i=0; i < tsize; i++) { \
242             p = queue_Last(&((rx_ts_info_p)->_FPQ), rx_packet); \
243             queue_Remove(p); \
244             queue_Prepend(&rx_freePacketQueue,p); \
245         } \
246         (rx_ts_info_p)->_FPQ.len -= tsize; \
247         rx_nFreePackets += tsize; \
248         if ((rx_ts_info_p)->_FPQ.delta) { \
249             rx_nPackets += (rx_ts_info_p)->_FPQ.delta; \
250             (rx_ts_info_p)->_FPQ.delta = 0; \
251             RX_TS_FPQ_COMPUTE_LIMITS; \
252         } \
253     } while(0)
254 /* same as above, except user has direct control over number to transfer */
255 #define RX_TS_FPQ_LTOG2(rx_ts_info_p,num_transfer) \
256     do { \
257         register int i; \
258         register struct rx_packet * p; \
259         for (i=0; i < (num_transfer); i++) { \
260             p = queue_Last(&((rx_ts_info_p)->_FPQ), rx_packet); \
261             queue_Remove(p); \
262             queue_Prepend(&rx_freePacketQueue,p); \
263         } \
264         (rx_ts_info_p)->_FPQ.len -= (num_transfer); \
265         rx_nFreePackets += (num_transfer); \
266         if ((rx_ts_info_p)->_FPQ.delta) { \
267             rx_nPackets += (rx_ts_info_p)->_FPQ.delta; \
268             (rx_ts_info_p)->_FPQ.delta = 0; \
269             RX_TS_FPQ_COMPUTE_LIMITS; \
270         } \
271     } while(0)
272 /* move packets from global to local (thread-specific) free packet queue.
273    rx_freePktQ_lock must be held. */
274 #define RX_TS_FPQ_GTOL(rx_ts_info_p) \
275     do { \
276         register int i; \
277         register struct rx_packet * p; \
278         for (i=0; (i < rx_TSFPQGlobSize) && queue_IsNotEmpty(&rx_freePacketQueue); i++) { \
279             p = queue_First(&rx_freePacketQueue, rx_packet); \
280             queue_Remove(p); \
281             queue_Append(&((rx_ts_info_p)->_FPQ),p); \
282         } \
283         (rx_ts_info_p)->_FPQ.len += i; \
284         rx_nFreePackets -= i; \
285     } while(0)
286 /* checkout a packet from the thread-specific free packet queue */
287 #define RX_TS_FPQ_CHECKOUT(rx_ts_info_p,p) \
288     do { \
289         (p) = queue_First(&((rx_ts_info_p)->_FPQ), rx_packet); \
290         queue_Remove(p); \
291         RX_FPQ_MARK_USED(p); \
292         (rx_ts_info_p)->_FPQ.len--; \
293     } while(0)
294 /* check a packet into the thread-specific free packet queue */
295 #define RX_TS_FPQ_CHECKIN(rx_ts_info_p,p) \
296     do { \
297         queue_Prepend(&((rx_ts_info_p)->_FPQ), (p)); \
298         RX_FPQ_MARK_FREE(p); \
299         (rx_ts_info_p)->_FPQ.len++; \
300     } while(0)
301 #endif /* AFS_PTHREAD_ENV */
302 #endif /* RX_ENABLE_LOCKS */
303
304 /* Number of free packets */
305 EXT int rx_nFreePackets INIT(0);
306 EXT int rxi_NeedMorePackets INIT(0);
307 EXT int rx_nWaiting INIT(0);
308 EXT int rx_nWaited INIT(0);
309 EXT int rx_packetReclaims INIT(0);
310
311 /* largest packet which we can safely receive, initialized to AFS 3.2 value
312  * This is provided for backward compatibility with peers which may be unable
313  * to swallow anything larger. THIS MUST NEVER DECREASE WHILE AN APPLICATION
314  * IS RUNNING! */
315 EXT afs_uint32 rx_maxReceiveSize INIT(OLD_MAX_PACKET_SIZE * RX_MAX_FRAGS +
316                                       UDP_HDR_SIZE * (RX_MAX_FRAGS - 1));
317
318 /* this is the maximum packet size that the user wants us to receive */
319 /* this is set by rxTune if required */
320 EXT afs_uint32 rx_maxReceiveSizeUser INIT(0xffffffff);
321
322 /* rx_MyMaxSendSize is the size of the largest packet we will send,
323  * including the RX header. Just as rx_maxReceiveSize is the
324  * max we will receive, including the rx header.
325  */
326 EXT afs_uint32 rx_MyMaxSendSize INIT(8588);
327
328 /* Maximum size of a jumbo datagram we can receive */
329 EXT afs_uint32 rx_maxJumboRecvSize INIT(RX_MAX_PACKET_SIZE);
330
331 /* need this to permit progs to run on AIX systems */
332 EXT int (*rxi_syscallp) (afs_uint32 a3, afs_uint32 a4, void *a5)INIT(0);
333
334 /* List of free queue entries */
335 EXT struct rx_serverQueueEntry *rx_FreeSQEList INIT(0);
336 #ifdef  RX_ENABLE_LOCKS
337 EXT afs_kmutex_t freeSQEList_lock;
338 #endif
339
340 /* List of free call structures */
341 EXT struct rx_queue rx_freeCallQueue;
342 #ifdef  RX_ENABLE_LOCKS
343 EXT afs_kmutex_t rx_freeCallQueue_lock;
344 #endif
345 EXT afs_int32 rxi_nCalls INIT(0);
346
347 /* Port requested at rx_Init.  If this is zero, the actual port used will be different--but it will only be used for client operations.  If non-zero, server provided services may use the same port. */
348 EXT u_short rx_port;
349
350 #if !defined(KERNEL) && !defined(AFS_PTHREAD_ENV)
351 /* 32-bit select Mask for rx_Listener. */
352 EXT fd_set rx_selectMask;
353 EXT int rx_maxSocketNumber;     /* Maximum socket number in the select mask. */
354 /* Minumum socket number in the select mask. */
355 EXT int rx_minSocketNumber INIT(0x7fffffff);
356 #endif
357
358 /* This is actually the minimum number of packets that must remain free,
359     overall, immediately after a packet of the requested class has been
360     allocated.  *WARNING* These must be assigned with a great deal of care.
361     In order, these are receive quota, send quota, special quota, receive
362     continuation quota, and send continuation quota. */
363 #define RX_PACKET_QUOTAS {1, 10, 0, 1, 10}
364 /* value large enough to guarantee that no allocation fails due to RX_PACKET_QUOTAS.
365    Make it a little bigger, just for fun */
366 #define RX_MAX_QUOTA    15      /* part of min packet computation */
367 EXT int rx_packetQuota[RX_N_PACKET_CLASSES] INIT(RX_PACKET_QUOTAS);
368 EXT int meltdown_1pkt INIT(1);  /* prefer to schedule single-packet calls */
369 EXT int rxi_doreclaim INIT(1);  /* if discard one packet, discard all */
370 EXT int rxi_md2cnt INIT(0);     /* counter of skipped calls */
371 EXT int rxi_2dchoice INIT(1);   /* keep track of another call to schedule */
372
373 /* quota system: each attached server process must be able to make
374     progress to avoid system deadlock, so we ensure that we can always
375     handle the arrival of the next unacknowledged data packet for an
376     attached call.  rxi_dataQuota gives the max # of packets that must be
377     reserved for active calls for them to be able to make progress, which is
378     essentially enough to queue up a window-full of packets (the first packet
379     may be missing, so these may not get read) + the # of packets the thread
380     may use before reading all of its input (# free must be one more than send
381     packet quota).  Thus, each thread allocates rx_maxReceiveWindow+1 (max
382     queued packets) + an extra for sending data.  The system also reserves
383     RX_MAX_QUOTA (must be more than RX_PACKET_QUOTA[i], which is 10), so that
384     the extra packet can be sent (must be under the system-wide send packet
385     quota to send any packets) */
386 /* # to reserve so that thread with input can still make calls (send packets)
387    without blocking */
388 EXT int rxi_dataQuota INIT(RX_MAX_QUOTA);       /* packets to reserve for active threads */
389
390 EXT afs_int32 rxi_availProcs INIT(0);   /* number of threads in the pool */
391 EXT afs_int32 rxi_totalMin INIT(0);     /* Sum(minProcs) forall services */
392 EXT afs_int32 rxi_minDeficit INIT(0);   /* number of procs needed to handle all minProcs */
393
394 EXT int rx_nextCid;             /* Next connection call id */
395 EXT int rx_epoch;               /* Initialization time of rx */
396 #ifdef  RX_ENABLE_LOCKS
397 EXT afs_kcondvar_t rx_waitingForPackets_cv;
398 #endif
399 EXT char rx_waitingForPackets;  /* Processes set and wait on this variable when waiting for packet buffers */
400
401 EXT struct rx_stats rx_stats;
402
403 EXT struct rx_peer **rx_peerHashTable;
404 EXT struct rx_connection **rx_connHashTable;
405 EXT struct rx_connection *rx_connCleanup_list INIT(0);
406 EXT afs_uint32 rx_hashTableSize INIT(257);      /* Prime number */
407 #ifdef RX_ENABLE_LOCKS
408 EXT afs_kmutex_t rx_peerHashTable_lock;
409 EXT afs_kmutex_t rx_connHashTable_lock;
410 #endif /* RX_ENABLE_LOCKS */
411
412 #define CONN_HASH(host, port, cid, epoch, type) ((((cid)>>RX_CIDSHIFT)%rx_hashTableSize))
413
414 #define PEER_HASH(host, port)  ((host ^ port) % rx_hashTableSize)
415
416 /* Forward definitions of internal procedures */
417 #define rxi_ChallengeOff(conn)  rxevent_Cancel((conn)->challengeEvent, (struct rx_call*)0, 0);
418 #define rxi_KeepAliveOff(call) rxevent_Cancel((call)->keepAliveEvent, call, RX_CALL_REFCOUNT_ALIVE)
419
420 #define rxi_AllocSecurityObject() (struct rx_securityClass *) rxi_Alloc(sizeof(struct rx_securityClass))
421 #define rxi_FreeSecurityObject(obj) rxi_Free(obj, sizeof(struct rx_securityClass))
422 #define rxi_AllocService()      (struct rx_service *) rxi_Alloc(sizeof(struct rx_service))
423 #define rxi_FreeService(obj)    rxi_Free(obj, sizeof(struct rx_service))
424 #define rxi_AllocPeer()         (struct rx_peer *) rxi_Alloc(sizeof(struct rx_peer))
425 #define rxi_FreePeer(peer)      rxi_Free(peer, sizeof(struct rx_peer))
426 #define rxi_AllocConnection()   (struct rx_connection *) rxi_Alloc(sizeof(struct rx_connection))
427 #define rxi_FreeConnection(conn) (rxi_Free(conn, sizeof(struct rx_connection)))
428
429 #ifdef RXDEBUG
430 /* Some debugging stuff */
431 EXT FILE *rx_debugFile;         /* Set by the user to a stdio file for debugging output */
432 EXT FILE *rxevent_debugFile;    /* Set to an stdio descriptor for event logging to that file */
433
434 #define rx_Log rx_debugFile
435 #define dpf(args) if (rx_debugFile) rxi_DebugPrint args; else
436 #define rx_Log_event rxevent_debugFile
437
438 EXT char *rx_packetTypes[RX_N_PACKET_TYPES] INIT(RX_PACKET_TYPES);      /* Strings defined in rx.h */
439
440 #ifndef KERNEL
441 /*
442  * Counter used to implement connection specific data
443  */
444 EXT int rxi_keyCreate_counter INIT(0);
445 /*
446  * Array of function pointers used to destory connection specific data
447  */
448 EXT rx_destructor_t *rxi_keyCreate_destructor INIT(NULL);
449 #ifdef RX_ENABLE_LOCKS
450 EXT afs_kmutex_t rxi_keyCreate_lock;
451 #endif /* RX_ENABLE_LOCKS */
452 #endif /* !KERNEL */
453
454 #else
455 #define dpf(args)
456 #endif /* RXDEBUG */
457
458 /*
459  * SERVER ONLY: Threshholds used to throttle error replies to looping
460  * clients. When consecutive calls are aborting with the same error, the
461  * server throttles the client by waiting before sending error messages.
462  * Disabled if abort thresholds are zero.
463  */
464 EXT int rxi_connAbortThreshhold INIT(0);
465 EXT int rxi_connAbortDelay INIT(3000);
466 EXT int rxi_callAbortThreshhold INIT(0);
467 EXT int rxi_callAbortDelay INIT(3000);
468
469 /*
470  * Thread specific thread ID used to implement LWP_Index().
471  */
472
473 #if defined(AFS_PTHREAD_ENV)
474 EXT int rxi_fcfs_thread_num INIT(0);
475 EXT pthread_key_t rx_thread_id_key;
476 /* keep track of pthread numbers - protected by rx_stats_mutex, 
477    except in rx_Init() before mutex exists! */
478 EXT int rxi_pthread_hinum INIT(0);
479 #else
480 #define rxi_fcfs_thread_num (0)
481 #endif
482
483 #if defined(RX_ENABLE_LOCKS)
484 EXT afs_kmutex_t rx_stats_mutex;        /* used to activate stats gathering */
485 #endif
486
487 EXT int rx_enable_stats INIT(0);
488
489 /*
490  * Set this flag to enable the listener thread to trade places with an idle
491  * worker thread to move the context switch from listener to worker out of
492  * the request path.
493  */
494 EXT int rx_enable_hot_thread INIT(0);
495
496 #endif /* AFS_RX_GLOBALS_H */