From owner-cvs-src-old@FreeBSD.ORG Wed Apr 28 15:39:04 2010 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 9E5A5106564A for ; Wed, 28 Apr 2010 15:39:04 +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 8992E8FC13 for ; Wed, 28 Apr 2010 15:39:04 +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 o3SFd4OP030155 for ; Wed, 28 Apr 2010 15:39:04 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o3SFd4Jt030154 for cvs-src-old@freebsd.org; Wed, 28 Apr 2010 15:39:04 GMT (envelope-from attilio@repoman.freebsd.org) Message-Id: <201004281539.o3SFd4Jt030154@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to attilio@repoman.freebsd.org using -f From: Attilio Rao Date: Wed, 28 Apr 2010 15:38:01 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 io.c src/sys/amd64/include iodev.h src/sys/dev/io iodev.c iodev.h src/sys/i386/i386 io.c src/sys/i386/include iodev.h src/sys/ia64/ia64 iodev_machdep.c src/sys/ia64/include iodev.h 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, 28 Apr 2010 15:39:04 -0000 attilio 2010-04-28 15:38:01 UTC FreeBSD src repository Modified files: sys/amd64/amd64 io.c sys/amd64/include iodev.h sys/dev/io iodev.c sys/i386/i386 io.c sys/i386/include iodev.h sys/ia64/ia64 iodev_machdep.c sys/ia64/include iodev.h Added files: sys/dev/io iodev.h Log: SVN rev 207329 on 2010-04-28 15:38:01Z by attilio - Extract the IODEV_PIO interface from ia64 and make it MI. In the end, it does help fixing /dev/io usage from multithreaded processes. - On i386 and amd64 the old behaviour is kept but multithreaded processes must use the new interface in order to work well. - Support for the other architectures is greatly improved, where necessary, by the necessity to define very small things now. Manpage update will happen shortly. Sponsored by: Sandvine Incorporated PR: threads/116181 Reviewed by: emaste, marcel MFC after: 3 weeks Revision Changes Path 1.4 +6 -34 src/sys/amd64/amd64/io.c 1.4 +18 -3 src/sys/amd64/include/iodev.h 1.6 +137 -9 src/sys/dev/io/iodev.c 1.1 +44 -0 src/sys/dev/io/iodev.h (new) 1.4 +6 -34 src/sys/i386/i386/io.c 1.4 +18 -3 src/sys/i386/include/iodev.h 1.3 +6 -98 src/sys/ia64/ia64/iodev_machdep.c 1.3 +17 -18 src/sys/ia64/include/iodev.h