cd9660_node.c (c5c3ba6b43cac20dc9432eac15758d41cb2b8b1f) | cd9660_node.c (8f226f4c23e6fd158ad8f3c26be8d185cc0b73a2) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1982, 1986, 1989, 1994, 1995 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley 8 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension --- 72 unchanged lines hidden (view full) --- 81 82/* 83 * Reclaim an inode so that it can be used for other purposes. 84 */ 85int 86cd9660_reclaim(ap) 87 struct vop_reclaim_args /* { 88 struct vnode *a_vp; | 1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1982, 1986, 1989, 1994, 1995 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley 8 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension --- 72 unchanged lines hidden (view full) --- 81 82/* 83 * Reclaim an inode so that it can be used for other purposes. 84 */ 85int 86cd9660_reclaim(ap) 87 struct vop_reclaim_args /* { 88 struct vnode *a_vp; |
89 struct thread *a_td; | |
90 } */ *ap; 91{ 92 struct vnode *vp = ap->a_vp; 93 94 /* 95 * Remove the inode from its hash chain. 96 */ 97 vfs_hash_remove(vp); --- 230 unchanged lines hidden --- | 89 } */ *ap; 90{ 91 struct vnode *vp = ap->a_vp; 92 93 /* 94 * Remove the inode from its hash chain. 95 */ 96 vfs_hash_remove(vp); --- 230 unchanged lines hidden --- |