From owner-cvs-all@FreeBSD.ORG Thu Mar 17 12:26:59 2005 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 2B02516A4CE; Thu, 17 Mar 2005 12:26:59 +0000 (GMT) Received: from mail.psychoholics.org (www.psychoholics.org [64.185.102.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F82843D2D; Thu, 17 Mar 2005 12:26:58 +0000 (GMT) (envelope-from ebola@psychoholics.org) Received: from S0106066606660666.su.shawcable.net (S0106066606660666.su.shawcable.net [24.76.125.52]) by mail.psychoholics.org (Postfix) with ESMTP id 01139157172; Thu, 17 Mar 2005 05:30:11 -0800 (PST) From: Adam Gregoire To: Poul-Henning Kamp In-Reply-To: <200503171207.j2HC70Jd070069@repoman.freebsd.org> References: <200503171207.j2HC70Jd070069@repoman.freebsd.org> Content-Type: text/plain Date: Thu, 17 Mar 2005 07:26:53 -0500 Message-Id: <1111062414.88318.9.camel@S0106066606660666.su.shawcable.net> Mime-Version: 1.0 X-Mailer: Evolution 2.2.0 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/devfs devfs_devs.c src/sys/kern kern_conf.c src/sys/sys conf.h param.h 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, 17 Mar 2005 12:26:59 -0000 On Thu, 2005-03-17 at 12:07 +0000, Poul-Henning Kamp wrote: > phk 2005-03-17 12:07:00 UTC > > FreeBSD src repository > > Modified files: > sys/fs/devfs devfs_devs.c > sys/kern kern_conf.c > sys/sys conf.h param.h > Log: > Prepare for the final onslaught on devices: > > Move uid/gid/mode from cdev to cdevsw. > > Add kind field to use for devd(8) later. > > Bump both D_VERSION and __FreeBSD_version > > Revision Changes Path > 1.35 +3 -3 src/sys/fs/devfs/devfs_devs.c > 1.180 +9 -5 src/sys/kern/kern_conf.c > 1.217 +6 -4 src/sys/sys/conf.h > 1.233 +1 -1 src/sys/sys/param.h > _______________________________________________ > cvs-src@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-src > To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" In src/sys/sys/conf.h #define D_VERSION_00 0x20011966 -#define D_VERSION D_VERSION_00 +#define D_VERSION_01 0x17032005 /* Add d_uid,gid,mode & kind */ +#define D_VERSION D_VERSION_01 Should D_VERSION_01 be 0x20050317 ? -- Adam Gregoire