Whamcloud - gitweb
b=16098
[fs/lustre-release.git] / libcfs / include / libcfs / winnt / kp30.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef __LIBCFS_WINNT_KP30_H__
38 #define __LIBCFS_WINNT_KP30_H__
39
40 #include <libcfs/winnt/portals_compat25.h>
41 #include <lnet/types.h>
42
43 #ifdef __KERNEL__
44
45 /* Module parameter support */
46 #define CFS_MODULE_PARM(name, t, type, perm, desc)
47
48 #define CFS_SYSFS_MODULE_PARM    0 /* no sysfs access to module parameters */
49
50
51 static inline void our_cond_resched()
52 {
53     schedule_timeout(1i64);
54 }
55
56 #ifdef CONFIG_SMP
57 #define LASSERT_SPIN_LOCKED(lock) do {} while(0) /* XXX */
58 #else
59 #define LASSERT_SPIN_LOCKED(lock) do {} while(0)
60 #endif
61
62 #error Need a winnt version of panic()
63 #define LIBCFS_PANIC(msg) KeBugCheckEx(msg, (ULONG_PTR)NULL, (ULONG_PTR)NULL, (ULONG_PTR)NULL, (ULONG_PTR)NULL)
64 #error libcfs_register_panic_notifier() missing
65 #error libcfs_unregister_panic_notifier() missing
66
67 #define cfs_work_struct_t WORK_QUEUE_ITEM
68 #define cfs_prepare_work(tq, routine, contex)
69 #define cfs_schedule_work(tq)
70 #define cfs_get_work_data(type,field,data)   (data)
71
72 /* ------------------------------------------------------------------- */
73
74 #define PORTAL_SYMBOL_REGISTER(x)               cfs_symbol_register(#x, &x)
75 #define PORTAL_SYMBOL_UNREGISTER(x)             cfs_symbol_unregister(#x)
76
77 #define PORTAL_SYMBOL_GET(x)                    (cfs_symbol_get(#x))
78 #define PORTAL_SYMBOL_PUT(x)                    cfs_symbol_put(#x)
79
80 #define PORTAL_MODULE_USE                       do{}while(0)
81 #define PORTAL_MODULE_UNUSE                     do{}while(0)
82
83 #define printk                                  DbgPrint
84 #define ptintf                                  DbgPrint
85
86 #else  /* !__KERNEL__ */
87
88 # include <stdio.h>
89 # include <stdlib.h>
90 #ifdef __CYGWIN__
91 # include <cygwin-ioctl.h>
92 #endif
93 # include <time.h>
94
95 #endif /* End of !__KERNEL__ */
96
97 /******************************************************************************/
98 /* Light-weight trace
99  * Support for temporary event tracing with minimal Heisenberg effect. */
100 #define LWT_SUPPORT  0
101
102 /* kernel hasn't defined this? */
103 typedef struct {
104         __s64      lwte_when;
105         char       *lwte_where;
106         void       *lwte_task;
107         long_ptr        lwte_p1;
108         long_ptr        lwte_p2;
109         long_ptr        lwte_p3;
110         long_ptr        lwte_p4;
111 # if BITS_PER_LONG > 32
112         long_ptr        lwte_pad;
113 # endif
114 } lwt_event_t;
115
116
117 # define LWT_EVENT(p1,p2,p3,p4)
118
119
120 /* ------------------------------------------------------------------ */
121
122 #define IOCTL_LIBCFS_TYPE long_ptr
123
124 #ifdef __CYGWIN__
125 # ifndef BITS_PER_LONG
126 #  if (~0UL) == 0xffffffffUL
127 #   define BITS_PER_LONG 32
128 #  else
129 #   define BITS_PER_LONG 64
130 #  endif
131 # endif
132 #endif
133
134 #if BITS_PER_LONG > 32
135 # define LI_POISON ((int)0x5a5a5a5a5a5a5a5a)
136 # define LL_POISON ((long_ptr)0x5a5a5a5a5a5a5a5a)
137 # define LP_POISON ((char *)(long_ptr)0x5a5a5a5a5a5a5a5a)
138 #else
139 # define LI_POISON ((int)0x5a5a5a5a)
140 # define LL_POISON ((long_ptr)0x5a5a5a5a)
141 # define LP_POISON ((char *)(long_ptr)0x5a5a5a5a)
142 #endif
143
144 #if defined(__x86_64__)
145 # define LPU64 "%I64u"
146 # define LPD64 "%I64d"
147 # define LPX64 "%I64x"
148 # define LPSZ  "%lu"
149 # define LPSSZ "%ld"
150 #elif (BITS_PER_LONG == 32 || __WORDSIZE == 32)
151 # define LPU64 "%I64u"
152 # define LPD64 "%I64d"
153 # define LPX64 "%I64x"
154 # define LPSZ  "%u"
155 # define LPSSZ "%d"
156 #elif (BITS_PER_LONG == 64 || __WORDSIZE == 64)
157 # define LPU64 "%I64u"
158 # define LPD64 "%I64d"
159 # define LPX64 "%I64x"
160 # define LPSZ  "%u"
161 # define LPSSZ "%d"
162 #endif
163 #ifndef LPU64
164 # error "No word size defined"
165 #endif
166
167 #endif