aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_sendfile.c
Commit message (Expand)AuthorAgeFilesLines
* Address two problems with sendfile(..., SF_NOCACHE) and apply oneAlan Cox2017-10-131-2/+15
* match sendfile() error handling to send().Sean Bruno2017-10-101-2/+6
* Revert r324405 at the request of the submitter pending better solution.Sean Bruno2017-10-101-5/+0
* Improvements to sendfile(2) mbuf free routine.Gleb Smirnoff2017-10-091-58/+51
* Check so_error early in sendfile() call. Prior to this patch, if aSean Bruno2017-10-071-0/+5
* Use soref() in sendfile(2) instead fhold() to reference a socket.Gleb Smirnoff2017-09-131-8/+6
* Have sendfile_swapin() use vm_page_grab_pages().Mark Johnston2017-08-111-9/+9
* An invalid page can't be dirty.Alan Cox2017-08-111-1/+1
* Plug uninitialized stack variable leak in sendfile(2).Gleb Smirnoff2017-08-091-0/+1
* The data type returned by vmoff() is too narrow in its range. This couldAlan Cox2017-06-031-2/+2
* Make sendfile(2) more robust against file change. This fixes a possibleGleb Smirnoff2017-03-241-4/+3
* Move bogus_page declaration to vm_page.h and initialization to vm_page.c.Gleb Smirnoff2017-01-041-2/+0
* Add flag SF_USER_READAHEAD to sendfile(2). When specified, the syscall won'tGleb Smirnoff2016-11-171-3/+10
* Use bogus_page to properly reduce number of I/Os in sendfile(2). The newGleb Smirnoff2016-11-171-35/+45
* Fix regression from r297400, which truncates headers in case of low socketGleb Smirnoff2016-09-221-2/+11
* capsicum: propagate rights on accept(2)Mariusz Zaborski2016-09-221-1/+1
* Renumber license clauses in sys/kern to avoid skipping #3Ed Maste2016-09-151-1/+1
* The sendfile(2) allows to send extra data from userspace before the fileGleb Smirnoff2016-03-291-27/+29
* New way to manage reference counting of mbuf external storage.Gleb Smirnoff2016-03-011-26/+2
* - Separate sendfile(2) implementation from uipc_syscalls.c intoGleb Smirnoff2016-01-221-0/+1038