Whamcloud - gitweb
i=20339
[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 #ifdef __KERNEL__
41
42 /* Module parameter support */
43 #define CFS_MODULE_PARM(name, t, type, perm, desc)
44
45 #define CFS_SYSFS_MODULE_PARM    0 /* no sysfs access to module parameters */
46
47 #define cond_resched our_cond_resched
48 void our_cond_resched();
49
50 #define LASSERT_SPIN_LOCKED(lock) do {} while(0)
51 #define LASSERT_SEM_LOCKED(sem) LASSERT(down_trylock(sem) != 0)
52
53 /* winnt panic */
54 void libcfs_panic(char *msg);
55 #define LIBCFS_PANIC(msg) libcfs_panic(msg)
56 void libcfs_register_panic_notifier();
57 void libcfs_unregister_panic_notifier();
58
59
60 #define cfs_work_struct_t WORK_QUEUE_ITEM
61 #define cfs_prepare_work(tq, routine, contex)
62 #define cfs_schedule_work(tq)
63 #define cfs_get_work_data(type,field,data)   (data)
64
65 /* ------------------------------------------------------------------- */
66
67 #define PORTAL_SYMBOL_REGISTER(x)               cfs_symbol_register(#x, &x)
68 #define PORTAL_SYMBOL_UNREGISTER(x)             cfs_symbol_unregister(#x)
69
70 #define PORTAL_SYMBOL_GET(x)                    (cfs_symbol_get(#x))
71 #define PORTAL_SYMBOL_PUT(x)                    cfs_symbol_put(#x)
72
73 #define PORTAL_MODULE_USE                       do{}while(0)
74 #define PORTAL_MODULE_UNUSE                     do{}while(0)
75
76 #define printk                                  DbgPrint
77 #define ptintf                                  DbgPrint
78 #define printk_ratelimit()                      (FALSE)
79 #define vprintk(f, a)                           vDbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, f, a)
80                                                 /* vDbgPrintEx only available on xp and later OS */
81 #define cfs_assert                              ASSERT
82
83 #else  /* !__KERNEL__ */
84
85 # include <stdio.h>
86 # include <stdlib.h>
87 #ifdef __CYGWIN__
88 # include <cygwin-ioctl.h>
89 #endif
90 # include <time.h>
91 #include <crtdbg.h>
92
93 #define cfs_assert     _ASSERT
94
95 #ifndef get_cpu
96 #define cfs_get_cpu() smp_processor_id()
97 #define cfs_put_cpu() do { } while (0)
98 #else
99 #define cfs_get_cpu() get_cpu()
100 #define cfs_put_cpu() put_cpu()
101 #endif
102
103 #endif /* End of !__KERNEL__ */
104
105 /******************************************************************************/
106 /* Light-weight trace
107  * Support for temporary event tracing with minimal Heisenberg effect. */
108 #define LWT_SUPPORT  0
109
110 /* kernel hasn't defined this? */
111 typedef struct {
112         __s64      lwte_when;
113         char       *lwte_where;
114         void       *lwte_task;
115         long_ptr_t        lwte_p1;
116         long_ptr_t        lwte_p2;
117         long_ptr_t        lwte_p3;
118         long_ptr_t        lwte_p4;
119 # if BITS_PER_LONG > 32
120         long_ptr_t        lwte_pad;
121 # endif
122 } lwt_event_t;
123
124
125 # define LWT_EVENT(p1,p2,p3,p4)
126
127
128 /* ------------------------------------------------------------------ */
129
130 #define IOCTL_LIBCFS_TYPE long_ptr_t
131
132 #ifdef __CYGWIN__
133 # ifndef BITS_PER_LONG
134 #  if (~0UL) == 0xffffffffUL
135 #   define BITS_PER_LONG 32
136 #  else
137 #   define BITS_PER_LONG 64
138 #  endif
139 # endif
140 #endif
141
142 #if BITS_PER_LONG > 32
143 # define LI_POISON ((int)0x5a5a5a5a5a5a5a5a)
144 # define LL_POISON ((long_ptr_t)0x5a5a5a5a5a5a5a5a)
145 # define LP_POISON ((char *)(long_ptr_t)0x5a5a5a5a5a5a5a5a)
146 #else
147 # define LI_POISON ((int)0x5a5a5a5a)
148 # define LL_POISON ((long_ptr_t)0x5a5a5a5a)
149 # define LP_POISON ((char *)(long_ptr_t)0x5a5a5a5a)
150 #endif
151
152 #define LPF64 "%I64d"
153 #define LPU64 "%I64u"
154 #define LPD64 "%I64d"
155 #define LPX64 "%#I64x"
156 #define LPSZ  "%lu"
157 #define LPSSZ "%ld"
158
159 /*
160  * long_ptr_t & ulong_ptr_t, same to "long" for linux
161  */
162 #if _x86_
163 # define LPLU "%u"
164 # define LPLD "%d"
165 # define LPLX "%#x"
166 # define LPPID "%d"
167 #else
168 # define LPLU "%Ii64u"
169 # define LPLD "%I64d"
170 # define LPLX "%#I64x"
171 # define LPPID "%d"
172 #endif
173
174 #endif