comparison auto/os/freebsd @ 8776:ec2e6893caaa

Simplified sendfile(SF_NODISKIO) usage. Starting with FreeBSD 11, there is no need to use AIO operations to preload data into cache for sendfile(SF_NODISKIO) to work. Instead, sendfile() handles non-blocking loading data from disk by itself. It still can, however, return EBUSY if a page is already being loaded (for example, by a different process). If this happens, we now post an event for the next event loop iteration, so sendfile() is retried "after a short period", as manpage recommends. The limit of the number of EBUSY tolerated without any progress is preserved, but now it does not result in an alert, since on an idle system event loop iteration might be very short and EBUSY can happen many times in a row. Instead, SF_NODISKIO is simply disabled for one call once the limit is reached. With this change, sendfile(SF_NODISKIO) is now used automatically as long as sendfile() is enabled, and no longer requires "aio on;".
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 27 Dec 2021 19:48:33 +0300
parents 4dc8e7b62216
children
comparison
equal deleted inserted replaced
8775:ae992b5a27b2 8776:ec2e6893caaa
42 42
43 have=NGX_HAVE_SENDFILE . auto/have 43 have=NGX_HAVE_SENDFILE . auto/have
44 CORE_SRCS="$CORE_SRCS $FREEBSD_SENDFILE_SRCS" 44 CORE_SRCS="$CORE_SRCS $FREEBSD_SENDFILE_SRCS"
45 fi 45 fi
46 46
47 if [ $NGX_FILE_AIO = YES ]; then 47 if [ $osreldate -gt 1100093 ]; then
48 if [ $osreldate -gt 502103 ]; then 48 echo " + sendfile()'s SF_NODISKIO found"
49 echo " + sendfile()'s SF_NODISKIO found"
50 49
51 have=NGX_HAVE_AIO_SENDFILE . auto/have 50 have=NGX_HAVE_SENDFILE_NODISKIO . auto/have
52 fi
53 fi 51 fi
54 52
55 # POSIX semaphores 53 # POSIX semaphores
56 # http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/127545 54 # http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/127545
57 55