-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
2765 lines (2002 loc) · 104 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Snapshot 2.99.917 (2014-12-21)
==============================
3 months drifted by whilst I looked elsewhere for bugs.. The highlight of
bugs fixed here are a couple of workarounds required for Broadwell and
making sure that the rasterisation code is symmetric under inversions.
However, as a couple of crashers slipped through into 2.99.916 (though
not actual regressions in 2.99.916 per se) and 3 months have passed, we
should make one more snapshot before an imminent release.
* Beware of recomputing the clear hint in the middle of MI recursion
https://bugs.freedesktop.org/show_bug.cgi?id=77074
* Fix crash from rendering an empty Glyph string under PRIME as the
secondary driver
* Restore application of default monitor options to the first output,
a regression in 2.99.915 and the MST support
https://bugs.gentoo.org/show_bug.cgi?id=522500
* Finally fix ZaphodHeads blocking on waiting for flip completion events.
Before kernel 3.19, O_NONBLOCK support is broken and so we must avoid
reading if we are not expecting an event.
* Backwards compatibility fix for fake triple buffering with PRIME and
Xorg-1.15
https://bugs.freedesktop.org/show_bug.cgi?id=85144#c12
* Fix a rendering issue with output rotation and software fallbacks.
https://bugs.freedesktop.org/show_bug.cgi?id=84653
* Enable MST discovery even without udev support
https://bugs.freedesktop.org/show_bug.cgi?id=84718
* Fix TearFree operation after the GPU is wedged
https://bugs.freedesktop.org/show_bug.cgi?id=85058
* Fix projective sampling on gen6+.
* Fix rendering and corruption with gen8.
https://bugs.freedesktop.org/show_bug.cgi?id=84958
https://bugs.freedesktop.org/show_bug.cgi?id=83207
https://bugs.freedesktop.org/show_bug.cgi?id=79053
https://bugs.freedesktop.org/show_bug.cgi?id=81583
* Fix crash when using Xinerama.
https://bugs.freedesktop.org/show_bug.cgi?id=87207
* Fix rendering of right-to-left or bottom-to-top PolySegments in UXA
Snapshot 2.99.916 (2014-09-08)
==============================
Quick update for MST in UXA - we need to hook up the RandR outputs for
dynamically added connectors.
Snapshot 2.99.915 (2014-09-08)
==============================
A significant change to UXA to enable MST and to keep it working on recent
kernels needs some soaking before a major release, and the usual
plethora of bugfixes. One other feature is the support for hardware
rotations on very recent kernels.
* Handle rotated scanouts that are all clear correctly. The region to
update was not being computed correctly, overdrawing the wrong CRTC.
https://bugs.freedesktop.org/show_bug.cgi?id=81820
* Reset cursor images after rotation and size changes
https://bugs.freedesktop.org/show_bug.cgi?id=81886
https://bugs.freedesktop.org/show_bug.cgi?id=82273
https://bugs.freedesktop.org/show_bug.cgi?id=82337
* Handle stale DRI2 buffers and Client errors more gracefully
* Fallback if we fail to render a glyph onto a too-large surface, e.g.
direct rendering of glyphs onto extended desktops with gen2/gen3.
https://bugs.archlinux.org/task/40949
* Further work to enable tiled rendering onto large surfaces in
severely aperture and memory constrained devices (e.g. gen2/gen3)
* Honour the Primary option from xorg.conf and mark that as the RandR
primary.
https://bugs.freedesktop.org/show_bug.cgi?id=82193
https://bugs.freedesktop.org/show_bug.cgi?id=82205
* Fix another Client-Window DRI2 close race
https://bugs.freedesktop.org/show_bug.cgi?id=82979
* Fix incorrect discarding of GPU damage when copying over the TearFree
scanout - which caused a flicker in rapidly updated elements (like
simple video panes).
https://bugs.freedesktop.org/show_bug.cgi?id=81973
Snapshot 2.99.914 (2014-07-23)
==============================
And a brown paper bag to hide the rebuilding from the tarball with
'autoreconf -fi' error that arose from not distributing the libobj/
directory.
Snapshot 2.99.913 (2014-07-23)
==============================
This should be it... A few fixes from testing the new code, we should be
ready for the final release. However, we do have one standout feature in
this snapshot, we now officially recognise HD Graphics 5300/5500/5600,
Iris Graphics 6100 and Iris Pro Graphics 6200/P6300 (formerly known as
Broadwell).
* Check the window actually covers the CRTC before doing a single CRTC flip,
and then restore the right framebuffer after completing CRTC flips.
Otherwise we would detect an error and disable an output under TearFree
Regression in 2.99.912
https://bugs.freedesktop.org/show_bug.cgi?id=80191
* Fix framebuffer creation on kernels older than 3.11
Regression in 2.99.912
* Check that the damage still exists after implicit reduction
Regression in 2.99.912
https://bugs.freedesktop.org/show_bug.cgi?id=77436
* Fix direction flags for fallback composited CopyAreas which
caused scrolling corruption in a few configurations
Regression from 2.20.0
https://bugs.freedesktop.org/show_bug.cgi?id=79843
* Do not throw away damage if there is no redundant copy
https://bugs.freedesktop.org/show_bug.cgi?id=79992
* Check clipping on PolyRect before discarding the clipped damage
Regression from 2.99.903
https://bugs.freedesktop.org/show_bug.cgi?id=79992
* Fix hints for GLXPixmapa, as these are never swapped and so
miss invalidating the hints on SwapBuffers with the result
that they are often presumed blank
Regression in 2.99.912
https://bugs.freedesktop.org/show_bug.cgi?id=79999
* Fix incoherent choice of source bo when constructing 8x8 tiles,
incorrect pattern origin when extracting, and then fix the
alignment of colour patterns for BLT operations
https://bugs.freedesktop.org/show_bug.cgi?id=80033
* Disable blending with the render engine on snoopable buffers
https://bugs.freedesktop.org/show_bug.cgi?id=80253
* Restore throttling to prevent client lag under heavy GPU load
Regression from 2.21.10
https://bugs.freedesktop.org/show_bug.cgi?id=77436
* Use ClientGone for notifications on shared DRI2 windows to prevent
rare crashes due to use-after-free of the swap requests
https://bugs.freedesktop.org/show_bug.cgi?id=80157
* Ensure the mmaped CPU bo is idle before migrating damage
https://bugs.freedesktop.org/show_bug.cgi?id=80560
* Fix incorrect clipping by the render engine for large DRI2 windows
* Ensure that the aperture tiling fallbacks are bounded
* Validate parameter to xf86-video-intel-backlight-helper more carefully
(CVE-2014-4910)
* Fix slaved scanouts for reverse optimus, though rotated slaves will
require further patches to Xorg.
https://bugs.freedesktop.org/show_bug.cgi?id=81383
* Fix build without Composite extension.
* Fix build without gettline().
* UXA: Allocate and resize frontbuffer consistently to pass sanity checks
https://bugs.freedesktop.org/show_bug.cgi?id=80088
* UXA: Report cached backlight value when the output is off (like sna)
https://bugzilla.redhat.com/show_bug.cgi?id=1032978
* UXA: Mark outputs as off before the kernel does (like sna)
This will prevent the internal panel from starting up blank in some
multi-monitor configurations
https://bugzilla.redhat.com/show_bug.cgi?id=1103806
Note that the DRI2 exchange mechanism introduced in 2.99.912 exposes bugs
in some compositors, at least kwin and comptom, which discard DRI2 buffer
invalidates rather than resourcing their texture. For example,
https://bugs.kde.org/show_bug.cgi?id=336589
Note that the improved triple buffering introduced in DRI2 requires a patch
to Xorg (now released upstream) to prevent crashes with DRI_PRIME.
https://bugs.freedesktop.org/show_bug.cgi?id=80001
Note that DRI3/Present require tracking the relevant development trees for
mesa and the xserver as they are very much still under early testing. Also
be aware that Mesa provides no support for explicit fencing so Damage
tracking between compositors and clients is unserialised.
Snapshot 2.99.912 (2014-06-10)
==============================
A final round of features. We have everything from support for variable
cursor sizes, support for the DRI3 and Present extensions, improved DRI2
support, support for Xserver 1.16, userptr from kernel 3.16, and
precursory support for DP multistream transport,
* Avoid discarding dirty pixels when promoting a migration to cover the
whole pixmap.
Regression in 2.99.911
https://bugs.freedesktop.org/show_bug.cgi?id=77063
https://bugs.freedesktop.org/show_bug.cgi?id=77178
* Avoid overextending degenerate lines (and consequentially accessing
pixels outside of our damaged area).
https://bugs.freedesktop.org/show_bug.cgi?id=77074
* Fix subpixel glyph rendering on gen2 devices (830-865 chipsets)
Regression in 2.99.911
https://bugs.freedesktop.org/show_bug.cgi?id=77201
* Share the global pixman glyph cache between ZaphodHeads
https://bugs.freedesktop.org/show_bug.cgi?id=54707
* Light up all connected outputs, even if their status is unknown, on
takeover from fbcon. This prevents loss of display after a resume
on recent kernels, for example.
https://bugs.freedesktop.org/show_bug.cgi?id=77768
* Show the video overlay (when supported by the hardware) across all
outputs.
https://bugs.freedesktop.org/show_bug.cgi?id=77802
* Do not discard damage when performing "BLT" spans inplace with the CPU.
Regression from 2.20.10
* Avoid discarding IO buffers too early during their preparation for a
new batch
https://bugs.freedesktop.org/show_bug.cgi?id=79238
* Fix fallback handling for displaying large scaled framebuffers (that
are too large to be scaled by the GPU in a single pass)
https://bugs.freedesktop.org/show_bug.cgi?id=79320
* Listen to external modifications of backlight value and propagate
the notifications to RandR clients. This should make the GUI report
ACPI keypresses to change the backlight correctly.
https://bugs.freedesktop.org/show_bug.cgi?id=79699
* UXA: fix pageflips with 3 heads.
* UXA: do not report a BadMatch error for DRI2GetMsc - as clients are
often unprepared and die when they get the unexpected error.
Snapshot 2.99.911 (2014-03-19)
==============================
Hans de Geode has been working on making the Xserver work without
privileges under the supervision of systemd/logind. This necessitated a
few new features for us: server fds (where we are passed which fd to use
to talk to our device by the Xserver who may in turn receive it from
logind or other host) and a small backlight helper so that we can continue
to provide a RandR backlight property when running without root privileges.
* Flush when changing blend modes on Ironlake, or else single glyphs
are sometimes rendered incorrectly
Regression from 2.20.15
https://bugs.freedesktop.org/show_bug.cgi?id=74882
* Fix pixmap offsets for pixman fallbacks onto Composite redirected
windows
https://bugs.freedesktop.org/show_bug.cgi?id=73811
* Fix blending onto 8-bit destinations, typically used for generating
masks in complex Render operations, on gen2
https://bugs.freedesktop.org/show_bug.cgi?id=75818
* Handle failure to create DRI bo more carefully. For example on gen3,
the DDX supports pixmaps that are much, much larger than OpenGL can
use and do not support the tiling modes that we request for OpenGL.
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1289049
* Fix a bookkeeping bug with proxy buffers that are marked active but
not actually inserted into a request (so they end up permanently
active and confuse everybody).
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1289923
* Actually turn off displays with DPMS off for UXA.
Regression from 2.99.903, but requires
kernel commit c9976dcf55c8aaa7037427b239f15e5acfc01a3a
Author: Chris Wilson <[email protected]>
Date: Sun Sep 29 19:15:07 2013 +0100
drm/i915: Only apply DPMS to the encoder if enabled
instead for correct behaviour on Haswell.
https://code.google.com/p/chromium/issues/detail?id=341135
Snapshot 2.99.910 (2014-02-10)
==============================
Another latent bug exposed by recent changes merit another snapshot for
final testing.
* Only discard damage when overwriting the dirty CPU bo, instead
of discarding damage that will be shown!
* Reset operation state when switching between glyph caches.
https://bugs.freedesktop.org/show_bug.cgi?id=74494
* Fully reinitialise pixmaps allocated from the freed cache. Fixes
a potential issue (crash or misrendering) when using some compositors.
https://bugs.freedesktop.org/show_bug.cgi?id=74550
* Do not expose the TexturedVideo adaptor in UXA when it is disabled
either due to a hung GPU or explicitly disabled by the user.
* Restore the pipe stall when changing CC state on gen6, otherwise
the GPU may not flush intermediate results from all EU resulting
in render corruption (usually the occasional black box).
Regression from 2.99.906
https://bugs.freedesktop.org/show_bug.cgi?id=7237
Snapshot 2.99.909 (2014-02-01)
==============================
Pass the brown paper bag. Ridiculously stupid bug in last minute coding.
* Add Xv support using glamor acceleration in addition to adaptors
provided by the UXA backend.
* Fix overeager discarding of CPU damage
Regression in 2.99.908 :(
https://bugs.freedesktop.org/show_bug.cgi?id=74327
Snapshot 2.99.908 (2014-01-31)
==============================
A couple of regressions dashed the hopes that .907 was to be the final
release candidate, so time to start the cycle again after applying a few
more bugfixes.
* Fix invalid pageflipping of GLXPixmaps by UXA.
https://bugs.freedesktop.org/show_bug.cgi?id=73282
* Consistently treat DPMS Suspend/Standy as Off, otherwise we may
incorrectly restore the backlight in UXA.
* Fix disabling the backlight in UXA when querying the value whilst off
https://bugs.freedesktop.org/show_bug.cgi?id=73181.
* Invalidate between every operation if rendering into the source or mask.
Fixes regression in 2.99.907 on Ivybridge (seen in KDE)
https://bugs.freedesktop.org/show_bug.cgi?id=73208
* Check for available batch buffer state before restoring state on gen4,
otherwise we overwrite surface state with commands and cause a GPU hang.
https://bugs.freedesktop.org/show_bug.cgi?id=73348
* Prevent an invalid free by TearFree
https://bugs.freedesktop.org/show_bug.cgi?id=73469
* Fix confusion in TearFree when it tried to pageflip to a stale bo
https://bugs.freedesktop.org/show_bug.cgi?id=70905
* Initialise TearFree contents with the current frontbuffer upon creation,
otherwise old content may be visible for significant fractions of a
second after resume or DPMS on
https://bugs.freedesktop.org/show_bug.cgi?id=73842
* Nullify the old pointer into a CPU mmapping of the bo when promoting it
on the GPU. Eventually that old pointer becomes invalid and will cause
the Xserver to crash.
Fixes regression in 2.99.906
https://bugs.freedesktop.org/show_bug.cgi?id=73351
* Restore the serialNumber on the GC correctly after falling back to
software. This was seen to cause corruption with Wine.
https://bugs.freedesktop.org/show_bug.cgi?id=73856
* Do not ignore CPU damage on a pixmap unless the Composite operation
will completely overwrite it. This was observed in xfce4.
https://bugs.freedesktop.org/show_bug.cgi?id=69528
* Skip fake outputs during initial probe as they can cause a NULL pointer
dereference.
https://bugs.freedesktop.org/show_bug.cgi?id=73981
* Fix rendering of dashed zero-width lines onto 24bit buffers
https://bugzilla.redhat.com/show_bug.cgi?id=1059152
* Cap the freed Pixmap cache and reuse it more often
Fixes a regression in 2.99.907 that caused the memory used by X to
grow until it was cleaned up during server regreneration
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1272338
Snapshot 2.99.907 (2013-12-30)
==============================
The highlight here is that things seem to be quietening down on the bug
reporting front. All is not quiet as you will see below, and maybe it is
just the holiday season that is approaching*, but there has been a
remarkable falloff in bug reports. Lets hope this trend holds and we can
make a stable release shortly!
* This was intended to be sent a couple of weeks ago and the holiday season
has been very quiet....
Oh, and acceleration support for Intel's next generation of
integrated processor graphics has landed, codenamed Broadwell.
* Fix potential X server infinite recursion (crash) from a gen2 bug fix
Regression in 2.99.906
https://bugs.freedesktop.org/show_bug.cgi?id=71605
* Workaround a missing pipeline flush within Ivybridge, that would
leave black rectangles randomly over the output
https://bugs.freedesktop.org/show_bug.cgi?id=68410
* Fix tiled fills. gen2-3 and gen4+ had two different bugs that
both broke rendering with small 8x8 patterns in some circumstances
https://bugs.freedesktop.org/show_bug.cgi?id=71260
* Fix reads from a cropped video image using a packed pixel format.
* Another clear the clear hint after DRI2 SwapBuffers, like the bug fixed
in 2.99.903. Failure to clear the hint would cause read backs of the
frontbuffer (Xvnc) to be blank.
https://bugs.freedesktop.org/show_bug.cgi?id=72194
* Disable VSync on Baytrail
https://bugs.freedesktop.org/show_bug.cgi?id=69869
* Handle partial uploads with TearFree correctly
https://bugs.freedesktop.org/show_bug.cgi?id=72343
https://bugs.freedesktop.org/show_bug.cgi?id=72430
* Avoid recusing through DRI event handlers whilst processing TearFree,
leading to a double free (and memory corruption)
https://bugs.freedesktop.org/show_bug.cgi?id=72690
* Hide the gen4 render corruption by crippling the GPU
https://bugs.freedesktop.org/show_bug.cgi?id=55500
Snapshot 2.99.906 (2013-11-13)
==============================
Several stability fixes required after the recent tweaking of the core
mechanics to handle the updated TearFree and attempting to make static
analyzers happy.
* Fix damage handling when rendering to a partially damaged GPU surface.
Regression in 2.99.905
https://bugs.freedesktop.org/show_bug.cgi?id=70527
* Use asprintf() instead of sprintf()
Regression in 2.99.905
https://bugs.freedesktop.org/show_bug.cgi?id=70835
* Improve accounting for fence overallocation on older gen2/3, and
improve the tiling mechanism to fit into the same aperture constraints
https://bugs.freedesktop.org/show_bug.cgi?id=70924
* Add an extra GPU flush on Sandybridge to fix some rare font corruption
* Rasterise lines through all clip boxes
https://bugs.freedesktop.org/show_bug.cgi?id=70802
* Fix regression from stricter handling of failures to move a GC to the GPU
Regression in 2.99.905
https://bugs.freedesktop.org/show_bug.cgi?id=71415
* Fix various fail along the memcpy_xor paths, including inadequate error
handling and integer overflow
https://bugs.freedesktop.org/show_bug.cgi?id=70527
* Fix outside-of-target stipple uploads
https://bugs.launchpad.net/bugs/1247785
* Fix clip detection for long glyphs
Incomplete bug fix (causing a regression) in 2.99.905
https://bugs.freedesktop.org/show_bug.cgi?id=70527
* Fix VSync for the render engine (Xv) on Haswell
https://bugs.freedesktop.org/show_bug.cgi?id=70527
Snapshot 2.99.905 (2013-10-23)
==============================
The highlight for this snapshot is the extension of TearFree to support
transformed outputs, along with some polishing to eliminate its impact
upon input and output latency. As always, thanks to everyone who have
been testing, reporting bugs and helping to improve the stability before
release.
* Prevent a crash when starting with a user specified mode or position
* Prevent some crashes in UXA after allocation failure
* Stop marking the user's preferred backlight value as 0 if the
backlight property is queried whilst the connector is disabled
https://bugs.freedesktop.org/show_bug.cgi?id=70406
* Pad GETCONNECTOR ioctl for compatibility between 32/64-bit userspace
and kernel
* Handle long glyph runs correctly
https://bugs.freedesktop.org/show_bug.cgi?id=70541
* Fix clipping of stippled rectangles against clip regions
https://bugs.freedesktop.org/show_bug.cgi?id=67865
* Support TearFree rendering of rotated outputs
https://bugs.freedesktop.org/show_bug.cgi?id=22969
Snapshot 2.99.904 (2013-10-09)
==============================
There is one more feature planned to be completed for 3.0, so time for a
snapshot beforehand to push out the bug fixes from the last week.
* Fix video output using sprites when changing the image size
* Apply more restrictive tile constraints for 915g class devices
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1232546
* Ensure all overlapping rectangles are drawn for XRenderFillRectangles
https://bugs.freedesktop.org/show_bug.cgi?id=66313
* Fix trapezoid clipping against the left-edge
https://bugs.freedesktop.org/show_bug.cgi?id=69469
* Prevent discarding active upload buffers, causing glitches in chromium
https://bugs.freedesktop.org/show_bug.cgi?id=66990
* Prevent specifying a negative timeout to select if the BlockHandler
takes too long to update the display
* Promote the Ironlake pipecontrol to be a full pipeline flush to
prevent render cache corruption
https://bugs.freedesktop.org/show_bug.cgi?id=51422
* Never pass an invalid trapezoid to pixman
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1197921
* Prevent out-of-bounds access by overassigning work amongst threads
https://bugs.freedesktop.org/show_bug.cgi?id=70204
* Make sure the current mode is always listed amongst the output modes
https://bugs.freedesktop.org/show_bug.cgi?id=70132
* Build fixes for 1.14.99.2
Snapshot 2.99.903 (2013-09-28)
==============================
Lots more stabilization work, not yet peaceful enough to christen 3.0. We
have everything ranging from build fixes for systems like Suse Linux
Enterprise Desktop that like to backport hardware enablement to ancient
packages, to fixes for hardware enabling, and some more performance tuning.
* Fix VSync on Haswell.
https://bugs.freedesktop.org/show_bug.cgi?id=69119
* Disable Y-tiling on gen4 - it too frequently leads to instability.
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1222203
* Disable same EDID detection based on property id - the kernel likes
to reuse ids leading to a failure to detect the right modes on a monitor
change.
* Avoid issuing multiple DPMS requests to the same encoder (alised to
multiple connectors) to avoid upsetting Haswell and leaving the
screens blank.
* Honour the user preferrence for the initial mode, even if they are
being silly
https://bugzilla.novell.com/show_bug.cgi?id=841696
* Clear the clear hint when apply DRI updates - to prevent some
screenshots from GL windows being left blank.
https://bugs.freedesktop.org/show_bug.cgi?id=69730
* Prevent a NULL dereference from trying to undo an non-existent buffer
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1228677
* Handle out-of-memory conditions far more gracefully. If the system is
hard against the memory wall, then the kernel will start issuing
SIGBUS even for CPU mmaps. Untrapped these will cause X to die.
https://bugs.freedesktop.org/show_bug.cgi?id=67889
Snapshot 2.99.902 (2013-09-07)
==============================
We do not condone or support Canonical in the course of action they have
chosen, and will not carry XMir patches upstream.
-The Management
Snapshot 2.99.901 (2013-09-04)
==============================
What's this? A pre-release snapshot of an upcoming 3.0 major release?
What could be the big new feature about to land? SNA by default!
Not only that, we also have a preview of the XMir integration patches.
Whilst we consider the SNA acceleration method to be ready to take over
from UXA (the current acceleration method), it still remains possible to
switch over to the old method with the following xorg.conf snippet:
Section "Device"
Identifier "Device0"
Driver "intel"
Option "AccelMethod" "UXA"
EndSection
The promise of SNA is that it improves the user experience by providing a
faster, more fluid, desktop, that is both more power efficient and less
prone to crashes than UXA. If it still fails to meet your expections,
please file bugs!
Release 2.21.15 (2013-08-21)
============================
Some build fixes for the BSDs and alternate compiler, and conflicting
configure options and a critcial fix for some PRIME setups.
* Don't fail to configure if DRI1 is not available and the user asks
for both DRI and KMS-only
[Regression from 2.21.14]
* Lots of miscellaneous fixes for older gcc, other compilers and BSD.
* Initial framework support for hosted X.
* Improve transition from fbcon to X with multiple outputs and extended
desktops.
* Ensure the framebuffer exists before checking it against the CRTC
constraints.
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/121234
[Regression from 2.21.10]
* Add RGB overlay support for Ironlake and later.
* Don't release the overlay buffer too early, i.e. before the client
disables the Xv image.
* Tweak the ring switching logic to reduce use of semaphores on
Sandybridge and later - a delicate balancing act between trying to
use the faster engine for the task and preventing concurrent use of
multiple rings.
Release 2.21.14 (2013-08-04)
============================
A few updates for the top-end Haswell systems (notably GT3 and GT3e
systems), in particular, setting the appropriate thread counts for the
larger GPU and handling a few scaling issues with the emedded DRAM. More
important than the performance tuning though is a fix for a critical
issue encountered by a few people on gen4/gen5 systems.
* Initial performance tuning for HSW:GT3e
* Fix a crash with Planetary Annihilation
* Disable triple buffering for compositors
* Reserve space in the exec buffer array for deferred VBOs.
https://bugs.freedesktop.org/show_bug.cgi?id=67504
Release 2.21.13 (2013-07-27)
============================
A minor release to repair the build for non-Linux systems, and to undo a
few more regressions.
* Avoid potential memory corruption with allocations of very small
depth 1 bitmaps.
* Fix source clipping whilst computing copy extents and exposures.
[Regression from 2.21.12]
https://bugs.freedesktop.org/show_bug.cgi?id=66970
* Use /proc/cpuinfo if cpuid4 is not available (old hardware or old
gcc), and repair the build on systems without cpuid.
[Regression from 2.21.12]
* Fix performance regression on Ironlake from inadvertently flushing
after every operation.
[Regression from 2.21.11]
https://bugs.freedesktop.org/show_bug.cgi?id=67157
* Fix conflict handling when probing initial KMS configuration for
ZaphodHeads.
[Regression from 2.21.11]
https://bugs.freedesktop.org/show_bug.cgi?id=67176
* Stop being overly restrictive and rejecting stale DRI2 buffers.
(DRI2 is inherently racy in that the client may have completed and
submitted rendering to buffers that are now invalid on the server.
This race is magnified by bugs within the Xserver where it forgets
to notify the DRI2 clients of certain invalidation events.)
https://bugs.freedesktop.org/show_bug.cgi?id=67210
* Handle a failure to use a GTT mmap for a pixmap upload and try
an alternative method before giving up.
Release 2.21.12 (2013-07-14)
============================
In this release, we clear up the teething troubles from preserving the KMS
configuration, notably external connections on Haswell and plugging in new
outputs after startup were broken. Besides these regression fixes, there
are a couple of fixes for some long standing issues, such as incorrect
rendering on gen2, an infinite loop with very, very large pixmaps and a
slight improvement to the tempermental gen4.
* Allow untiled scanouts again (required for large extended desktops on
gen2 and gen3).
[Regression from 2.21.11]
* Use the correct count of the number of dirty damage boxes for the quick
check on whether the existing damage contains the requested area.
The danger is that we may get a false result and skip migration and so
cause pixmap corruption (in the unlikely event that the application
frequently causes fallbacks).
[Regression from 2.21.11]
https://bugs.freedesktop.org/show_bug.cgi?id=66430
* Fix initial connection probing for multi-function encoders, such as the
external connections on Haswell.
[Regression from 2.21.11, initial connection probing]
https://bugs.freedesktop.org/show_bug.cgi?id=66488
* Fix gen2 rendercopy into a8 surfaces, for example, glyph uploads into
the glyph cache.
* Fix detection of user overrides for initial connection configuration.
The code used the xorg-server-1.15 values, having missed the
introduction of ZoomModes into that release.
[Regression from 2.21.11, initial connection probing]
* Always initialise the gamma ramp, even on unconnected CRTCs.
https://bugs.freedesktop.org/show_bug.cgi?id=66563
[Regression from 2.21.11, initial connection probing]
* Some more tuning of the gen4 vertex corruption workaround. The root
cause behind the GPU using incorrect texture coordinates is still
not solved, but by reducing the maximum number or rectangles in
flight through the GPU we reduce the likelihood of corruption.
* Fix compilation with gcc-4.5
[Regression from 2.21.11]
* Avoid integer overflow when performing tiled uploads and operations
on very large (>28k pixels wide or tall pixmaps)
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1200766
Release 2.21.11 (2013-06-30)
============================
An eventful week. What started with a regression with some builds of
firefox on some machines lead ultimately to the discovery of an older
kernel bug. Aside from the work to fix the image bug and a few other
older bugs that were reported and resolved this week, there is also a
(hopefully) subtle change to the initial configuration of displays. In
the absence of user overrides in xorg.conf, the DDX will try to preserve
the same display configuration as used by the kernel, which hopefully
will be the same configuration as setup by the BIOS. The result should
be a boot sequence that does not resize at all (aka fastboot) - until
the display manager takes over and loads a completely different
configuration!
* Add reference counting of drmMaster for ZaphodHeads
https://bugs.freedesktop.org/show_bug.cgi?id=66041
* Add a GPU flush before changing blend modes on Ironlake
https://bugs.freedesktop.org/show_bug.cgi?id=51422
* Fix occasional missing images for inplace uploads
[regression from 2.21.10]
https://bugs.freedesktop.org/show_bug.cgi?id=66059
* Add missing utility files to the tarball and remove a few unused ones
* Initialise PolyPoint operand state before calling miWideDash
https://bugs.freedesktop.org/show_bug.cgi?id=66104
* Fix redirection handling for rendering into large surfaces
https://bugs.freedesktop.org/show_bug.cgi?id=66168
https://bugs.freedesktop.org/show_bug.cgi?id=66249
* Fix compilation of UXA with xorg-xserver < 1.10
[regression from 2.20.0]
* Fix consideration of gradients for deciding when to migrate render
operations
[performance regression from 2.21.10, the bug itself is older]
https://bugs.freedesktop.org/show_bug.cgi?id=66297
Also fixed this week was:
commit 22fd5ca947b58901927d100d2b1aa0f1672b3435
Author: Chris Wilson <[email protected]>
Date: Fri Jun 28 16:54:08 2013 +0100
drm/i915: Only clear write-domains after a successful wait-seqno
which affects kernels 3.7 - 3.10, coming to a stable kernel near you soon.
Release 2.21.10 (2013-06-22)
============================
Fixes missing support for Xv (with the textured video adaptor) on
Haswell, and an old bug with wide monitors on various generation. Along
with a few other regression fixes and performance tweaks for various
corner cases.
* Do not lose track of fast pageflips across mode changes
[regression from 2.20.8]
* Fix listing of Visuals for Xv
[regression from 2.21.8]
https://bugs.freedesktop.org/show_bug.cgi?id=65479
* Improve coherency of concurrent CPU accesses to a pixmap
https://bugs.freedesktop.org/show_bug.cgi?id=61628
* Set sampler swizzling for textured video on Haswell
https://bugs.freedesktop.org/show_bug.cgi?id=65699
* Apply scanout stride limits
https://bugs.freedesktop.org/show_bug.cgi?id=65099
* Undo the self-copy for cloned pixmaps for loimpress's animations
[regression from 2.21.7]
https://bugs.freedesktop.org/show_bug.cgi?id=65665
Release 2.21.9 (2013-06-06)
===========================
Consolidating the copy-on-write support, hopefully cleaning up the last of
the regressions.
* Restore vsync on textured videos.
[regression from 2.21.8]
https://bugs.freedesktop.org/show_bug.cgi?id=65048
* Fix incorrect ordering of possible_clones with certain outputs, which
can lead to attempting to incorrectly clone 2 outputs and failing to
light them up.
[regression from 2.20.10]
* Fix performance regression from not promoting large fills to the GPU
[regression from 2.21.7]
* Undo the pixmap clone before performing a DRI2CopyRegion
[regression from 2.21.7]
https://bugs.freedesktop.org/show_bug.cgi?id=65250
Release 2.21.8 (2013-05-27)
===========================
A quick release to cleanup a few regressions from the introduction of
copy-on-write support, notably hitting wine applications and a memory
leak for firefox.
* Only mark a PolyFillRect operation as replacing if it is unclipped
https://bugs.freedesktop.org/show_bug.cgi?id=64841
* Prevent potential NULL dereference of damage when checking COW support
* Fix invalidation of clone after dirtying the pixmap via the CPU
* Prevent discarding an operation before requiring it for a fallback
* Fix memory leak from replacing the clone under certain circumstances
https://bugs.freedesktop.org/show_bug.cgi?id=64978
Release 2.21.7 (2013-05-21)
===========================
A couple of weeks turned into a month and a couple of weeks... Amidst
the usual bug fixes, we have added the complete set of Haswell PCI IDs -
hopefully future proofing ourselves against being surprised by new
products. We can also now use the correct term for the top of the range
Haswell variants, GT3.
* Fix several assertion failures hit by Jiri Slaby.
* Allow XvMC to also target overlay/sprite planes.
* Throw in a paranoid MI_FLUSH between BLT and RENDER operations on
Ironlake.
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1168066
* Prevent reuse of old framebuffers after a resize.
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1157678
* Fix compilation with --enable-valgrind and no --enable-debug
* Improve partial migration of render sources.
* Fix origin of trapezoids.
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1178020
* Introduce copy-on-write support for cloning pixmaps. The ultimate
goal here is to efficiently support the TearFree mode of operation,
but this provides immediate benefits with firefox - most importantly
because of the inefficient way it now implements scrolling.
Release 2.21.6 (2013-04-06)
===========================
A surprising highlight of this release is a little refresh to the KMS
support for OpenBSD. OpenBSD now has its own KMS implementation which is
mostly compatible with the interface in Linux, with one or two tweaks
supplied by Mark Kettenis. This release continues to cleanup behaviour
for Haswell.
* Workaround a failure by the xserver to invalidate DRI buffers
following a pixmap change for XComposite redirection.
https://bugs.freedesktop.org/show_bug.cgi?id=62614
* Fix computation of clip extents for stippling
https://bugs.freedesktop.org/show_bug.cgi?id=62618
* Support KMS on OpenBSD, by Mark Kettenis
* Clean up sockets upon CloseScreen (making ourselves better behaved
for muxed setups).
* Fix the tests for AVX/AVX2 support in CPUID and remember to check for
OS support as well.
* Report a monotonic UST value for undisplayed drawables rather than 0
by Daniel Kurtz
* Fix video playback on gen4 through a complex clip (more gen4 GPU woes)
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1162046
Release 2.21.5 (2013-03-21)
===========================
Haswell reintroduces a command to load the scanline window from the
command stream and so requires its own specialised wait-for-vsync routine
- failure to do so was then causing hangs when trying to do tearfree video
or use a compositor.
* Prevent buffer leak if a non-fullscreen Window is closed with multiple
pending swap events.
* Fix offset transformation for fallback gradient paths.
https://bugs.freedesktop.org/show_bug.cgi?id=62198
* Prevent Glamor from crashing if misconfigured.
Thanks to Michel Dänzer.
* Prevent UXA from crashing if torn down during PreInit.
Thanks to Aaron Plattner.
* Prevent miscompilation with different functional units having different
compiler flags. Some functions were expected to be inlined and so
recompiled with the current target. However, some compilers were
choosing to emit subroutine calls instead without noticing that the
ABI was different between the caller and callee - causing corruption.
https://bugs.freedesktop.org/show_bug.cgi?id=62198
* Fix rendering of CompositeTriFan with recent Xorg.
* Apply the video src-offset fix highlighted in the last release!
A typo prevented the fix from working for gen4+.
https://bugs.freedesktop.org/show_bug.cgi?id=62343
* Fix rendering of multiple glyphs to very large destination surfaces
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1156387
* Fix scanline waits for Haswell
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1156679
Release 2.21.4 (2013-03-11)
===========================
More bugs, more fixes, more releases. A minor new feature being introduced
is the runtime detection of CPU instructions sets along with specialised
paths to take advantage of the available CPU.
* Honour LinearFramebuffer for clumsy PowerXpress integration
* Disable read-read optimisations of mappings whilst the root
cause of a corruption issue remains elusive.
https://bugs.freedesktop.org/show_bug.cgi?id=61628
* Disable 8-bpp framebuffers in UXA as the regressions therein
remain unfixed.
* Restart vertex checks after lock contention
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1124576
* Handle Screen Pixmap recreation whilst exported via PRIME.