Deleted Added
full compact
udf_vfsops.c (140822) udf_vfsops.c (141616)
1/*-
2 * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/fs/udf/udf_vfsops.c 140822 2005-01-25 15:52:04Z phk $
26 * $FreeBSD: head/sys/fs/udf/udf_vfsops.c 141616 2005-02-10 12:02:37Z phk $
27 */
28
29/* udf_vfsops.c */
30/* Implement the VFS side of things */
31
32/*
33 * Ok, here's how it goes. The UDF specs are pretty clear on how each data
34 * structure is made up, but not very clear on how they relate to each other.

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

94
95#include <vm/uma.h>
96
97#include <fs/udf/ecma167-udf.h>
98#include <fs/udf/osta.h>
99#include <fs/udf/udf.h>
100#include <fs/udf/udf_mount.h>
101
27 */
28
29/* udf_vfsops.c */
30/* Implement the VFS side of things */
31
32/*
33 * Ok, here's how it goes. The UDF specs are pretty clear on how each data
34 * structure is made up, but not very clear on how they relate to each other.

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

94
95#include <vm/uma.h>
96
97#include <fs/udf/ecma167-udf.h>
98#include <fs/udf/osta.h>
99#include <fs/udf/udf.h>
100#include <fs/udf/udf_mount.h>
101
102MALLOC_DEFINE(M_UDFMOUNT, "UDF mount", "UDF mount structure");
102static MALLOC_DEFINE(M_UDFMOUNT, "UDF mount", "UDF mount structure");
103MALLOC_DEFINE(M_UDFFENTRY, "UDF fentry", "UDF file entry structure");
104
105struct iconv_functions *udf_iconv = NULL;
106
107/* Zones */
108uma_zone_t udf_zone_trans = NULL;
109uma_zone_t udf_zone_node = NULL;
110uma_zone_t udf_zone_ds = NULL;

--- 694 unchanged lines hidden ---
103MALLOC_DEFINE(M_UDFFENTRY, "UDF fentry", "UDF file entry structure");
104
105struct iconv_functions *udf_iconv = NULL;
106
107/* Zones */
108uma_zone_t udf_zone_trans = NULL;
109uma_zone_t udf_zone_node = NULL;
110uma_zone_t udf_zone_ds = NULL;

--- 694 unchanged lines hidden ---