This source file includes following definitions.
- scsi_major
1 #ifndef _LINUX_MAJOR_H
2 #define _LINUX_MAJOR_H
3
4
5
6
7
8
9
10 #define MAX_CHRDEV 64
11 #define MAX_BLKDEV 64
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56 #define UNNAMED_MAJOR 0
57 #define MEM_MAJOR 1
58 #define RAMDISK_MAJOR 1
59 #define FLOPPY_MAJOR 2
60 #define PTY_MASTER_MAJOR 2
61 #define IDE0_MAJOR 3
62 #define PTY_SLAVE_MAJOR 3
63 #define HD_MAJOR IDE0_MAJOR
64 #define TTY_MAJOR 4
65 #define TTYAUX_MAJOR 5
66 #define LP_MAJOR 6
67 #define VCS_MAJOR 7
68 #define SCSI_DISK_MAJOR 8
69 #define SCSI_TAPE_MAJOR 9
70 #define MOUSE_MAJOR 10
71 #define SCSI_CDROM_MAJOR 11
72 #define QIC02_TAPE_MAJOR 12
73 #define XT_DISK_MAJOR 13
74 #define SOUND_MAJOR 14
75 #define CDU31A_CDROM_MAJOR 15
76 #define SOCKET_MAJOR 16
77 #define GOLDSTAR_CDROM_MAJOR 16
78 #define AF_UNIX_MAJOR 17
79 #define OPTICS_CDROM_MAJOR 17
80 #define AF_INET_MAJOR 18
81 #define SANYO_CDROM_MAJOR 18
82 #define CYCLADES_MAJOR 19
83 #define CYCLADESAUX_MAJOR 20
84 #define MITSUMI_X_CDROM_MAJOR 20
85 #define SCSI_GENERIC_MAJOR 21
86 #define Z8530_MAJOR 34
87 #define IDE1_MAJOR 22
88 #define MITSUMI_CDROM_MAJOR 23
89 #define CDU535_CDROM_MAJOR 24
90 #define STL_SERIALMAJOR 24
91 #define MATSUSHITA_CDROM_MAJOR 25
92 #define STL_CALLOUTMAJOR 25
93 #define MATSUSHITA_CDROM2_MAJOR 26
94 #define QIC117_TAPE_MAJOR 27
95 #define MATSUSHITA_CDROM3_MAJOR 27
96 #define MATSUSHITA_CDROM4_MAJOR 28
97 #define STL_SIOMEMMAJOR 28
98 #define AZTECH_CDROM_MAJOR 29
99 #define CM206_CDROM_MAJOR 32
100 #define IDE2_MAJOR 33
101 #define IDE3_MAJOR 34
102 #define NETLINK_MAJOR 36
103 #define IDETAPE_MAJOR 37
104
105
106
107
108
109 #define SCSI_MAJOR(M) \
110 ((M) == SCSI_DISK_MAJOR \
111 || (M) == SCSI_TAPE_MAJOR \
112 || (M) == SCSI_CDROM_MAJOR \
113 || (M) == SCSI_GENERIC_MAJOR)
114
115 static inline int scsi_major(int m) {
116 return SCSI_MAJOR(m);
117 }
118
119 #endif