Deleted Added
full compact
null_vnops.c (2142) null_vnops.c (2946)
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

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

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)null_vnops.c 8.1 (Berkeley) 6/10/93
37 *
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

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

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)null_vnops.c 8.1 (Berkeley) 6/10/93
37 *
38 * $Id: null_vnops.c,v 1.2 1994/08/02 07:45:06 davidg Exp $
38 * $Id: null_vnops.c,v 1.3 1994/08/20 03:48:51 davidg Exp $
39 */
40
41/*
42 * Null Layer
43 *
44 * (See mount_null(8) for more information.)
45 *
46 * The null layer duplicates a portion of the file system

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

450
451 { &vop_strategy_desc, null_strategy },
452 { &vop_bwrite_desc, null_bwrite },
453
454 { (struct vnodeop_desc*)NULL, (int(*)())NULL }
455};
456struct vnodeopv_desc null_vnodeop_opv_desc =
457 { &null_vnodeop_p, null_vnodeop_entries };
39 */
40
41/*
42 * Null Layer
43 *
44 * (See mount_null(8) for more information.)
45 *
46 * The null layer duplicates a portion of the file system

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

450
451 { &vop_strategy_desc, null_strategy },
452 { &vop_bwrite_desc, null_bwrite },
453
454 { (struct vnodeop_desc*)NULL, (int(*)())NULL }
455};
456struct vnodeopv_desc null_vnodeop_opv_desc =
457 { &null_vnodeop_p, null_vnodeop_entries };
458
459VNODEOP_SET(null_vnodeop_opv_desc);