Whamcloud - gitweb
Land b_head_libcfs onto HEAD (20080805_1722)
[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 #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 #define our_cond_resched() cfs_schedule_timeout(CFS_TASK_INTERRUPTIBLE, 1)
57
58 #ifdef CONFIG_SMP
59 #define LASSERT_SPIN_LOCKED(lock) do {} while(0) /* XXX */
60 #else
61 #define LASSERT_SPIN_LOCKED(lock) do {} while(0)
62 #endif
63 #define LASSERT_SEM_LOCKED(sem) do {} while(0) /* XXX */
64
65 #define LIBCFS_PANIC(msg) panic(msg)
66 #error libcfs_register_panic_notifier() missing
67 #error libcfs_unregister_panic_notifier() missing
68
69 /* --------------------------------------------------------------------- */
70
71 #define PORTAL_SYMBOL_REGISTER(x)               cfs_symbol_register(#x, &x)
72 #define PORTAL_SYMBOL_UNREGISTER(x)             cfs_symbol_unregister(#x)
73
74 #define PORTAL_SYMBOL_GET(x)                    ((typeof(&x))cfs_symbol_get(#x))
75 #define PORTAL_SYMBOL_PUT(x)                    cfs_symbol_put(#x)
76
77 #define PORTAL_MODULE_USE                       do{int i = 0; i++;}while(0)
78 #define PORTAL_MODULE_UNUSE                     do{int i = 0; i--;}while(0)
79
80 #define num_online_cpus()                       cfs_online_cpus()
81
82 /******************************************************************************/
83 /* XXX Liang: There is no module parameter supporting in OSX */
84 #define CFS_MODULE_PARM(name, t, type, perm, desc)
85
86 #define CFS_SYSFS_MODULE_PARM    0 /* no sysfs access to module parameters */
87 /******************************************************************************/
88
89 #else  /* !__KERNEL__ */
90 # include <stdio.h>
91 # include <stdlib.h>
92 # include <stdint.h>
93 # include <unistd.h>
94 # include <time.h>
95 # include <machine/limits.h>
96 # include <sys/types.h>
97 #endif
98
99 #define BITS_PER_LONG   LONG_BIT
100 /******************************************************************************/
101 /* Light-weight trace
102  * Support for temporary event tracing with minimal Heisenberg effect. */
103 #define LWT_SUPPORT  0
104
105 typedef struct {
106         long long   lwte_when;
107         char       *lwte_where;
108         void       *lwte_task;
109         long        lwte_p1;
110         long        lwte_p2;
111         long        lwte_p3;
112         long        lwte_p4;
113 } lwt_event_t;
114
115 # define LWT_EVENT(p1,p2,p3,p4)     /* no lwt implementation yet */
116
117 /* -------------------------------------------------------------------------- */
118
119 #define IOCTL_LIBCFS_TYPE struct libcfs_ioctl_data
120
121 #define LPU64 "%llu"
122 #define LPD64 "%lld"
123 #define LPX64 "%#llx"
124 #define LPSZ  "%lu"
125 #define LPSSZ "%ld"
126 # define LI_POISON ((int)0x5a5a5a5a)
127 # define LL_POISON ((long)0x5a5a5a5a)
128 # define LP_POISON ((void *)(long)0x5a5a5a5a)
129
130 #endif