Commit 308efab5 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

vt: Fix use of "new" in a struct field

As this struct is exposed to user space and the API was added for this
release it's a bit of a pain for the C++ world and we still have time to
fix it. Rename the fields before we end up with that pain in an actual
release.
Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Reported-by: Olivier Goffart
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 5854d9c8
...@@ -103,8 +103,8 @@ void vt_event_post(unsigned int event, unsigned int old, unsigned int new) ...@@ -103,8 +103,8 @@ void vt_event_post(unsigned int event, unsigned int old, unsigned int new)
ve->event.event = event; ve->event.event = event;
/* kernel view is consoles 0..n-1, user space view is /* kernel view is consoles 0..n-1, user space view is
console 1..n with 0 meaning current, so we must bias */ console 1..n with 0 meaning current, so we must bias */
ve->event.old = old + 1; ve->event.oldev = old + 1;
ve->event.new = new + 1; ve->event.newev = new + 1;
wake = 1; wake = 1;
ve->done = 1; ve->done = 1;
} }
...@@ -186,7 +186,7 @@ int vt_waitactive(int n) ...@@ -186,7 +186,7 @@ int vt_waitactive(int n)
vt_event_wait(&vw); vt_event_wait(&vw);
if (vw.done == 0) if (vw.done == 0)
return -EINTR; return -EINTR;
} while (vw.event.new != n); } while (vw.event.newev != n);
return 0; return 0;
} }
......
...@@ -70,8 +70,8 @@ struct vt_event { ...@@ -70,8 +70,8 @@ struct vt_event {
#define VT_EVENT_UNBLANK 0x0004 /* Screen unblank */ #define VT_EVENT_UNBLANK 0x0004 /* Screen unblank */
#define VT_EVENT_RESIZE 0x0008 /* Resize display */ #define VT_EVENT_RESIZE 0x0008 /* Resize display */
#define VT_MAX_EVENT 0x000F #define VT_MAX_EVENT 0x000F
unsigned int old; /* Old console */ unsigned int oldev; /* Old console */
unsigned int new; /* New console (if changing) */ unsigned int newev; /* New console (if changing) */
unsigned int pad[4]; /* Padding for expansion */ unsigned int pad[4]; /* Padding for expansion */
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment