| 1086 | #endif |
| 1087 | |
| 1088 | static int |
| 1089 | mqfs_inactive(struct vop_inactive_args *ap) |
| 1090 | { |
| 1091 | struct mqfs_node *pn = VTON(ap->a_vp); |
| 1092 | |
| 1093 | if (pn->mn_deleted) |
| 1094 | vrecycle(ap->a_vp); |
| 1095 | return (0); |
| 1096 | } |
| 1097 | |
| 1098 | #if 0 |
| 1099 | struct vop_reclaim_args { |
nothing calls this directly
no test coverage detected