Whamcloud - gitweb
LU-5427 lbuild: Fix compilation with MPSS 3.3
[fs/lustre-release.git] / libcfs / include / libcfs / winnt / kp30.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  */
34
35 #ifndef __LIBCFS_WINNT_KP30_H__
36 #define __LIBCFS_WINNT_KP30_H__
37
38 #ifdef __KERNEL__
39
40 /* Module parameter support */
41 #define CFS_MODULE_PARM(name, t, type, perm, desc)
42
43 #define CFS_SYSFS_MODULE_PARM    0 /* no sysfs access to module parameters */
44
45
46 /* winnt panic */
47 void libcfs_panic(char *msg);
48 #define panic(msg) libcfs_panic(msg)
49 void libcfs_register_panic_notifier();
50 void libcfs_unregister_panic_notifier();
51
52
53 #define cfs_work_struct_t WORK_QUEUE_ITEM
54 #define cfs_schedule_work(tq)
55 #define cfs_get_work_data(type,field,data)   (data)
56
57 /* ------------------------------------------------------------------- */
58
59 #define PORTAL_SYMBOL_REGISTER(x)               cfs_symbol_register(#x, &x)
60 #define PORTAL_SYMBOL_UNREGISTER(x)             cfs_symbol_unregister(#x)
61
62 #define symbol_get(x)                    (cfs_symbol_get(#x))
63 #define symbol_put(x)                    cfs_symbol_put(#x)
64
65 #define try_module_get(THIS_MODULE)                       do{}while(0)
66 #define module_put(THIS_MODULE)                     do{}while(0)
67
68 #define printk                                  DbgPrint
69 #define ptintf                                  DbgPrint
70 #define printk_ratelimit()                      (FALSE)
71 #define vprintk(f, a)                           vDbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, f, a)
72                                                 /* vDbgPrintEx only available on xp and later OS */
73 #define cfs_assert                              ASSERT
74
75 #else  /* !__KERNEL__ */
76
77 # include <stdio.h>
78 # include <stdlib.h>
79 #ifdef __CYGWIN__
80 # include <cygwin-ioctl.h>
81 #endif
82 # include <time.h>
83 #include <crtdbg.h>
84
85 #define cfs_assert     _ASSERT
86
87 #ifndef get_cpu
88 #define get_cpu() smp_processor_id()
89 #define put_cpu() do { } while (0)
90 #else
91 #endif
92
93 #endif /* End of !__KERNEL__ */
94
95 #define IOCTL_LIBCFS_TYPE long_ptr_t
96
97 #ifdef __CYGWIN__
98 # ifndef BITS_PER_LONG
99 #  if (~0UL) == 0xffffffffUL
100 #   define BITS_PER_LONG 32
101 #  else
102 #   define BITS_PER_LONG 64
103 #  endif
104 # endif
105 #endif
106
107 #if BITS_PER_LONG > 32
108 # define LI_POISON ((int)0x5a5a5a5a5a5a5a5a)
109 # define LL_POISON ((long_ptr_t)0x5a5a5a5a5a5a5a5a)
110 # define LP_POISON ((char *)(long_ptr_t)0x5a5a5a5a5a5a5a5a)
111 #else
112 # define LI_POISON ((int)0x5a5a5a5a)
113 # define LL_POISON ((long_ptr_t)0x5a5a5a5a)
114 # define LP_POISON ((char *)(long_ptr_t)0x5a5a5a5a)
115 #endif
116
117 #define LPF64 "%I64d"
118 #define LPU64 "%I64u"
119 #define LPD64 "%I64d"
120 #define LPX64 "%#I64x"
121 #define LPO64 "%#I64o"
122
123 /*
124  * long_ptr_t & ulong_ptr_t, same to "long" for linux
125  */
126 #if _x86_
127 # define LPLU "%u"
128 # define LPLD "%d"
129 # define LPLX "%#x"
130 # define LPPID "%d"
131 #else
132 # define LPLU "%Ii64u"
133 # define LPLD "%I64d"
134 # define LPLX "%#I64x"
135 # define LPPID "%d"
136 #endif
137
138 #endif