Deleted Added
full compact
cd9660_vfsops.c (222167) cd9660_vfsops.c (230249)
1/*-
2 * Copyright (c) 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley
6 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
7 * Support code is derived from software contributed to Berkeley
8 * by Atsushi Murai (amurai@spec.co.jp).

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

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95
35 */
36
37#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley
6 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
7 * Support code is derived from software contributed to Berkeley
8 * by Atsushi Murai (amurai@spec.co.jp).

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

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vfsops.c 222167 2011-05-22 01:07:54Z rmacklem $");
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vfsops.c 230249 2012-01-17 01:08:01Z mckusick $");
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/namei.h>
43#include <sys/priv.h>
44#include <sys/proc.h>
45#include <sys/kernel.h>
46#include <sys/vnode.h>

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

90
91static int iso_mountfs(struct vnode *devvp, struct mount *mp);
92
93/*
94 * VFS Operations.
95 */
96
97static int
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/namei.h>
43#include <sys/priv.h>
44#include <sys/proc.h>
45#include <sys/kernel.h>
46#include <sys/vnode.h>

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

90
91static int iso_mountfs(struct vnode *devvp, struct mount *mp);
92
93/*
94 * VFS Operations.
95 */
96
97static int
98cd9660_cmount(struct mntarg *ma, void *data, int flags)
98cd9660_cmount(struct mntarg *ma, void *data, uint64_t flags)
99{
100 struct iso_args args;
101 struct export_args exp;
102 int error;
103
104 error = copyin(data, &args, sizeof args);
105 if (error)
106 return (error);

--- 727 unchanged lines hidden ---
99{
100 struct iso_args args;
101 struct export_args exp;
102 int error;
103
104 error = copyin(data, &args, sizeof args);
105 if (error)
106 return (error);

--- 727 unchanged lines hidden ---