panic generation update
[openafs.git] / src / rx / rx_kernel.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 /* Definitions specific to the in-kernel implementation of Rx, for in-kernel clients */
11
12 #ifndef __RX_KERNEL_INCL_
13 #define __RX_KERNEL_INCL_   1
14
15 #define osi_Alloc afs_osi_Alloc
16 #define osi_Free  afs_osi_Free
17
18 #ifndef AFS_DARWIN80_ENV
19 #define rxi_ReScheduleEvents    0       /* Not needed by kernel */
20 #endif
21
22 /* This is a no-op, because the kernel server procs are pre-allocated */
23 #define rxi_StartServerProcs(x) (void)0
24
25 /* Socket stuff */
26 typedef struct socket *osi_socket;
27 #define OSI_NULLSOCKET  ((osi_socket) 0)
28
29 #if (!defined(AFS_GLOBAL_SUNLOCK) && !defined(RX_ENABLE_LOCKS))
30 #include "afs/icl.h"
31 #include "afs/afs_trace.h"
32 #endif
33 #define osi_rxSleep(a)  afs_Trace2(afs_iclSetp, CM_TRACE_RXSLEEP, \
34         ICL_TYPE_STRING, __FILE__, ICL_TYPE_INT32, __LINE__); afs_osi_Sleep(a)
35 #define osi_rxWakeup(a) if (afs_osi_Wakeup(a) == 0) afs_Trace2(afs_iclSetp, \
36         CM_TRACE_RXWAKE, ICL_TYPE_STRING, __FILE__, ICL_TYPE_INT32, __LINE__)
37
38 extern int osi_utoa(char *buf, size_t len, unsigned long val);
39 #define osi_Assert(exp) (void)((exp) || (osi_AssertFailK( #exp , __FILE__, __LINE__), 0))
40
41 #define osi_Msg printf)(
42 #define osi_VMsg vprintf)(
43
44 #define osi_YieldIfPossible()
45 #define osi_WakeupAndYieldIfPossible(x)     rx_Wakeup(x)
46
47 #if !defined(AFS_DARWIN80_ENV) || defined(UKERNEL)
48 # ifdef UKERNEL
49 # define rx_ifnet_t struct usr_ifnet *
50 # define rx_ifaddr_t struct usr_ifaddr *
51 # else
52 # define rx_ifnet_t struct ifnet *
53 # define rx_ifaddr_t struct ifaddr *
54 #endif
55 #define rx_ifnet_mtu(x) (x)->if_mtu
56 #define rx_ifnet_flags(x) (x?(x)->if_flags:0)
57 #ifdef AFS_OBSD46_ENV
58 #define rx_ifaddr_withnet(x) ifa_ifwithnet(x, 0)
59 #else
60 #define rx_ifaddr_withnet(x) ifa_ifwithnet(x)
61 #endif
62 #define rx_ifnet_metric(x) (x?(x)->if_data.ifi_metric:0)
63 #define rx_ifaddr_ifnet(x) (x?(x)->ifa_ifp:0)
64 #define rx_ifaddr_address_family(x) (x)->ifa_addr->sa_family
65 #define rx_ifaddr_address(x, y, z) memcpy(y, (x)->ifa_addr, z)
66 #define rx_ifaddr_netmask(x, y, z) memcpy(y, (x)->ifa_netmask, z)
67 #define rx_ifaddr_dstaddress(x, y, z) memcpy(y, (x)->ifa_dstaddr, z)
68 #else
69 #define rx_ifnet_t ifnet_t
70 #define rx_ifaddr_t ifaddr_t
71 #define rx_ifaddr_withnet(x) ifaddr_withnet(x)
72 #define rx_ifnet_mtu(x) ifnet_mtu(x)
73 #define rx_ifnet_flags(x) ifnet_flags(x)
74 #define rx_ifnet_metric(x) ifnet_metric(x)
75 #define rx_ifaddr_ifnet(x) ifaddr_ifnet(x)
76 #define rx_ifaddr_address_family(x) ifaddr_address_family(x)
77 #define rx_ifaddr_address(x, y, z) ifaddr_address(x, y, z)
78 #define rx_ifaddr_netmask(x, y, z) ifaddr_netmask(x, y, z)
79 #define rx_ifaddr_dstaddress(x, y, z) ifaddr_dstaddress(x, y, z)
80 #endif
81
82 #endif /* __RX_KERNEL_INCL_ */