diff options
author | Brian Behlendorf <[email protected]> | 2010-11-10 14:40:38 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2010-11-10 16:59:49 -0800 |
commit | f4af6bb783b0b7f2a6075cb1c74c225db8a157b2 (patch) | |
tree | e171b9ed0d0b876fd38e4d221b45297994a9ab87 /zfs_config.h.in | |
parent | b04cffc9b03db08148f19bfbc92a53e5dc7b30d5 (diff) |
Linux 2.6.36 compat, use REQ_FAILFAST_MASK
As of linux-2.6.36 the BIO_RW_FAILFAST and REQ_FAILFAST flags
have been unified under the REQ_* names. These flags always had
to be kept in-sync so this is a nice step forward, unfortunately
it means we need to be careful to only use the new unified flags
when the BIO_RW_* flags are not defined. Additional autoconf
checks were added for this and if it is ever unclear which method
to use no flags are set. This is safe but may result in longer
delays before a disk is failed.
Perferred interface for setting FAILFAST on a bio:
2.6.12-2.6.27: BIO_RW_FAILFAST
2.6.28-2.6.35: BIO_RW_FAILFAST_{DEV|TRANSPORT|DRIVER}
2.6.36-2.6.xx: REQ_FAILFAST_{DEV|TRANSPORT|DRIVER}
Diffstat (limited to 'zfs_config.h.in')
-rw-r--r-- | zfs_config.h.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/zfs_config.h.in b/zfs_config.h.in index 4797a9baf..f666d4578 100644 --- a/zfs_config.h.in +++ b/zfs_config.h.in @@ -15,9 +15,15 @@ /* bio_empy_barrier() is defined */ #undef HAVE_BIO_EMPTY_BARRIER -/* BIO_RW_FAILFAST_* are defined */ +/* REQ_FAILFAST_MASK is defined */ +#undef HAVE_BIO_REQ_FAILFAST_MASK + +/* BIO_RW_FAILFAST is defined */ #undef HAVE_BIO_RW_FAILFAST +/* BIO_RW_FAILFAST_* are defined */ +#undef HAVE_BIO_RW_FAILFAST_DTD + /* BIO_RW_SYNCIO is defined */ #undef HAVE_BIO_RW_SYNCIO |