diff options
author | cao <[email protected]> | 2016-12-02 07:36:25 +0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-12-01 16:36:25 -0700 |
commit | 6a8fd57fa7f76e07172aa2c517f2c79296ba322e (patch) | |
tree | 62bd8df64a3a66d3cd877a20cc42732677ab03ad /module/zfs/zio_inject.c | |
parent | 5f20c145df3ca45f86cd1892137edb117d4c8a82 (diff) |
Compile zio.h and zio_impl.h mutual include
zio.h includes zio_impl.h but zio_impl.h also includes zio.h, so the
header files to contain each other. Get rid of the zio_impl.h include
in zio.h and update zio_inject.c to include zio.h instead of zio_impl.h.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: cao.xuewen <[email protected]>
Closes #5439
Diffstat (limited to 'module/zfs/zio_inject.c')
-rw-r--r-- | module/zfs/zio_inject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/zio_inject.c b/module/zfs/zio_inject.c index 61b7d25e6..0e8e9d932 100644 --- a/module/zfs/zio_inject.c +++ b/module/zfs/zio_inject.c @@ -41,7 +41,7 @@ */ #include <sys/arc.h> -#include <sys/zio_impl.h> +#include <sys/zio.h> #include <sys/zfs_ioctl.h> #include <sys/vdev_impl.h> #include <sys/dmu_objset.h> |