diff options
| author | Maxim Dounin <mdounin@mdounin.ru> | 2021-12-27 19:49:26 +0300 |
|---|---|---|
| committer | Maxim Dounin <mdounin@mdounin.ru> | 2021-12-27 19:49:26 +0300 |
| commit | 1f01183b9e6658749934313fd72f7f16c1918b54 (patch) | |
| tree | 70456837095468405c238636c3e1aa1e63373110 /src/event | |
| parent | 2a00e6141f154d77a835e53b6527a1b3225f6f74 (diff) | |
| download | nginx-1f01183b9e6658749934313fd72f7f16c1918b54.tar.gz nginx-1f01183b9e6658749934313fd72f7f16c1918b54.tar.bz2 | |
Support for sendfile(SF_NOCACHE).
The SF_NOCACHE flag, introduced in FreeBSD 11 along with the new non-blocking
sendfile() implementation by glebius@, makes it possible to use sendfile()
along with the "directio" directive.
Diffstat (limited to 'src/event')
| -rw-r--r-- | src/event/ngx_event_openssl.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/event/ngx_event_openssl.c b/src/event/ngx_event_openssl.c index 57e2d44ca..33977af61 100644 --- a/src/event/ngx_event_openssl.c +++ b/src/event/ngx_event_openssl.c @@ -2955,7 +2955,13 @@ ngx_ssl_sendfile(ngx_connection_t *c, ngx_buf_t *file, size_t size) ngx_set_errno(0); #if (NGX_HAVE_SENDFILE_NODISKIO) + flags = (c->busy_count <= 2) ? SF_NODISKIO : 0; + + if (file->file->directio) { + flags |= SF_NOCACHE; + } + #else flags = 0; #endif |
