Deleted Added
full compact
cd9660_vnops.c (232493) cd9660_vnops.c (232821)
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_vnops.c 8.19 (Berkeley) 5/27/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_vnops.c 8.19 (Berkeley) 5/27/95
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vnops.c 232493 2012-03-04 14:51:42Z kib $");
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vnops.c 232821 2012-03-11 12:19:58Z kib $");
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/namei.h>
43#include <sys/kernel.h>
44#include <sys/conf.h>
45#include <sys/stat.h>
46#include <sys/bio.h>
47#include <sys/buf.h>
48#include <sys/mount.h>
49#include <sys/vnode.h>
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/namei.h>
43#include <sys/kernel.h>
44#include <sys/conf.h>
45#include <sys/stat.h>
46#include <sys/bio.h>
47#include <sys/buf.h>
48#include <sys/mount.h>
49#include <sys/vnode.h>
50#include <fs/fifofs/fifo.h>
51#include <sys/malloc.h>
52#include <sys/dirent.h>
53#include <sys/unistd.h>
54#include <sys/filio.h>
55
56#include <vm/vm.h>
57#include <vm/vnode_pager.h>
58#include <vm/uma.h>

--- 819 unchanged lines hidden ---
50#include <sys/malloc.h>
51#include <sys/dirent.h>
52#include <sys/unistd.h>
53#include <sys/filio.h>
54
55#include <vm/vm.h>
56#include <vm/vnode_pager.h>
57#include <vm/uma.h>

--- 819 unchanged lines hidden ---