https://bugs.freedesktop.org/show_bug.cgi?id=61269
Priority: medium
Bug ID: 61269
Assignee: dri-devel(a)lists.freedesktop.org
Summary: Support libkms on FreeBSD
Severity: normal
Classification: Unclassified
OS: FreeBSD
Reporter: bugzilla(a)tecnocode.co.uk
Hardware: All
Status: NEW
Version: XOrg CVS
Component: libdrm
Product: DRI
Created attachment 75298
--> https://bugs.freedesktop.org/attachment.cgi?id=75298&action=edit
Fix detection of Intel-style atomic primitives on amd64 (patch by Brian Waters)
Series of 3 patches coming up which allow libdrm to be compiled with KMS
support on FreeBSD.
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugs.freedesktop.org/show_bug.cgi?id=49782
Bug #: 49782
Summary: libdrm 2.4.34 fails to build
Classification: Unclassified
Product: DRI
Version: XOrg CVS
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: libdrm
AssignedTo: dri-devel(a)lists.freedesktop.org
ReportedBy: vuntz(a)gnome.org
CCLD dristat
dristat.o: In function `drmWaitVBlank':
/home/abuild/rpmbuild/BUILD/libdrm-2.4.34/tests/../xf86drm.c:1947: undefined
reference to `clock_gettime'
/home/abuild/rpmbuild/BUILD/libdrm-2.4.34/tests/../xf86drm.c:1958: undefined
reference to `clock_gettime'
collect2: error: ld returned 1 exit status
make: *** [dristat] Error 1
My guess is that -lrt should be passed when linking.
--
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
https://bugs.freedesktop.org/show_bug.cgi?id=48599
Bug #: 48599
Summary: Fix compiler warnings in tests/radeon/radeon_ttm.c
Classification: Unclassified
Product: DRI
Version: XOrg CVS
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: libdrm
AssignedTo: dri-devel(a)lists.freedesktop.org
ReportedBy: vuntz(a)gnome.org
Created attachment 59852
--> https://bugs.freedesktop.org/attachment.cgi?id=59852
Fix compiler warnings in tests/radeon/radeon_ttm.c
The patch from openSUSE solves compiler warnings about use of implicit
declared-functions.
radeon_ttm.c: In function 'radeon_open_fd':
radeon_ttm.c:58:5: warning: implicit declaration of function 'drmOpen'
[-Wimplicit-function-declaration]
radeon_ttm.c: In function 'main':
radeon_ttm.c:73:5: warning: implicit declaration of function 'close'
[-Wimplicit-function-declaration]
radeon_ttm.c: At top level:
It was written by Jan Engelhardt <jengelh(a)medozas.de>
--
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
https://bugs.freedesktop.org/show_bug.cgi?id=39534
Summary: failed tests
Product: DRI
Version: XOrg CVS
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: medium
Component: libdrm
AssignedTo: dri-devel(a)lists.freedesktop.org
ReportedBy: guido(a)trentalancia.com
Created an attachment (id=49548)
View: https://bugs.freedesktop.org/attachment.cgi?id=49548
Review: https://bugs.freedesktop.org/review?bug=39534&attachment=49548
Patch to fix udev tests on Intel (when there is actually no Intel drm)
In libdrm from git and latest release (2.4.26), there are some tests that fail:
PASS: openclose
PASS: getversion
PASS: getclient
PASS: getstats
lt-setversion: drmtest.c:46: is_master: Assertion `ret == 0' failed.
/bin/sh: line 5: 382 Aborted ${dir}$tst
FAIL: setversion
lt-updatedraw: drmtest.c:46: is_master: Assertion `ret == 0' failed.
/bin/sh: line 5: 411 Aborted ${dir}$tst
FAIL: updatedraw
PASS: name_from_fd
/bin/sh: line 5: 457 Segmentation fault ${dir}$tst
FAIL: gem_basic
/bin/sh: line 5: 484 Segmentation fault ${dir}$tst
FAIL: gem_flink
/bin/sh: line 5: 510 Segmentation fault ${dir}$tst
FAIL: gem_readwrite
/bin/sh: line 5: 534 Segmentation fault ${dir}$tst
FAIL: gem_mmap
Starting program: /usr/src/libdrm-2.4.26/tests/.libs/gem_basic
[Thread debugging using libthread_db enabled]
Program received signal SIGSEGV, Segmentation fault.
0x000000000040115e in drm_open_matching (pci_glob=0x4014ba "8086:*", flags=0)
at drmtest.c:82
82 if (strcmp(udev_device_get_subsystem(parent), "pci") != 0)
(gdb) where
#0 0x000000000040115e in drm_open_matching (pci_glob=0x4014ba "8086:*",
flags=0) at drmtest.c:82
#1 0x0000000000400f73 in main (argc=1, argv=0x7fffffffe298) at gem_basic.c:91
(gdb) print parent
$1 = (struct udev_device *) 0x0
Something should be done to skip certain udev function calls when parent is
NULL.
See attached patch (which works for both 2.4.26 and git). It avoids the
segmentation fault but perhaps, it produces a false positive, I am not sure:
PASS: gem_basic
failed to open intel drm device, skipping
PASS: gem_flink
failed to open intel drm device, skipping
PASS: gem_readwrite
failed to open intel drm device, skipping
PASS: gem_mmap
I have no Intel drm device. I have a Nouveau device. If I disable Intel drm
from build by proper configure options, such tests are automatically skipped
(but Intel is built by default and it's not easy to figure out what's going in
the current situation).
You can always modify the patch to behave slightly different if such tests
should fail.
--
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
https://bugs.freedesktop.org/show_bug.cgi?id=35721
Summary: Tests should be always in the check_* target
Product: DRI
Version: XOrg CVS
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: libdrm
AssignedTo: dri-devel(a)lists.freedesktop.org
ReportedBy: lu_zero(a)gentoo.org
Created an attachment (id=44919)
--> (https://bugs.freedesktop.org/attachment.cgi?id=44919)
Move the test programs from noinst to check
Right now trying to build libdrm w/out cairo fails unexpectedly:
libdrm-9999/tests/modetest/modetest.c:58:19: fatal error: cairo.h: No such file
or directory
I noticed that the tests subdirs have some tests built unconditionally.
The patch partially fixes that
--
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
https://bugs.freedesktop.org/show_bug.cgi?id=44342
Bug #: 44342
Summary: [i915g] GPU hang when running Khronos Webgl test suite
Classification: Unclassified
Product: Mesa
Version: git
Platform: Other
URL: https://cvs.khronos.org/svn/repos/registry/trunk/publi
c/webgl/sdk/tests/webgl-conformance-tests.html
OS/Version: All
Status: NEW
Severity: critical
Priority: medium
Component: Drivers/Gallium/i915g
AssignedTo: dri-devel(a)lists.freedesktop.org
ReportedBy: pavel.ondracka(a)email.cz
Created attachment 54998
--> https://bugs.freedesktop.org/attachment.cgi?id=54998
terminal output and backtrace
When running Khronos Webgl test suite there is an occasional crash and gpu
hang. This is not 100% reproducible with one test, sometimes it finishes whole
test run OK, sometimes it hangs really fast. Running glsl functions subtests
few time is a row reproduces it here always.
[ 534.984024] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed...
GPU hung
[ 534.984036] [drm] capturing error event; look for more information in
/debug/dri/0/i915_error_state
[ 534.987135] [drm:i915_reset] *ERROR* Failed to reset chip.
from terminal, full output and backtrace attached:
i915_drm_batchbuffer.c:187:i915_drm_batchbuffer_flush: Assertion `ret == 0'
failed.
Intel Corporation 82945G/GZ Integrated Graphics Controller (rev 02)
OpenGL renderer string: Gallium 0.4 on i915 (chipset: 945G)
OpenGL version string: 2.0 Mesa 7.12-devel (git-99fbf7c)
Kernel: 3.1.6-1.fc16.i686
xf86-video-intel: 0dc5c0651cb691fb8811cdf3075b3d322f9d37f8 (with SNA enabled)
X.Org X Server 1.11.3
Firefox: 9.0.1
--
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
https://bugs.freedesktop.org/show_bug.cgi?id=44296
Bug #: 44296
Summary: [i915g] SIGSEGV glxcmds.c:1479
Classification: Unclassified
Product: Mesa
Version: git
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: critical
Priority: medium
Component: Drivers/Gallium/i915g
AssignedTo: dri-devel(a)lists.freedesktop.org
ReportedBy: vlee(a)vmware.com
mesa: ded02bd54b5925ee222d7f426850312236b4f59d
Run piglit glx-get-context-id on i915g.
$ ./bin/glx-get-context-id
Segmentation fault (core dumped)
(gdb) bt full
#0 0x00c777f4 in glXGetContextIDEXT (ctx_user=0x0) at glxcmds.c:1479
ctx = 0x0
#1 0x08049b7c in try_get_context_id (ctx=0x0, mode=invalid)
at piglit/tests/spec/glx_ext_import_context/get-context-id.c:30
pass = true
id = 62914562
#2 0x08049cbc in main (argc=1, argv=0xbfd024d4) at
piglit/tests/spec/glx_ext_import_context/get-context-id.c:70
pass = true
--
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.