diff options
author | Awais Belal <awais.belal@gmail.com> | 2014-12-05 16:40:43 +0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-31 10:19:08 +0000 |
commit | d77ee8668003931ae137a495b50f11f55b4478d8 (patch) | |
tree | 01d3622f5c82944d796aec85294a39c9d051cdaa /meta/recipes-graphics | |
parent | 36576c70875278a02be2438ccc317ffa1de12a6f (diff) | |
download | poky-d77ee8668003931ae137a495b50f11f55b4478d8.tar.gz |
libxcb: fix socket writes
The patch has been picked up from libxcb git and is only
applicable to v1.10 while it gets fixed in mainstream v1.11.
http://cgit.freedesktop.org/xcb/libxcb/commit/?id=be0fe56c3bcad5124dcc6c47a2fad01acd16f71a
(From OE-Core rev: 6df3c5ee3f05a1ac01599785b34ba0a2a8573f3b)
Signed-off-by: Awais Belal <awais_belal@mentor.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libxcb/ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch | 121 | ||||
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libxcb_1.10.bb | 3 |
2 files changed, 124 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libxcb/ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch b/meta/recipes-graphics/xorg-lib/libxcb/ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch new file mode 100644 index 0000000000..14cefa3f29 --- /dev/null +++ b/meta/recipes-graphics/xorg-lib/libxcb/ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch | |||
@@ -0,0 +1,121 @@ | |||
1 | From be0fe56c3bcad5124dcc6c47a2fad01acd16f71a Mon Sep 17 00:00:00 2001 | ||
2 | From: Keith Packard <keithp@keithp.com> | ||
3 | Date: Mon, 23 Dec 2013 21:15:20 -0800 | ||
4 | Subject: [PATCH] Ensure xcb owns socket and no other threads are writing | ||
5 | before send_request | ||
6 | |||
7 | send_request may only write to out.queue if no other thread is busy | ||
8 | writing to the network (as that thread may be writing from out.queue). | ||
9 | |||
10 | send_request may only allocate request sequence numbers if XCB owns | ||
11 | the socket. | ||
12 | |||
13 | Therefore, send_request must make sure that both conditions are true | ||
14 | when it holds iolock, which can only be done by looping until both | ||
15 | conditions are true without having dropped the lock waiting for the | ||
16 | second condition. | ||
17 | |||
18 | We choose to get the socket back from Xlib first as get_socket_back | ||
19 | has a complicated test and checking for other threads writing is a | ||
20 | simple in-lined check. | ||
21 | |||
22 | This also changes the sequence number checks (64k requests with no | ||
23 | reply, 4M request wrapping) to ensure that both conditions are true | ||
24 | before queueing the request. | ||
25 | |||
26 | Signed-off-by: Keith Packard <keithp@keithp.com> | ||
27 | Reviewed-by: Uli Schlachter <psychon@znc.in> | ||
28 | --- | ||
29 | src/xcb_out.c | 57 ++++++++++++++++++++++++++++++++++++++++----------------- | ||
30 | 1 file changed, 40 insertions(+), 17 deletions(-) | ||
31 | |||
32 | diff --git a/src/xcb_out.c b/src/xcb_out.c | ||
33 | index 18bb5f9..dc42954 100644 | ||
34 | --- a/src/xcb_out.c | ||
35 | +++ b/src/xcb_out.c | ||
36 | @@ -103,6 +103,33 @@ static void get_socket_back(xcb_connection_t *c) | ||
37 | _xcb_in_replies_done(c); | ||
38 | } | ||
39 | |||
40 | +static void prepare_socket_request(xcb_connection_t *c) | ||
41 | +{ | ||
42 | + /* We're about to append data to out.queue, so we need to | ||
43 | + * atomically test for an external socket owner *and* some other | ||
44 | + * thread currently writing. | ||
45 | + * | ||
46 | + * If we have an external socket owner, we have to get the socket back | ||
47 | + * before we can use it again. | ||
48 | + * | ||
49 | + * If some other thread is writing to the socket, we assume it's | ||
50 | + * writing from out.queue, and so we can't stick data there. | ||
51 | + * | ||
52 | + * We satisfy this condition by first calling get_socket_back | ||
53 | + * (which may drop the lock, but will return when XCB owns the | ||
54 | + * socket again) and then checking for another writing thread and | ||
55 | + * escaping the loop if we're ready to go. | ||
56 | + */ | ||
57 | + for (;;) { | ||
58 | + if(c->has_error) | ||
59 | + return; | ||
60 | + get_socket_back(c); | ||
61 | + if (!c->out.writing) | ||
62 | + break; | ||
63 | + pthread_cond_wait(&c->out.cond, &c->iolock); | ||
64 | + } | ||
65 | +} | ||
66 | + | ||
67 | /* Public interface */ | ||
68 | |||
69 | void xcb_prefetch_maximum_request_length(xcb_connection_t *c) | ||
70 | @@ -236,24 +263,23 @@ unsigned int xcb_send_request(xcb_connection_t *c, int flags, struct iovec *vect | ||
71 | |||
72 | /* get a sequence number and arrange for delivery. */ | ||
73 | pthread_mutex_lock(&c->iolock); | ||
74 | - /* wait for other writing threads to get out of my way. */ | ||
75 | - while(c->out.writing) | ||
76 | - pthread_cond_wait(&c->out.cond, &c->iolock); | ||
77 | - get_socket_back(c); | ||
78 | + | ||
79 | + prepare_socket_request(c); | ||
80 | |||
81 | /* send GetInputFocus (sync_req) when 64k-2 requests have been sent without | ||
82 | - * a reply. */ | ||
83 | - if(req->isvoid && c->out.request == c->in.request_expected + (1 << 16) - 2) | ||
84 | - send_sync(c); | ||
85 | - /* Also send sync_req (could use NoOp) at 32-bit wrap to avoid having | ||
86 | + * a reply. | ||
87 | + * Also send sync_req (could use NoOp) at 32-bit wrap to avoid having | ||
88 | * applications see sequence 0 as that is used to indicate | ||
89 | - * an error in sending the request */ | ||
90 | - if((unsigned int) (c->out.request + 1) == 0) | ||
91 | + * an error in sending the request | ||
92 | + */ | ||
93 | + | ||
94 | + while ((req->isvoid && c->out.request == c->in.request_expected + (1 << 16) - 2) || | ||
95 | + (unsigned int) (c->out.request + 1) == 0) | ||
96 | + { | ||
97 | send_sync(c); | ||
98 | + prepare_socket_request(c); | ||
99 | + } | ||
100 | |||
101 | - /* The above send_sync calls could drop the I/O lock, but this | ||
102 | - * thread will still exclude any other thread that tries to write, | ||
103 | - * so the sequence number postconditions still hold. */ | ||
104 | send_request(c, req->isvoid, workaround, flags, vector, veclen); | ||
105 | request = c->has_error ? 0 : c->out.request; | ||
106 | pthread_mutex_unlock(&c->iolock); | ||
107 | @@ -373,10 +399,7 @@ int _xcb_out_send(xcb_connection_t *c, struct iovec *vector, int count) | ||
108 | |||
109 | void _xcb_out_send_sync(xcb_connection_t *c) | ||
110 | { | ||
111 | - /* wait for other writing threads to get out of my way. */ | ||
112 | - while(c->out.writing) | ||
113 | - pthread_cond_wait(&c->out.cond, &c->iolock); | ||
114 | - get_socket_back(c); | ||
115 | + prepare_socket_request(c); | ||
116 | send_sync(c); | ||
117 | } | ||
118 | |||
119 | -- | ||
120 | 1.9.1 | ||
121 | |||
diff --git a/meta/recipes-graphics/xorg-lib/libxcb_1.10.bb b/meta/recipes-graphics/xorg-lib/libxcb_1.10.bb index d88b025e1f..5bb5f0be88 100644 --- a/meta/recipes-graphics/xorg-lib/libxcb_1.10.bb +++ b/meta/recipes-graphics/xorg-lib/libxcb_1.10.bb | |||
@@ -6,5 +6,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d763b081cb10c223435b01e00dc0aba7" | |||
6 | 6 | ||
7 | DEPENDS += "libxdmcp" | 7 | DEPENDS += "libxdmcp" |
8 | 8 | ||
9 | SRC_URI += "file://ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch \ | ||
10 | " | ||
11 | |||
9 | SRC_URI[md5sum] = "074c335cc4453467eeb234e3dadda700" | 12 | SRC_URI[md5sum] = "074c335cc4453467eeb234e3dadda700" |
10 | SRC_URI[sha256sum] = "98d9ab05b636dd088603b64229dd1ab2d2cc02ab807892e107d674f9c3f2d5b5" | 13 | SRC_URI[sha256sum] = "98d9ab05b636dd088603b64229dd1ab2d2cc02ab807892e107d674f9c3f2d5b5" |