Whamcloud - gitweb
b=17167 libcfs: ensure all libcfs exported symbols to have cfs_ prefix
[fs/lustre-release.git] / lnet / include / cygwin-ioctl.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  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  * lnet/include/cygwin-ioctl.h
37  *
38  * linux/ioctl.h for Linux by H.H. Bergman.
39  */
40
41 #ifndef _ASMI386_IOCTL_H
42 #define _ASMI386_IOCTL_H
43
44 /* ioctl command encoding: 32 bits total, command in lower 16 bits,
45  * size of the parameter structure in the lower 14 bits of the
46  * upper 16 bits.
47  * Encoding the size of the parameter structure in the ioctl request
48  * is useful for catching programs compiled with old versions
49  * and to avoid overwriting user space outside the user buffer area.
50  * The highest 2 bits are reserved for indicating the ``access mode''.
51  * NOTE: This limits the max parameter size to 16kB -1 !
52  */
53
54 /*
55  * The following is for compatibility across the various Linux
56  * platforms.  The i386 ioctl numbering scheme doesn't really enforce
57  * a type field.  De facto, however, the top 8 bits of the lower 16
58  * bits are indeed used as a type field, so we might just as well make
59  * this explicit here.  Please be sure to use the decoding macros
60  * below from now on.
61  */
62 #undef _IO
63 #undef _IOR
64 #undef _IOW
65 #undef _IOC
66 #undef IOC_IN
67 #undef IOC_OUT
68
69 #define _IOC_NRBITS     8
70 #define _IOC_TYPEBITS   8
71 #define _IOC_SIZEBITS   14
72 #define _IOC_DIRBITS    2
73
74 #define _IOC_NRMASK     ((1 << _IOC_NRBITS)-1)
75 #define _IOC_TYPEMASK   ((1 << _IOC_TYPEBITS)-1)
76 #define _IOC_SIZEMASK   ((1 << _IOC_SIZEBITS)-1)
77 #define _IOC_DIRMASK    ((1 << _IOC_DIRBITS)-1)
78
79 #define _IOC_NRSHIFT    0
80 #define _IOC_TYPESHIFT  (_IOC_NRSHIFT+_IOC_NRBITS)
81 #define _IOC_SIZESHIFT  (_IOC_TYPESHIFT+_IOC_TYPEBITS)
82 #define _IOC_DIRSHIFT   (_IOC_SIZESHIFT+_IOC_SIZEBITS)
83
84 /*
85  * Direction bits.
86  */
87 #define _IOC_NONE       0U
88 #define _IOC_WRITE      1U
89 #define _IOC_READ       2U
90
91 #define _IOC(dir,type,nr,size) \
92         (((dir)  << _IOC_DIRSHIFT) | \
93          ((type) << _IOC_TYPESHIFT) | \
94          ((nr)   << _IOC_NRSHIFT) | \
95          ((size) << _IOC_SIZESHIFT))
96
97 /* used to create numbers */
98 #define _IO(type,nr)            _IOC(_IOC_NONE,(type),(nr),0)
99 #define _IOR(type,nr,size)      _IOC(_IOC_READ,(type),(nr),sizeof(size))
100 #define _IOW(type,nr,size)      _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
101 #define _IOWR(type,nr,size)     _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
102
103 /* used to decode ioctl numbers.. */
104 #define _IOC_DIR(nr)            (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK)
105 #define _IOC_TYPE(nr)           (((nr) >> _IOC_TYPESHIFT) & _IOC_TYPEMASK)
106 #define _IOC_NR(nr)             (((nr) >> _IOC_NRSHIFT) & _IOC_NRMASK)
107 #define _IOC_SIZE(nr)           (((nr) >> _IOC_SIZESHIFT) & _IOC_SIZEMASK)
108
109 /* ...and for the drivers/sound files... */
110
111 #define IOC_IN          (_IOC_WRITE << _IOC_DIRSHIFT)
112 #define IOC_OUT         (_IOC_READ << _IOC_DIRSHIFT)
113 #define IOC_INOUT       ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
114 #define IOCSIZE_MASK    (_IOC_SIZEMASK << _IOC_SIZESHIFT)
115 #define IOCSIZE_SHIFT   (_IOC_SIZESHIFT)
116
117 #endif /* _ASMI386_IOCTL_H */