diff options
author | Matthew Ahrens <[email protected]> | 2013-07-03 08:13:38 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-11-05 12:14:56 -0800 |
commit | 2883cad5b747b5e4e2164fbe3236451d5b43f333 (patch) | |
tree | e8ef921dc904fefb4b4570d325da6a065e84094f /include/sys/zio_impl.h | |
parent | 498877baf5038b32c1531e5ec96b435023200f4d (diff) |
Illumos #3836
3836 zio_free() can be processed immediately in the common case
Reviewed by: George Wilson <[email protected]>
Reviewed by: Adam Leventhal <[email protected]>
Approved by: Dan McDonald <[email protected]>
References:
https://www.illumos.org/issues/3836
illumos/illumos-gate@9cb154a3c9f170904dce9bad5bd5a7d256b922a4
Ported-by: Richard Yao <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Issue #1775
Diffstat (limited to 'include/sys/zio_impl.h')
-rw-r--r-- | include/sys/zio_impl.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/sys/zio_impl.h b/include/sys/zio_impl.h index 787079d2c..08f820103 100644 --- a/include/sys/zio_impl.h +++ b/include/sys/zio_impl.h @@ -24,7 +24,7 @@ */ /* - * Copyright (c) 2012 by Delphix. All rights reserved. + * Copyright (c) 2013 by Delphix. All rights reserved. */ #ifndef _ZIO_IMPL_H @@ -38,7 +38,7 @@ extern "C" { #endif /* - * XXX -- Describe ZFS I/O pipleine here. Fill in as needed. + * XXX -- Describe ZFS I/O pipeline here. Fill in as needed. * * The ZFS I/O pipeline is comprised of various stages which are defined * in the zio_stage enum below. The individual stages are used to construct @@ -213,7 +213,6 @@ enum zio_stage { #define ZIO_FREE_PIPELINE \ (ZIO_INTERLOCK_STAGES | \ ZIO_STAGE_FREE_BP_INIT | \ - ZIO_STAGE_ISSUE_ASYNC | \ ZIO_STAGE_DVA_FREE) #define ZIO_DDT_FREE_PIPELINE \ |