Date: Fri, 29 May 2009 06:41:23 +0000 (UTC) From: Ed Schouten <ed@FreeBSD.org> To: cvs-src-old@freebsd.org 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 ... Message-ID: <200905290643.n4T6h2iM082828@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905290643.n4T6h2iM082828>
