null_vnops.c (d64ada501ae33c02e7c4e3ce21962907df814a5a) | null_vnops.c (99648386d333c32640422d89494640cae331c967) |
---|---|
1/* 2 * Copyright (c) 1992, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * John Heidemann of the UCLA Ficus project. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 757 unchanged lines hidden (view full) --- 766 767static int 768null_print(ap) 769 struct vop_print_args /* { 770 struct vnode *a_vp; 771 } */ *ap; 772{ 773 register struct vnode *vp = ap->a_vp; | 1/* 2 * Copyright (c) 1992, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * John Heidemann of the UCLA Ficus project. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 757 unchanged lines hidden (view full) --- 766 767static int 768null_print(ap) 769 struct vop_print_args /* { 770 struct vnode *a_vp; 771 } */ *ap; 772{ 773 register struct vnode *vp = ap->a_vp; |
774 printf("\ttag %s, vp=%p, lowervp=%p\n", vp->v_tag, vp, 775 NULLVPTOLOWERVP(vp)); | 774 printf("\tvp=%p, lowervp=%p\n", vp, NULLVPTOLOWERVP(vp)); |
776 return (0); 777} 778 779/* 780 * Let an underlying filesystem do the work 781 */ 782static int 783null_createvobject(ap) --- 79 unchanged lines hidden --- | 775 return (0); 776} 777 778/* 779 * Let an underlying filesystem do the work 780 */ 781static int 782null_createvobject(ap) --- 79 unchanged lines hidden --- |