Whamcloud - gitweb
b=16098
[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 [sun.com URL with a
20  * copy of GPLv2].
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_DARWIN_KP30__
38 #define __LIBCFS_DARWIN_KP30__
39
40 #ifndef __LIBCFS_KP30_H__
41 #error Do not #include this file directly. #include <libcfs/libcfs.h> instead
42 #endif
43
44 #ifdef __KERNEL__
45
46 #include <sys/types.h>
47 #include <sys/malloc.h>
48 #include <sys/systm.h>
49 #include <mach/mach_types.h>
50 #include <string.h>
51 #include <sys/file.h>
52 #include <sys/conf.h>
53 #include <miscfs/devfs/devfs.h>
54 #include <stdarg.h>
55
56 #include <libcfs/darwin/darwin-lock.h>
57 #include <libcfs/darwin/darwin-prim.h>
58 #include <lnet/lnet.h>
59
60 #define our_cond_resched() cfs_schedule_timeout(CFS_TASK_INTERRUPTIBLE, 1)
61
62 #ifdef CONFIG_SMP
63 #define LASSERT_SPIN_LOCKED(lock) do {} while(0) /* XXX */
64 #else
65 #define LASSERT_SPIN_LOCKED(lock) do {} while(0)
66 #endif
67 #define LASSERT_SEM_LOCKED(sem) do {} while(0) /* XXX */
68
69 #define LIBCFS_PANIC(msg) panic(msg)
70 #error libcfs_register_panic_notifier() missing
71 #error libcfs_unregister_panic_notifier() missing
72
73 /* --------------------------------------------------------------------- */
74
75 #define PORTAL_SYMBOL_REGISTER(x)               cfs_symbol_register(#x, &x)
76 #define PORTAL_SYMBOL_UNREGISTER(x)             cfs_symbol_unregister(#x)
77
78 #define PORTAL_SYMBOL_GET(x)                    ((typeof(&x))cfs_symbol_get(#x))
79 #define PORTAL_SYMBOL_PUT(x)                    cfs_symbol_put(#x)
80
81 #define PORTAL_MODULE_USE                       do{int i = 0; i++;}while(0)
82 #define PORTAL_MODULE_UNUSE                     do{int i = 0; i--;}while(0)
83
84 #define num_online_cpus()                       cfs_online_cpus()
85
86 /******************************************************************************/
87 /* XXX Liang: There is no module parameter supporting in OSX */
88 #define CFS_MODULE_PARM(name, t, type, perm, desc)
89
90 #define CFS_SYSFS_MODULE_PARM    0 /* no sysfs access to module parameters */
91 /******************************************************************************/
92
93 #else  /* !__KERNEL__ */
94 # include <stdio.h>
95 # include <stdlib.h>
96 # include <stdint.h>
97 # include <unistd.h>
98 # include <time.h>
99 # include <machine/limits.h>
100 # include <sys/types.h>
101 #endif
102
103 #define BITS_PER_LONG   LONG_BIT
104 /******************************************************************************/
105 /* Light-weight trace
106  * Support for temporary event tracing with minimal Heisenberg effect. */
107 #define LWT_SUPPORT  0
108
109 typedef struct {
110         long long   lwte_when;
111         char       *lwte_where;
112         void       *lwte_task;
113         long        lwte_p1;
114         long        lwte_p2;
115         long        lwte_p3;
116         long        lwte_p4;
117 } lwt_event_t;
118
119 # define LWT_EVENT(p1,p2,p3,p4)     /* no lwt implementation yet */
120
121 /* -------------------------------------------------------------------------- */
122
123 #define IOCTL_LIBCFS_TYPE struct libcfs_ioctl_data
124
125 #define LPU64 "%llu"
126 #define LPD64 "%lld"
127 #define LPX64 "%#llx"
128 #define LPSZ  "%lu"
129 #define LPSSZ "%ld"
130 # define LI_POISON ((int)0x5a5a5a5a)
131 # define LL_POISON ((long)0x5a5a5a5a)
132 # define LP_POISON ((void *)(long)0x5a5a5a5a)
133
134 #endif