From owner-svn-ports-branches@freebsd.org Sat Sep 5 14:34:19 2015 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76B519C99F5; Sat, 5 Sep 2015 14:34:19 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D0D01396; Sat, 5 Sep 2015 14:34:19 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t85EYJlV093422; Sat, 5 Sep 2015 14:34:19 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t85EYIXh093420; Sat, 5 Sep 2015 14:34:18 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201509051434.t85EYIXh093420@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sat, 5 Sep 2015 14:34:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r396175 - in branches/2015Q3/x11-servers/xorg-server: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Sep 2015 14:34:19 -0000 Author: dim (src committer) Date: Sat Sep 5 14:34:18 2015 New Revision: 396175 URL: https://svnweb.freebsd.org/changeset/ports/396175 Log: MFH: r396167 Disable use of SSE instructions in Xorg's xf86SlowBcopy() function. When such instructions are used to copy data from/to mapped video memory, some hypervisors (e.g. KVM, Microsoft Hyper-V) can generate SIGILL or SIGBUS exceptions, causing Xorg to crash. Reported by: nogcjx@fastmail.fm Approved by: ports-secteam (feld) PR: 202643 Added: branches/2015Q3/x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-misc-Makefile.in - copied unchanged from r396167, head/x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-misc-Makefile.in Modified: branches/2015Q3/x11-servers/xorg-server/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/x11-servers/xorg-server/Makefile ============================================================================== --- branches/2015Q3/x11-servers/xorg-server/Makefile Sat Sep 5 14:21:01 2015 (r396174) +++ branches/2015Q3/x11-servers/xorg-server/Makefile Sat Sep 5 14:34:18 2015 (r396175) @@ -3,7 +3,7 @@ PORTNAME?= xorg-server PORTVERSION= 1.14.7 -PORTREVISION?= 5 +PORTREVISION?= 6 PORTEPOCH?= 1 CATEGORIES= x11-servers MASTER_SITES= XORG/individual/xserver Copied: branches/2015Q3/x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-misc-Makefile.in (from r396167, head/x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-misc-Makefile.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q3/x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-misc-Makefile.in Sat Sep 5 14:34:18 2015 (r396175, copy of r396167, head/x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-misc-Makefile.in) @@ -0,0 +1,12 @@ +--- hw/xfree86/os-support/misc/Makefile.in.orig 2015-09-03 22:36:34.000000000 +0000 ++++ hw/xfree86/os-support/misc/Makefile.in 2015-09-03 22:33:10.000000000 +0000 +@@ -445,7 +445,8 @@ libmisc_la_SOURCES = SlowBcopy.c + + #AM_LDFLAGS = -r + INCLUDES = $(XORG_INCS) +-AM_CFLAGS = $(XORG_CFLAGS) $(DIX_CFLAGS) ++@I386_VIDEO_TRUE@I386_VIDEO_CFLAGS = -mno-sse ++AM_CFLAGS = $(I386_VIDEO_CFLAGS) $(XORG_CFLAGS) $(DIX_CFLAGS) + EXTRA_DIST = $(I386_SRCS) $(PORTIO_SRCS) + all: all-am +