diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/linux/atmioc.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/linux/atmioc.h')
-rw-r--r-- | include/linux/atmioc.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/include/linux/atmioc.h b/include/linux/atmioc.h new file mode 100644 index 000000000000..37f67aa8f1c1 --- /dev/null +++ b/include/linux/atmioc.h | |||
@@ -0,0 +1,41 @@ | |||
1 | /* atmioc.h - ranges for ATM-related ioctl numbers */ | ||
2 | |||
3 | /* Written 1995-1999 by Werner Almesberger, EPFL LRC/ICA */ | ||
4 | |||
5 | |||
6 | /* | ||
7 | * See http://icawww1.epfl.ch/linux-atm/magic.html for the complete list of | ||
8 | * "magic" ioctl numbers. | ||
9 | */ | ||
10 | |||
11 | |||
12 | #ifndef _LINUX_ATMIOC_H | ||
13 | #define _LINUX_ATMIOC_H | ||
14 | |||
15 | #include <asm/ioctl.h> | ||
16 | /* everybody including atmioc.h will also need _IO{,R,W,WR} */ | ||
17 | |||
18 | #define ATMIOC_PHYCOM 0x00 /* PHY device common ioctls, globally unique */ | ||
19 | #define ATMIOC_PHYCOM_END 0x0f | ||
20 | #define ATMIOC_PHYTYP 0x10 /* PHY dev type ioctls, unique per PHY type */ | ||
21 | #define ATMIOC_PHYTYP_END 0x2f | ||
22 | #define ATMIOC_PHYPRV 0x30 /* PHY dev private ioctls, unique per driver */ | ||
23 | #define ATMIOC_PHYPRV_END 0x4f | ||
24 | #define ATMIOC_SARCOM 0x50 /* SAR device common ioctls, globally unique */ | ||
25 | #define ATMIOC_SARCOM_END 0x50 | ||
26 | #define ATMIOC_SARPRV 0x60 /* SAR dev private ioctls, unique per driver */ | ||
27 | #define ATMIOC_SARPRV_END 0x7f | ||
28 | #define ATMIOC_ITF 0x80 /* Interface ioctls, globally unique */ | ||
29 | #define ATMIOC_ITF_END 0x8f | ||
30 | #define ATMIOC_BACKEND 0x90 /* ATM generic backend ioctls, u. per backend */ | ||
31 | #define ATMIOC_BACKEND_END 0xaf | ||
32 | /* 0xb0-0xbf: Reserved for future use */ | ||
33 | #define ATMIOC_AREQUIPA 0xc0 /* Application requested IP over ATM, glob. u. */ | ||
34 | #define ATMIOC_LANE 0xd0 /* LAN Emulation, globally unique */ | ||
35 | #define ATMIOC_MPOA 0xd8 /* MPOA, globally unique */ | ||
36 | #define ATMIOC_CLIP 0xe0 /* Classical IP over ATM control, globally u. */ | ||
37 | #define ATMIOC_CLIP_END 0xef | ||
38 | #define ATMIOC_SPECIAL 0xf0 /* Special-purpose controls, globally unique */ | ||
39 | #define ATMIOC_SPECIAL_END 0xff | ||
40 | |||
41 | #endif | ||