diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2008-07-30 12:34:04 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2008-07-30 12:34:04 +0000 |
| commit | 385af286421e983f744f7f5d339b8060ccd36302 (patch) | |
| tree | 81c46d0dad40506cc3a331c6ffaf454da85a0177 /src/http/modules | |
| parent | 749449097847cc3bee9e4e3966122a94149b755b (diff) | |
| download | nginx-385af286421e983f744f7f5d339b8060ccd36302.tar.gz nginx-385af286421e983f744f7f5d339b8060ccd36302.tar.bz2 | |
directio
Diffstat (limited to 'src/http/modules')
| -rw-r--r-- | src/http/modules/ngx_http_flv_module.c | 1 | ||||
| -rw-r--r-- | src/http/modules/ngx_http_gzip_static_module.c | 1 | ||||
| -rw-r--r-- | src/http/modules/ngx_http_index_module.c | 1 | ||||
| -rw-r--r-- | src/http/modules/ngx_http_static_module.c | 1 | ||||
| -rw-r--r-- | src/http/modules/perl/nginx.xs | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/src/http/modules/ngx_http_flv_module.c b/src/http/modules/ngx_http_flv_module.c index bed1b48a6..dceb68abc 100644 --- a/src/http/modules/ngx_http_flv_module.c +++ b/src/http/modules/ngx_http_flv_module.c @@ -107,6 +107,7 @@ ngx_http_flv_handler(ngx_http_request_t *r) ngx_memzero(&of, sizeof(ngx_open_file_info_t)); + of.directio = clcf->directio; of.valid = clcf->open_file_cache_valid; of.min_uses = clcf->open_file_cache_min_uses; of.errors = clcf->open_file_cache_errors; diff --git a/src/http/modules/ngx_http_gzip_static_module.c b/src/http/modules/ngx_http_gzip_static_module.c index 51fe0d56d..bc3a65f11 100644 --- a/src/http/modules/ngx_http_gzip_static_module.c +++ b/src/http/modules/ngx_http_gzip_static_module.c @@ -121,6 +121,7 @@ ngx_http_gzip_static_handler(ngx_http_request_t *r) ngx_memzero(&of, sizeof(ngx_open_file_info_t)); + of.directio = clcf->directio; of.valid = clcf->open_file_cache_valid; of.min_uses = clcf->open_file_cache_min_uses; of.errors = clcf->open_file_cache_errors; diff --git a/src/http/modules/ngx_http_index_module.c b/src/http/modules/ngx_http_index_module.c index bc4cd5009..6d4cf34d3 100644 --- a/src/http/modules/ngx_http_index_module.c +++ b/src/http/modules/ngx_http_index_module.c @@ -210,6 +210,7 @@ ngx_http_index_handler(ngx_http_request_t *r) ngx_memzero(&of, sizeof(ngx_open_file_info_t)); + of.directio = clcf->directio; of.valid = clcf->open_file_cache_valid; of.min_uses = clcf->open_file_cache_min_uses; of.errors = clcf->open_file_cache_errors; diff --git a/src/http/modules/ngx_http_static_module.c b/src/http/modules/ngx_http_static_module.c index ce2f0fc65..8d399fccd 100644 --- a/src/http/modules/ngx_http_static_module.c +++ b/src/http/modules/ngx_http_static_module.c @@ -98,6 +98,7 @@ ngx_http_static_handler(ngx_http_request_t *r) ngx_memzero(&of, sizeof(ngx_open_file_info_t)); + of.directio = clcf->directio; of.valid = clcf->open_file_cache_valid; of.min_uses = clcf->open_file_cache_min_uses; of.errors = clcf->open_file_cache_errors; diff --git a/src/http/modules/perl/nginx.xs b/src/http/modules/perl/nginx.xs index f86b76f3e..6e7ad7760 100644 --- a/src/http/modules/perl/nginx.xs +++ b/src/http/modules/perl/nginx.xs @@ -652,6 +652,7 @@ sendfile(r, filename, offset = -1, bytes = 0) ngx_memzero(&of, sizeof(ngx_open_file_info_t)); + of.directio = clcf->directio; of.valid = clcf->open_file_cache_valid; of.min_uses = clcf->open_file_cache_min_uses; of.errors = clcf->open_file_cache_errors; |
