diff options
author | ek110237 <none@none> | 2006-02-28 16:59:01 -0800 |
---|---|---|
committer | ek110237 <none@none> | 2006-02-28 16:59:01 -0800 |
commit | 0f2dc02ed2763dadc70bec1db8dd407e16db8e49 (patch) | |
tree | 72ce7def38a4aa038d72bd6602bc31b77b635107 /usr/src/uts/common/fs/zfs/zfs_ctldir.c | |
parent | 3010f05b8e7c41a103780aa9306659706e47f207 (diff) | |
download | illumos-gate-0f2dc02ed2763dadc70bec1db8dd407e16db8e49.tar.gz |
6391609 zfs_fid() missing ZFS_EXIT()
Diffstat (limited to 'usr/src/uts/common/fs/zfs/zfs_ctldir.c')
-rw-r--r-- | usr/src/uts/common/fs/zfs/zfs_ctldir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/uts/common/fs/zfs/zfs_ctldir.c b/usr/src/uts/common/fs/zfs/zfs_ctldir.c index 3aba6d38fb..627db81052 100644 --- a/usr/src/uts/common/fs/zfs/zfs_ctldir.c +++ b/usr/src/uts/common/fs/zfs/zfs_ctldir.c @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -301,6 +300,7 @@ zfsctl_common_fid(vnode_t *vp, fid_t *fidp) if (fidp->fid_len < SHORT_FID_LEN) { fidp->fid_len = SHORT_FID_LEN; + ZFS_EXIT(zfsvfs); return (ENOSPC); } |