From owner-cvs-src-old@FreeBSD.ORG Fri May 29 06:43:02 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 B90621065670 for ; Fri, 29 May 2009 06:43:02 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 88D408FC0A for ; Fri, 29 May 2009 06:43:02 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n4T6h2J4082829 for ; Fri, 29 May 2009 06:43:02 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n4T6h2iM082828 for cvs-src-old@freebsd.org; Fri, 29 May 2009 06:43:02 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <200905290643.n4T6h2iM082828@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Fri, 29 May 2009 06:41:23 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cfe cfe_console.c src/sys/dev/dcons dcons_os.c src/sys/dev/nmdm nmdm.c src/sys/dev/ofw ofw_console.c src/sys/dev/rp rp.c src/sys/dev/si si.c src/sys/dev/syscons syscons.c sysmouse.c src/sys/dev/uart uart_tty.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: Fri, 29 May 2009 06:43:03 -0000 ed 2009-05-29 06:41:23 UTC FreeBSD src repository Modified files: sys/dev/cfe cfe_console.c sys/dev/dcons dcons_os.c sys/dev/nmdm nmdm.c sys/dev/ofw ofw_console.c sys/dev/rp rp.c sys/dev/si si.c sys/dev/syscons syscons.c sysmouse.c sys/dev/uart uart_tty.c sys/dev/usb/serial usb_serial.c sys/dev/xen/console console.c sys/ia64/ia64 ssc.c sys/kern tty.c tty_pts.c sys/sun4v/sun4v hvcons.c sys/sys tty.h Log: SVN rev 193018 on 2009-05-29 06:41:23Z by ed Last minute TTY API change: remove mutex argument from tty_alloc(). I don't want people to override the mutex when allocating a TTY. It has to be there, to keep drivers like syscons happy. So I'm creating a tty_alloc_mutex() which can be used in those cases. tty_alloc_mutex() should eventually be removed. The advantage of this approach, is that we can just remove a function, without breaking the regular API in the future. Revision Changes Path 1.7 +1 -1 src/sys/dev/cfe/cfe_console.c 1.29 +1 -1 src/sys/dev/dcons/dcons_os.c 1.43 +2 -2 src/sys/dev/nmdm/nmdm.c 1.42 +1 -1 src/sys/dev/ofw/ofw_console.c 1.76 +1 -1 src/sys/dev/rp/rp.c 1.144 +1 -1 src/sys/dev/si/si.c 1.471 +1 -1 src/sys/dev/syscons/syscons.c 1.34 +1 -1 src/sys/dev/syscons/sysmouse.c 1.33 +1 -1 src/sys/dev/uart/uart_tty.c 1.6 +1 -1 src/sys/dev/usb/serial/usb_serial.c 1.13 +1 -1 src/sys/dev/xen/console/console.c 1.32 +1 -1 src/sys/ia64/ia64/ssc.c 1.317 +8 -1 src/sys/kern/tty.c 1.32 +2 -2 src/sys/kern/tty_pts.c 1.10 +1 -1 src/sys/sun4v/sun4v/hvcons.c 1.114 +2 -1 src/sys/sys/tty.h