Whamcloud - gitweb
Update copyrights on source files changed since 2010-02-15.
[fs/lustre-release.git] / libcfs / include / libcfs / darwin / 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 (c) 2008, 2010, Oracle and/or its affiliates. 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_DARWIN_KP30__
38 #define __LIBCFS_DARWIN_KP30__
39
40 #ifdef __KERNEL__
41
42 #include <sys/types.h>
43 #include <sys/malloc.h>
44 #include <sys/systm.h>
45 #include <mach/mach_types.h>
46 #include <string.h>
47 #include <sys/file.h>
48 #include <sys/conf.h>
49 #include <miscfs/devfs/devfs.h>
50 #include <stdarg.h>
51
52 #include <libcfs/darwin/darwin-lock.h>
53 #include <libcfs/darwin/darwin-prim.h>
54 #include <lnet/lnet.h>
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 #define LASSERT_SEM_LOCKED(sem) do {} while(0) /* XXX */
62
63 #define LIBCFS_PANIC(msg) panic(msg)
64 #error libcfs_register_panic_notifier() missing
65 #error libcfs_unregister_panic_notifier() missing
66
67 /* --------------------------------------------------------------------- */
68
69 #define PORTAL_SYMBOL_REGISTER(x)               cfs_symbol_register(#x, &x)
70 #define PORTAL_SYMBOL_UNREGISTER(x)             cfs_symbol_unregister(#x)
71
72 #define PORTAL_SYMBOL_GET(x)                    ((typeof(&x))cfs_symbol_get(#x))
73 #define PORTAL_SYMBOL_PUT(x)                    cfs_symbol_put(#x)
74
75 #define PORTAL_MODULE_USE                       do{int i = 0; i++;}while(0)
76 #define PORTAL_MODULE_UNUSE                     do{int i = 0; i--;}while(0)
77
78 #define num_online_cpus()                       cfs_online_cpus()
79
80 /******************************************************************************/
81 /* XXX Liang: There is no module parameter supporting in OSX */
82 #define CFS_MODULE_PARM(name, t, type, perm, desc)
83
84 #define CFS_SYSFS_MODULE_PARM    0 /* no sysfs access to module parameters */
85 /******************************************************************************/
86
87 #else  /* !__KERNEL__ */
88 # include <stdio.h>
89 # include <stdlib.h>
90 # include <stdint.h>
91 # include <unistd.h>
92 # include <time.h>
93 # include <machine/limits.h>
94 # include <sys/types.h>
95 #endif
96
97 #define BITS_PER_LONG   LONG_BIT
98 /******************************************************************************/
99 /* Light-weight trace
100  * Support for temporary event tracing with minimal Heisenberg effect. */
101 #define LWT_SUPPORT  0
102
103 typedef struct {
104         long long   lwte_when;
105         char       *lwte_where;
106         void       *lwte_task;
107         long        lwte_p1;
108         long        lwte_p2;
109         long        lwte_p3;
110         long        lwte_p4;
111 } lwt_event_t;
112
113 # define LWT_EVENT(p1,p2,p3,p4)     /* no lwt implementation yet */
114
115 /* -------------------------------------------------------------------------- */
116
117 #define IOCTL_LIBCFS_TYPE struct libcfs_ioctl_data
118
119 #define LPU64 "%llu"
120 #define LPD64 "%lld"
121 #define LPX64 "%#llx"
122 # define LI_POISON ((int)0x5a5a5a5a)
123 # define LL_POISON ((long)0x5a5a5a5a)
124 # define LP_POISON ((void *)(long)0x5a5a5a5a)
125
126 /*
127  * long_ptr_t & ulong_ptr_t, same to "long" for gcc
128  */
129 # define LPLU "%lu"
130 # define LPLD "%ld"
131 # define LPLX "%#lx"
132
133 /*
134  * pid_t
135  */
136 # define LPPID "%d"
137
138 #endif