From owner-freebsd-current@FreeBSD.ORG Mon Mar 14 23:28:34 2005 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADC9B16A4CE for ; Mon, 14 Mar 2005 23:28:34 +0000 (GMT) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [128.30.28.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5145A43D41 for ; Mon, 14 Mar 2005 23:28:34 +0000 (GMT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.9/8.12.9) with ESMTP id j2ENSQaa092442 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK CN=khavrinen.lcs.mit.edu issuer=SSL+20Client+20CA); Mon, 14 Mar 2005 18:28:26 -0500 (EST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.9/8.12.9/Submit) id j2ENSQmv092439; Mon, 14 Mar 2005 18:28:26 -0500 (EST) (envelope-from wollman) Date: Mon, 14 Mar 2005 18:28:26 -0500 (EST) From: Garrett Wollman Message-Id: <200503142328.j2ENSQmv092439@khavrinen.lcs.mit.edu> To: "M. Warner Losh" In-Reply-To: <20050313.152624.59920781.imp@bsdimp.com> References: <2617.172.16.0.199.1110748478.squirrel@wettoast.dyndns.org> <20050313.152624.59920781.imp@bsdimp.com> X-Spam-Score: -19.8 () IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES X-Scanned-By: MIMEDefang 2.37 X-Mailman-Approved-At: Tue, 15 Mar 2005 13:07:25 +0000 cc: freebsd-current@FreeBSD.ORG Subject: Re: COMPAT_43 ? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Mar 2005 23:28:34 -0000 < said: > (6) The old creat, mknod, lseek, stat, truncate, getdirentries > interface are covered by this as well (again, so old > binaries can work, and likely there's some emulation code > that depends on it). In at least a significant number of these cases, the "old binaries" would be 4.3 binaries on a VAX. Look at rev. 1.1 of syscalls.master and notice how many of them were already marked COMPAT in 4.4-Lite. I believe creat, wait, sigvec, sigblock, sigsetmask, and killpg were also COMPAT_43 in Net/2. creat() has never been a syscall in the entire life of FreeBSD, but we're still carrying around the code to implement it for "compatibility" with old VAX binaries. -GAWollman