NetBSD/sys/miscfs/genfs
uebayasi 29f5c078cb Revert part which variable initializations within interleaved gotos.
again:	if (...) goto err;
	void *ptr = alloc();
	if (...) goto again;
	if (...) goto err1;
	...
err1:	if (ptr) free(ptr);
err:
	return;

This leaks memory if exited with "goto again; -> goto err;".
2010-01-28 14:25:17 +00:00
..
genfs_io.c Revert part which variable initializations within interleaved gotos. 2010-01-28 14:25:17 +00:00
genfs_node.h Don't forget to tell the result of rw_tryenter(). 2010-01-27 15:52:31 +00:00
genfs_vfsops.c Introduce genfs_statvfs() as pretty much a no-info statvfs and 2009-11-30 10:59:19 +00:00
genfs_vnops.c Don't forget to tell the result of rw_tryenter(). 2010-01-27 15:52:31 +00:00
genfs.h Introduce genfs_statvfs() as pretty much a no-info statvfs and 2009-11-30 10:59:19 +00:00
layer_extern.h Fix some race conditions in rename. 2008-01-28 14:31:15 +00:00
layer_subr.c The VATTR_NULL/VREF/VHOLD/HOLDRELE() macros lost their will to live 2010-01-08 11:35:07 +00:00
layer_vfsops.c The VATTR_NULL/VREF/VHOLD/HOLDRELE() macros lost their will to live 2010-01-08 11:35:07 +00:00
layer_vnops.c The VATTR_NULL/VREF/VHOLD/HOLDRELE() macros lost their will to live 2010-01-08 11:35:07 +00:00
layer.h Replace struct lock on vnodes with a simpler lock object built on 2008-01-30 09:50:19 +00:00
Makefile