Deleted Added
full compact
fuse_vfsops.c (273736) fuse_vfsops.c (280258)
1/*
2 * Copyright (c) 2007-2009 Google Inc. and Amit Singh
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 are
7 * met:
8 *

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

49 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * SUCH DAMAGE.
54 */
55
56#include <sys/cdefs.h>
1/*
2 * Copyright (c) 2007-2009 Google Inc. and Amit Singh
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 are
7 * met:
8 *

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

49 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * SUCH DAMAGE.
54 */
55
56#include <sys/cdefs.h>
57__FBSDID("$FreeBSD: stable/10/sys/fs/fuse/fuse_vfsops.c 273736 2014-10-27 14:38:00Z hselasky $");
57__FBSDID("$FreeBSD: stable/10/sys/fs/fuse/fuse_vfsops.c 280258 2015-03-19 13:37:36Z rwatson $");
58
59#include <sys/types.h>
60#include <sys/module.h>
61#include <sys/systm.h>
62#include <sys/errno.h>
63#include <sys/param.h>
64#include <sys/kernel.h>
58
59#include <sys/types.h>
60#include <sys/module.h>
61#include <sys/systm.h>
62#include <sys/errno.h>
63#include <sys/param.h>
64#include <sys/kernel.h>
65#include <sys/capability.h>
65#include <sys/capsicum.h>
66#include <sys/conf.h>
67#include <sys/filedesc.h>
68#include <sys/uio.h>
69#include <sys/malloc.h>
70#include <sys/queue.h>
71#include <sys/lock.h>
72#include <sys/sx.h>
73#include <sys/mutex.h>

--- 460 unchanged lines hidden ---
66#include <sys/conf.h>
67#include <sys/filedesc.h>
68#include <sys/uio.h>
69#include <sys/malloc.h>
70#include <sys/queue.h>
71#include <sys/lock.h>
72#include <sys/sx.h>
73#include <sys/mutex.h>

--- 460 unchanged lines hidden ---