Skip to content

Commit 55a9849

Browse files
Jiri Slaby (SUSE)gregkh
authored andcommitted
Revert "tty: vt: use _IO() to define ioctl numbers"
This reverts commit f1180ca. Since the commit, the vt ioctl numbers are defined differently on platforms where _IOC_NONE is non-zero: alpha, mips, powerpc, sparc. Signed-off-by: "Jiri Slaby (SUSE)" <[email protected]> Reported-by: Christophe Leroy <[email protected]> Link: https://lore.kernel.org/all/[email protected]/ Link: https://lore.kernel.org/all/[email protected]/ Cc: Nicolas Pitre <[email protected]> Cc: Ilpo Järvinen <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 89748ac commit 55a9849

File tree

1 file changed

+17
-17
lines changed
  • include/uapi/linux

1 file changed

+17
-17
lines changed

include/uapi/linux/vt.h

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
/* Note: the ioctl VT_GETSTATE does not work for
1515
consoles 16 and higher (since it returns a short) */
1616

17-
/* 'V' to avoid collision with termios and kd */
17+
/* 0x56 is 'V', to avoid collision with termios and kd */
1818

19-
#define VT_OPENQRY _IO('V', 0x00) /* find available vt */
19+
#define VT_OPENQRY 0x5600 /* find available vt */
2020

2121
struct vt_mode {
2222
__u8 mode; /* vt mode */
@@ -25,8 +25,8 @@ struct vt_mode {
2525
__s16 acqsig; /* signal to raise on acquisition */
2626
__s16 frsig; /* unused (set to 0) */
2727
};
28-
#define VT_GETMODE _IO('V', 0x01) /* get mode of active vt */
29-
#define VT_SETMODE _IO('V', 0x02) /* set mode of active vt */
28+
#define VT_GETMODE 0x5601 /* get mode of active vt */
29+
#define VT_SETMODE 0x5602 /* set mode of active vt */
3030
#define VT_AUTO 0x00 /* auto vt switching */
3131
#define VT_PROCESS 0x01 /* process controls switching */
3232
#define VT_ACKACQ 0x02 /* acknowledge switch */
@@ -36,21 +36,21 @@ struct vt_stat {
3636
__u16 v_signal; /* signal to send */
3737
__u16 v_state; /* vt bitmask */
3838
};
39-
#define VT_GETSTATE _IO('V', 0x03) /* get global vt state info */
40-
#define VT_SENDSIG _IO('V', 0x04) /* signal to send to bitmask of vts */
39+
#define VT_GETSTATE 0x5603 /* get global vt state info */
40+
#define VT_SENDSIG 0x5604 /* signal to send to bitmask of vts */
4141

42-
#define VT_RELDISP _IO('V', 0x05) /* release display */
42+
#define VT_RELDISP 0x5605 /* release display */
4343

44-
#define VT_ACTIVATE _IO('V', 0x06) /* make vt active */
45-
#define VT_WAITACTIVE _IO('V', 0x07) /* wait for vt active */
46-
#define VT_DISALLOCATE _IO('V', 0x08) /* free memory associated to vt */
44+
#define VT_ACTIVATE 0x5606 /* make vt active */
45+
#define VT_WAITACTIVE 0x5607 /* wait for vt active */
46+
#define VT_DISALLOCATE 0x5608 /* free memory associated to vt */
4747

4848
struct vt_sizes {
4949
__u16 v_rows; /* number of rows */
5050
__u16 v_cols; /* number of columns */
5151
__u16 v_scrollsize; /* number of lines of scrollback */
5252
};
53-
#define VT_RESIZE _IO('V', 0x09) /* set kernel's idea of screensize */
53+
#define VT_RESIZE 0x5609 /* set kernel's idea of screensize */
5454

5555
struct vt_consize {
5656
__u16 v_rows; /* number of rows */
@@ -60,10 +60,10 @@ struct vt_consize {
6060
__u16 v_vcol; /* number of pixel columns on screen */
6161
__u16 v_ccol; /* number of pixel columns per character */
6262
};
63-
#define VT_RESIZEX _IO('V', 0x0A) /* set kernel's idea of screensize + more */
64-
#define VT_LOCKSWITCH _IO('V', 0x0B) /* disallow vt switching */
65-
#define VT_UNLOCKSWITCH _IO('V', 0x0C) /* allow vt switching */
66-
#define VT_GETHIFONTMASK _IO('V', 0x0D) /* return hi font mask */
63+
#define VT_RESIZEX 0x560A /* set kernel's idea of screensize + more */
64+
#define VT_LOCKSWITCH 0x560B /* disallow vt switching */
65+
#define VT_UNLOCKSWITCH 0x560C /* allow vt switching */
66+
#define VT_GETHIFONTMASK 0x560D /* return hi font mask */
6767

6868
struct vt_event {
6969
__u32 event;
@@ -77,14 +77,14 @@ struct vt_event {
7777
__u32 pad[4]; /* Padding for expansion */
7878
};
7979

80-
#define VT_WAITEVENT _IO('V', 0x0E) /* Wait for an event */
80+
#define VT_WAITEVENT 0x560E /* Wait for an event */
8181

8282
struct vt_setactivate {
8383
__u32 console;
8484
struct vt_mode mode;
8585
};
8686

87-
#define VT_SETACTIVATE _IO('V', 0x0F) /* Activate and set the mode of a console */
87+
#define VT_SETACTIVATE 0x560F /* Activate and set the mode of a console */
8888

8989
/* get console size and cursor position */
9090
struct vt_consizecsrpos {

0 commit comments

Comments
 (0)