From owner-cvs-all@FreeBSD.ORG Wed Oct 1 20:58:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 155B416A4B3; Wed, 1 Oct 2003 20:58:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8814443F3F; Wed, 1 Oct 2003 20:58:00 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h923w0XJ089135; Wed, 1 Oct 2003 20:58:00 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h923w0YV089130; Wed, 1 Oct 2003 20:58:00 -0700 (PDT) (envelope-from rwatson) Message-Id: <200310020358.h923w0YV089130@repoman.freebsd.org> From: Robert Watson Date: Wed, 1 Oct 2003 20:58:00 -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/kern init_main.c kern_descrip.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Oct 2003 03:58:01 -0000 rwatson 2003/10/01 20:58:00 PDT FreeBSD src repository Modified files: sys/kern init_main.c kern_descrip.c Log: Remove the global variable 'cmask', which was used to initialize the fd_cmask field in the file descriptor structure for the first process indirectly from CMASK, and when an fd structure is initialized before being filled in, and instead just use CMASK. This appears to be an artifact left over from the initial integration of quotas into BSD. Suggested by: peter Revision Changes Path 1.238 +1 -3 src/sys/kern/init_main.c 1.214 +1 -2 src/sys/kern/kern_descrip.c