Deleted Added
full compact
zfs_ioctl.c (168775) zfs_ioctl.c (168962)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

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

20 */
21/*
22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
24 */
25
26#pragma ident "%Z%%M% %I% %E% SMI"
27
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

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

20 */
21/*
22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
24 */
25
26#pragma ident "%Z%%M% %I% %E% SMI"
27
28#include <sys/types.h>
28#include <sys/param.h>
29#include <sys/systm.h>
30#include <sys/conf.h>
31#include <sys/kernel.h>
32#include <sys/lock.h>
33#include <sys/malloc.h>
34#include <sys/mutex.h>
35#include <sys/proc.h>
36#include <sys/errno.h>
37#include <sys/uio.h>
29#include <sys/param.h>
30#include <sys/systm.h>
31#include <sys/conf.h>
32#include <sys/kernel.h>
33#include <sys/lock.h>
34#include <sys/malloc.h>
35#include <sys/mutex.h>
36#include <sys/proc.h>
37#include <sys/errno.h>
38#include <sys/uio.h>
39#include <sys/buf.h>
38#include <sys/file.h>
39#include <sys/kmem.h>
40#include <sys/conf.h>
41#include <sys/cmn_err.h>
42#include <sys/stat.h>
43#include <sys/zfs_ioctl.h>
44#include <sys/zap.h>
45#include <sys/spa.h>
46#include <sys/spa_impl.h>
47#include <sys/vdev.h>
48#include <sys/vdev_impl.h>
49#include <sys/dmu.h>
50#include <sys/dsl_dir.h>
51#include <sys/dsl_dataset.h>
52#include <sys/dsl_prop.h>
40#include <sys/file.h>
41#include <sys/kmem.h>
42#include <sys/conf.h>
43#include <sys/cmn_err.h>
44#include <sys/stat.h>
45#include <sys/zfs_ioctl.h>
46#include <sys/zap.h>
47#include <sys/spa.h>
48#include <sys/spa_impl.h>
49#include <sys/vdev.h>
50#include <sys/vdev_impl.h>
51#include <sys/dmu.h>
52#include <sys/dsl_dir.h>
53#include <sys/dsl_dataset.h>
54#include <sys/dsl_prop.h>
55#include <sys/sunddi.h>
56#include <sys/policy.h>
57#include <sys/zone.h>
53#include <sys/nvpair.h>
54#include <sys/mount.h>
55#include <sys/taskqueue.h>
56#include <sys/sdt.h>
57#include <sys/varargs.h>
58#include <sys/fs/zfs.h>
59#include <sys/zfs_ctldir.h>
60#include <sys/zvol.h>

--- 1758 unchanged lines hidden ---
58#include <sys/nvpair.h>
59#include <sys/mount.h>
60#include <sys/taskqueue.h>
61#include <sys/sdt.h>
62#include <sys/varargs.h>
63#include <sys/fs/zfs.h>
64#include <sys/zfs_ctldir.h>
65#include <sys/zvol.h>

--- 1758 unchanged lines hidden ---