Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 01/24/1997 00:30:02
cgd
Thu Jan 23 16:24:54 PST 1997
Update of /cvsroot/src/sys/isofs/cd9660
In directory netbsd1:/var/slash-tmp/cvs-serv9002

Added Files:
	cd9660_extern.h 
Log Message:
split iso.h into two parts: iso.h (which now contains _only_ definitions
about ISO9660 file system structure), and cd9660_extern.h (which now
contains the definitions and data structures used by the kernel).
There's lots of other stuff scattered around this code that should go
into cd9660_extern.h, but doesn't need to right now.  This changed patterned
on ffs, which has 'fs.h' which describes the FS structure, and ffs_extern.h
for kernel-internals gunk.  Now libsa can include iso.h without the nasty
hack that was there before.


cgd
Thu Jan 23 16:26:32 PST 1997
Update of /cvsroot/src/sys/isofs/cd9660
In directory netbsd1:/var/slash-tmp/cvs-serv9021

Modified Files:
	iso.h 
Log Message:
split iso.h into two parts: iso.h (which now contains _only_ definitions
about ISO9660 file system structure), and cd9660_extern.h (which now
contains the definitions and data structures used by the kernel).
There's lots of other stuff scattered around this code that should go
into cd9660_extern.h, but doesn't need to right now.  This changed patterned
on ffs, which has 'fs.h' which describes the FS structure, and ffs_extern.h
for kernel-internals gunk.  Now libsa can include iso.h without the nasty
hack that was there before.

Also, clean up the isonum_* definitions so that the #ifdefs aren't
impossibly spread apart.  (Now the #ifdefs are _in_ the functions.  This
leads to #ifdefs that are only a few lines long, rather than a few _pages_
long, as well as a reduction of duplication of function headers, etc.)
Note that isonum_7{21,22,31,32} are currently missing.


cgd
Thu Jan 23 16:27:36 PST 1997
Update of /cvsroot/src/sys/isofs/cd9660
In directory netbsd1:/var/slash-tmp/cvs-serv9546

Modified Files:
	cd9660_bmap.c cd9660_lookup.c cd9660_node.c cd9660_rrip.c 
	cd9660_util.c cd9660_vfsops.c cd9660_vnops.c 
Log Message:
update for iso.h/cd9660_extern.h header changes

cgd
Thu Jan 23 16:29:19 PST 1997
Update of /cvsroot/src/sys/lib/libsa
In directory netbsd1:/var/slash-tmp/cvs-serv10123

Modified Files:
	cd9660.c 
Log Message:
update for iso.h changes which remove the need for the nastiness that was here