From owner-cvs-src@FreeBSD.ORG Sat Jun 28 12:32:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2940F37B401; Sat, 28 Jun 2003 12:32:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EB664400D; Sat, 28 Jun 2003 12:32:07 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5SJW70U055175; Sat, 28 Jun 2003 12:32:07 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5SJW7ds055174; Sat, 28 Jun 2003 12:32:07 -0700 (PDT) Message-Id: <200306281932.h5SJW7ds055174@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 28 Jun 2003 12:32:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/linux linux_ioctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jun 2003 19:32:08 -0000 marcel 2003/06/28 12:32:07 PDT FreeBSD src repository Modified files: sys/compat/linux linux_ioctl.c Log: Don't map LINUX_POSIX_VDISABLE to _POSIX_VDISABLE and vice versa for the VMIN and VTIME members of the c_cc array. These members are not special control characters. By not excluding these members we changed the noncanonical mode input processing when both members were 0 on entry (=LINUX_POSIX_VDISABLE) as we would remap them to 255 (=_POSIX_VDISABLE). See termios(4) case A for how that screws up your terminal I/O. PR: 23173 Originator: Bjarne Blichfeldt Patch by: Boris Nikolaus (original submission) Philipp Mergenthaler Reminders by: Joseph Holland King MFC after: 5 days Revision Changes Path 1.109 +4 -2 src/sys/compat/linux/linux_ioctl.c