Whamcloud - gitweb
LU-4656 tests: Add MOUNT_FLAGS variable and rename MOUNTOPT
[fs/lustre-release.git] / libcfs / include / libcfs / posix / posix-wordsize.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  * Copyright (c) 2011, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * libcfs/include/libcfs/posix/posix-wordsize.h
37  *
38  * Wordsize related  defines for posix userspace.
39  *
40  * Author: Robert Read <rread@sun.com>
41  */
42
43 #ifndef __LIBCFS_LINUX_KP30_H__
44 #define __LIBCFS_LINUX_KP30_H__
45
46 #if defined(__CYGWIN__)
47 # include <cygwin-ioctl.h>
48 #endif
49 #ifdef HAVE_SYS_IOCTL_H
50 # include <sys/ioctl.h>
51 #endif
52 #ifndef _IOWR
53 # include "ioctl.h"
54 #endif
55
56 # define CFS_MODULE_PARM(name, t, type, perm, desc)
57 #define symbol_get(x) inter_module_get(#x)
58 #define symbol_put(x) inter_module_put(#x)
59
60 #ifdef __CYGWIN__
61 # ifndef BITS_PER_LONG
62 #  if (~0UL) == 0xffffffffUL
63 #   define BITS_PER_LONG 32
64 #  else
65 #   define BITS_PER_LONG 64
66 #  endif
67 # endif
68 #else 
69 #  define BITS_PER_LONG __WORDSIZE
70 #endif
71
72 #define IOCTL_LIBCFS_TYPE long
73
74 #if BITS_PER_LONG > 32
75 # define LI_POISON ((int)0x5a5a5a5a5a5a5a5a)
76 # define LL_POISON ((long)0x5a5a5a5a5a5a5a5a)
77 # define LP_POISON ((void *)(long)0x5a5a5a5a5a5a5a5a)
78 #else
79 # define LI_POISON ((int)0x5a5a5a5a)
80 # define LL_POISON ((long)0x5a5a5a5a)
81 # define LP_POISON ((void *)(long)0x5a5a5a5a)
82 #endif
83
84 # define LPU64 "%llu"
85 # define LPD64 "%lld"
86 # define LPX64 "%#llx"
87 # define LPX64i "%llx"
88 # define LPO64 "%#llo"
89 # define LPF64 "ll"
90
91 /*
92  * long_ptr_t & ulong_ptr_t, same to "long" for gcc
93  */
94 # define LPLU "%lu"
95 # define LPLD "%ld"
96 # define LPLX "%#lx"
97
98 /*
99  * pid_t
100  */
101 # define LPPID "%d"
102
103 #endif