From owner-cvs-all Sat Aug 14 3: 7:40 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E9421517E; Sat, 14 Aug 1999 03:07:36 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA08450; Sat, 14 Aug 1999 03:05:51 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <199908141005.DAA08450@freefall.freebsd.org> From: Marcel Moolenaar Date: Sat, 14 Aug 1999 03:05:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_ioctl.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk marcel 1999/08/14 03:05:51 PDT Modified files: sys/i386/linux linux_ioctl.c Log: Fix a couple of termio/termios conversion bugs/typos/dupos/brainos and other changes. This is part 1 of the complete termios ioctl fixes. o change type of c_{i|o|c|l}flag in struct termios from unsigned long to unsigned int. The type now matches the Linux definitions. o replaced constants by the corresponding defines in sptab[] for clarity. Since there's no define for 135 baud, its mapping has been dropped. function bsd_to_linux_termios: o Fix typo IXON -> IXANY. o Remove bogus assignment to c_cc[LINUX_VSWTC]. function linux_to_bsd_termios: o Fix dupo LINUX_IXON -> LINUX_IXANY. o Add LINUX_CREAD mapping. o Fix typo IEXTEN -> LINUX_IEXTEN. function linux_to_bsd_termio: o Small optimization: Don't preset the complete c_cc array when we next assign to the first LINUX_NCC entries. Revision Changes Path 1.38 +23 -18 src/sys/i386/linux/linux_ioctl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message