From owner-cvs-src-old@FreeBSD.ORG Wed Nov 4 01:33:23 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 833AF1065782 for ; Wed, 4 Nov 2009 01:33:23 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 70BD08FC14 for ; Wed, 4 Nov 2009 01:33:23 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id nA41XN1k038084 for ; Wed, 4 Nov 2009 01:33:23 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nA41XN53038083 for cvs-src-old@freebsd.org; Wed, 4 Nov 2009 01:33:23 GMT (envelope-from attilio@repoman.freebsd.org) Message-Id: <200911040133.nA41XN53038083@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to attilio@repoman.freebsd.org using -f From: Attilio Rao Date: Wed, 4 Nov 2009 01:32:59 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 identcpu.c src/sys/i386/i386 identcpu.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Nov 2009 01:33:23 -0000 attilio 2009-11-04 01:32:59 UTC FreeBSD src repository Modified files: sys/amd64/amd64 identcpu.c sys/i386/i386 identcpu.c Log: SVN rev 198868 on 2009-11-04 01:32:59Z by attilio Opteron rev E family of processor expose a bug where, in very rare ocassions, memory barriers semantic is not honoured by the hardware itself. As a result, some random breakage can happen in uninvestigable ways (for further explanation see at the content of the commit itself). As long as just a specific familly is bugged of an entire architecture is broken, a complete fix-up is impratical without harming to some extents the other correct cases. Considering that (and considering the frequency of the bug exposure) just print out a warning message if the affected machine is identified. Pointed out by: Samy Al Bahra Help on wordings by: jeff MFC: 3 days Revision Changes Path 1.176 +18 -0 src/sys/amd64/amd64/identcpu.c 1.204 +18 -0 src/sys/i386/i386/identcpu.c