diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-09-12 13:50:12 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-09-12 13:50:12 +0000 |
commit | fae2c00d02d3631347a17deab2709968be1a05c7 (patch) | |
tree | a62d5986fc44f517e87de51567145b12bbaab078 /src/core/ngx_buf.h | |
parent | 0f8ea4de461b5fc54b69e09364c94b066363c0c9 (diff) | |
download | nginx-fae2c00d02d3631347a17deab2709968be1a05c7.tar.gz nginx-fae2c00d02d3631347a17deab2709968be1a05c7.zip |
disable directio for unaligned reads in Linux
Diffstat (limited to 'src/core/ngx_buf.h')
-rw-r--r-- | src/core/ngx_buf.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/ngx_buf.h b/src/core/ngx_buf.h index d16656d6b..ce26c630e 100644 --- a/src/core/ngx_buf.h +++ b/src/core/ngx_buf.h @@ -79,6 +79,9 @@ typedef struct { unsigned sendfile; unsigned directio; +#if (NGX_HAVE_ALIGNED_DIRECTIO) + unsigned unaligned; +#endif unsigned need_in_memory; unsigned need_in_temp; |