From: Ben Gras Date: Tue, 16 Dec 2008 16:11:24 +0000 (+0000) Subject: put put_vnode() back where it belongs! X-Git-Tag: v3.1.4~169 X-Git-Url: http://zhaoyanbai.com/repos/man.dnssec-dsfromkey.html?a=commitdiff_plain;h=34d5401ed4b52abc730f1ccc1314ce102b3d6686;p=minix.git put put_vnode() back where it belongs! --- diff --git a/servers/vfs/open.c b/servers/vfs/open.c index 126b77513..4050f89a3 100644 --- a/servers/vfs/open.c +++ b/servers/vfs/open.c @@ -334,8 +334,8 @@ int *created; #if 0 printf( "vfs:create_open: creating existing file with O_EXCL\n"); - put_vnode(dir_vp); #endif + put_vnode(dir_vp); return r; } diff --git a/servers/vfs/vnode.h b/servers/vfs/vnode.h index b53dd5ae5..dddd98480 100644 --- a/servers/vfs/vnode.h +++ b/servers/vfs/vnode.h @@ -39,3 +39,4 @@ EXTERN struct vnode { #define ISEEK 1 /* i_seek = ISEEK if last op was SEEK */ +#define SANITYCHECK do { if(!check_vrefs()) { printf("VFS:%s:%d: vref check failed\n", __FILE__, __LINE__); util_stacktrace(); } } while(0)