Deleted Added
full compact
fdesc_vfsops.c (1541) fdesc_vfsops.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 donated to Berkeley by
6 * Jan-Simon Pendry.
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 * @(#)fdesc_vfsops.c 8.4 (Berkeley) 1/21/94
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 donated to Berkeley by
6 * Jan-Simon Pendry.
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 * @(#)fdesc_vfsops.c 8.4 (Berkeley) 1/21/94
37 *
38 * $Id: fdesc_vfsops.c,v 1.9 1993/04/06 15:28:33 jsp Exp $
38 * $Id: fdesc_vfsops.c,v 1.1.1.1 1994/05/24 10:04:59 rgrimes Exp $
39 */
40
41/*
42 * /dev/fd Filesystem
43 */
44
45#include <sys/param.h>
46#include <sys/systm.h>
39 */
40
41/*
42 * /dev/fd Filesystem
43 */
44
45#include <sys/param.h>
46#include <sys/systm.h>
47#include <sys/kernel.h>
47#include <sys/time.h>
48#include <sys/types.h>
49#include <sys/proc.h>
50#include <sys/resourcevar.h>
51#include <sys/filedesc.h>
52#include <sys/vnode.h>
53#include <sys/mount.h>
54#include <sys/namei.h>

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

281 fdesc_quotactl,
282 fdesc_statfs,
283 fdesc_sync,
284 fdesc_vget,
285 fdesc_fhtovp,
286 fdesc_vptofh,
287 fdesc_init,
288};
48#include <sys/time.h>
49#include <sys/types.h>
50#include <sys/proc.h>
51#include <sys/resourcevar.h>
52#include <sys/filedesc.h>
53#include <sys/vnode.h>
54#include <sys/mount.h>
55#include <sys/namei.h>

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

282 fdesc_quotactl,
283 fdesc_statfs,
284 fdesc_sync,
285 fdesc_vget,
286 fdesc_fhtovp,
287 fdesc_vptofh,
288 fdesc_init,
289};
290
291VFS_SET(fdesc_vfsops, fdesc, MOUNT_FDESC, 0);