smbfs_node.c (e81829d0e57f12e730161e2bb9efc4e1f9548414) smbfs_node.c (8f226f4c23e6fd158ad8f3c26be8d185cc0b73a2)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2000-2001 Boris Popov
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

255
256/*
257 * Free smbnode, and give vnode back to system
258 */
259int
260smbfs_reclaim(ap)
261 struct vop_reclaim_args /* {
262 struct vnode *a_vp;
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2000-2001 Boris Popov
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

255
256/*
257 * Free smbnode, and give vnode back to system
258 */
259int
260smbfs_reclaim(ap)
261 struct vop_reclaim_args /* {
262 struct vnode *a_vp;
263 struct thread *a_p;
264 } */ *ap;
265{
266 struct vnode *vp = ap->a_vp;
267 struct vnode *dvp;
268 struct smbnode *np = VTOSMB(vp);
269 struct smbmount *smp = VTOSMBFS(vp);
270
271 SMBVDEBUG("%s,%d\n", np->n_name, vrefcnt(vp));

--- 137 unchanged lines hidden ---
263 } */ *ap;
264{
265 struct vnode *vp = ap->a_vp;
266 struct vnode *dvp;
267 struct smbnode *np = VTOSMB(vp);
268 struct smbmount *smp = VTOSMBFS(vp);
269
270 SMBVDEBUG("%s,%d\n", np->n_name, vrefcnt(vp));

--- 137 unchanged lines hidden ---