Whamcloud - gitweb
b=16150
[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 #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_t        lwte_p1;
108         long_ptr_t        lwte_p2;
109         long_ptr_t        lwte_p3;
110         long_ptr_t        lwte_p4;
111 # if BITS_PER_LONG > 32
112         long_ptr_t        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_t
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_t)0x5a5a5a5a5a5a5a5a)
137 # define LP_POISON ((char *)(long_ptr_t)0x5a5a5a5a5a5a5a5a)
138 #else
139 # define LI_POISON ((int)0x5a5a5a5a)
140 # define LL_POISON ((long_ptr_t)0x5a5a5a5a)
141 # define LP_POISON ((char *)(long_ptr_t)0x5a5a5a5a)
142 #endif
143
144 #define LPF64 "%I64d"
145 #define LPU64 "%I64u"
146 #define LPD64 "%I64d"
147 #define LPX64 "%#I64x"
148 #define LPSZ  "%lu"
149 #define LPSSZ "%ld"
150
151 /*
152  * long_ptr_t & ulong_ptr_t, same to "long" for linux
153  */
154 #if _x86_
155 # define LPLU "%u"
156 # define LPLD "%d"
157 # define LPLX "%#x"
158 # define LPPID "%d"
159 #else
160 # define LPLU "%Ii64u"
161 # define LPLD "%I64d"
162 # define LPLX "%#I64x"
163 # define LPPID "%d"
164 #endif
165
166 #endif