Imported Debian patch 2:1.15.1-0ubuntu2.6
[deb_xorg-server.git] / debian / patches / xfree86_keep_non_seat0_from_touching_vts.patch
CommitLineData
7217e0ca
ML
1From 46cf2a60934076bf568062eb83121ce90b6ff596 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?La=C3=A9rcio=20de=20Sousa?= <lbsousajr@gmail.com>
3Date: Thu, 12 Dec 2013 14:22:48 -0200
4Subject: [PATCH] xfree86: Keep a non-seat0 X server from touching VTs (#71258)
5
6Updated patch following Hans de Goede's advice.
7
8If -seat option is passed with a value different from seat0,
9X server won't call xf86OpenConsole().
10
11This is needed to avoid any race condition between seat0 and
12non-seat0 X servers. If a non-seat0 X server opens a given VT
13before a seat0 one which expects to open the same VT, one can
14get an inactive systemd-logind graphical session for seat0.
15
16This patch was first tested in a multiseat setup with multiple
17video cards and works quite well.
18
19I suppose it can also make things like DontVTSwitch and -sharevts
20meaningless for non-seat0 seats, so it may fix bug #69477, too.
21
22Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=71258
23 https://bugs.freedesktop.org/show_bug.cgi?id=69477 (maybe)
24
25See also: http://lists.x.org/archives/xorg-devel/2013-October/038391.html
26 https://bugzilla.redhat.com/show_bug.cgi?id=1018196
27
28Signed-off-by: Hans de Goede <hdegoede@redhat.com>
29Reviewed-by: Hans de Goede <hdegoede@redhat.com>
30---
31 hw/xfree86/common/xf86Init.c | 3 ++-
32 1 file changed, 2 insertions(+), 1 deletion(-)
33
34diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c
35index 9c8a86a..952bf37 100644
36--- a/hw/xfree86/common/xf86Init.c
37+++ b/hw/xfree86/common/xf86Init.c
38@@ -544,7 +544,8 @@ InitOutput(ScreenInfo * pScreenInfo, int argc, char **argv)
39 if (NEED_IO_ENABLED(flags))
40 want_hw_access = TRUE;
41
42- if (!(flags & HW_SKIP_CONSOLE))
43+ /* Non-seat0 X servers should not open console */
44+ if (!(flags & HW_SKIP_CONSOLE) && !ServerIsNotSeat0())
45 xorgHWOpenConsole = TRUE;
46 }
47
48--
492.0.4
50