Summary: | Major performance loss compared to 6.9.0 | ||
---|---|---|---|
Product: | xorg | Reporter: | Lukas Hejtmanek <xhejtman> |
Component: | Server/General | Assignee: | Xorg Project Team <xorg-team> |
Status: | RESOLVED DUPLICATE | QA Contact: | |
Severity: | critical | ||
Priority: | high | ||
Version: | git | ||
Hardware: | x86 (IA32) | ||
OS: | Linux (All) | ||
Whiteboard: | |||
i915 platform: | i915 features: |
Description
Lukas Hejtmanek
2006-03-11 06:43:21 UTC
Problems with 2D graphic causes bug in configure.ac in xserver/xorg package that for Linux does not define HAS_MTRR_SUPPORT. Problems with 3D remain. (In reply to comment #1) > Problems with 2D graphic causes bug in configure.ac in xserver/xorg package that > for Linux does not define HAS_MTRR_SUPPORT. > > Problems with 3D remain. Patch for configure.ac: --- configure.ac 2006-03-09 15:23:57.000000000 +0100 +++ configure.ac.new 2006-03-23 00:30:21.000000000 +0100 @@ -115,7 +115,11 @@ AM_CONDITIONAL(FBDEVHW, [test "x$FBDEV" = xyes]) dnl MTRR header -AC_CHECK_HEADERS([asm/mtrr.h]) +AC_CHECK_HEADERS([asm/mtrr.h], ac_cv_mtrr_h=yes) +if test "x$ac_cv_mtrr_h" = xyes; then + AC_DEFINE(HAS_MTRR_SUPPORT, 1, [Define to 1 if Linux MTRR support is + available]) +fi dnl BSD MTRR header AC_CHECK_HEADERS([sys/memrange.h], ac_cv_memrange_h=yes) |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.