cvs commit: src/sys/fs/devfs devfs_devs.c src/sys/kern kern_conf.c src/sys/sys conf.h param.h

Adam Gregoire ebola at psychoholics.org
Thu Mar 17 04:26:59 PST 2005


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 at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/cvs-src
> To unsubscribe, send any mail to "cvs-src-unsubscribe at 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 <ebola at psychoholics.org>



More information about the cvs-src mailing list