ufs_inode.c (59abbffacd1e61792097e0d467fa40e1749d27e8) ufs_inode.c (8f226f4c23e6fd158ad8f3c26be8d185cc0b73a2)
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 1991, 1993, 1995
5 * The Regents of the University of California. All rights reserved.
6 * (c) UNIX System Laboratories, Inc.
7 * All or some portions of this file are derived from material licensed
8 * to the University of California by American Telephone and Telegraph

--- 208 unchanged lines hidden (view full) ---

217
218/*
219 * Reclaim an inode so that it can be used for other purposes.
220 */
221int
222ufs_reclaim(ap)
223 struct vop_reclaim_args /* {
224 struct vnode *a_vp;
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 1991, 1993, 1995
5 * The Regents of the University of California. All rights reserved.
6 * (c) UNIX System Laboratories, Inc.
7 * All or some portions of this file are derived from material licensed
8 * to the University of California by American Telephone and Telegraph

--- 208 unchanged lines hidden (view full) ---

217
218/*
219 * Reclaim an inode so that it can be used for other purposes.
220 */
221int
222ufs_reclaim(ap)
223 struct vop_reclaim_args /* {
224 struct vnode *a_vp;
225 struct thread *a_td;
226 } */ *ap;
227{
228 struct vnode *vp = ap->a_vp;
229 struct inode *ip = VTOI(vp);
230#ifdef QUOTA
231 int i;
232
233 for (i = 0; i < MAXQUOTAS; i++) {

--- 29 unchanged lines hidden ---
225 } */ *ap;
226{
227 struct vnode *vp = ap->a_vp;
228 struct inode *ip = VTOI(vp);
229#ifdef QUOTA
230 int i;
231
232 for (i = 0; i < MAXQUOTAS; i++) {

--- 29 unchanged lines hidden ---