Deleted Added
full compact
vfs_syscalls.c (53225) vfs_syscalls.c (53350)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94
39 * $FreeBSD: head/sys/kern/vfs_syscalls.c 53225 1999-11-16 16:28:58Z phk $
39 * $FreeBSD: head/sys/kern/vfs_syscalls.c 53350 1999-11-18 08:14:20Z dillon $
40 */
41
42/* For 4.3 integer FS ID compatibility */
43#include "opt_compat.h"
44
45#include <sys/param.h>
46#include <sys/systm.h>
47#include <sys/buf.h>

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

1740 nsb->st_atimespec = sb->st_atimespec;
1741 nsb->st_mtimespec = sb->st_mtimespec;
1742 nsb->st_ctimespec = sb->st_ctimespec;
1743 nsb->st_size = sb->st_size;
1744 nsb->st_blocks = sb->st_blocks;
1745 nsb->st_blksize = sb->st_blksize;
1746 nsb->st_flags = sb->st_flags;
1747 nsb->st_gen = sb->st_gen;
40 */
41
42/* For 4.3 integer FS ID compatibility */
43#include "opt_compat.h"
44
45#include <sys/param.h>
46#include <sys/systm.h>
47#include <sys/buf.h>

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

1740 nsb->st_atimespec = sb->st_atimespec;
1741 nsb->st_mtimespec = sb->st_mtimespec;
1742 nsb->st_ctimespec = sb->st_ctimespec;
1743 nsb->st_size = sb->st_size;
1744 nsb->st_blocks = sb->st_blocks;
1745 nsb->st_blksize = sb->st_blksize;
1746 nsb->st_flags = sb->st_flags;
1747 nsb->st_gen = sb->st_gen;
1748 nsb->st_qspare[0] = sb->st_qspare[0];
1749 nsb->st_qspare[1] = sb->st_qspare[1];
1748}
1749
1750#ifndef _SYS_SYSPROTO_H_
1751struct nstat_args {
1752 char *path;
1753 struct nstat *ub;
1754};
1755#endif

--- 1583 unchanged lines hidden ---
1750}
1751
1752#ifndef _SYS_SYSPROTO_H_
1753struct nstat_args {
1754 char *path;
1755 struct nstat *ub;
1756};
1757#endif

--- 1583 unchanged lines hidden ---