aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/uipc_syscalls.c
Commit message (Expand)AuthorAgeFilesLines
* Add some checks to ensure that Capsicum is behaving correctly, and add someJonathan Anderson2011-06-301-0/+7
* Log the socket address passed as the destination to sendto() and sendmsg()John Baldwin2011-06-071-0/+4
* After the r219999 is merged to stable/8, rename fallocf(9) to falloc(9)Konstantin Belousov2011-04-011-5/+5
* Mfp4 CH=177274,177280,177284-177285,177297,177324-177325Bjoern A. Zeeb2011-02-161-14/+1
* Eliminate unnecessary page hold_count checks. These checks predateAlan Cox2011-02-031-2/+1
* If more than one thread allocated sf buffers for sendfile(2), andKonstantin Belousov2011-01-281-5/+12
* Just pass M_ZERO to malloc(9) instead of clearing allocated memory separately.Pawel Jakub Dawidek2010-12-141-2/+1
* Implement correct handling of address parameter andMichael Tuexen2010-09-051-4/+2
* Send SIGPIPE to the thread that issued the offending system callJohn Baldwin2010-06-291-3/+3
* * Do not dereference a NULL pointer when calling an SCTP send syscallMichael Tuexen2010-06-261-2/+3
* Use ISO C99 integer types in sys/kern where possible.Ed Schouten2010-06-211-1/+1
* Remove page queues locking from all sf_buf_mext()-like functions. The pageAlan Cox2010-05-061-6/+1
* Eliminate a small bit of unneeded code from kern_sendfile(): WhileAlan Cox2010-05-061-7/+2
* This is the first step in transitioning responsibility for synchronizingAlan Cox2010-05-031-0/+4
* Lock the page around hold_count access.Konstantin Belousov2010-05-021-0/+2
* Properly handle compat32 calls to sctp generic sendmsd/recvmsg functions thatKonstantin Belousov2010-03-191-4/+19
* Remove dead statement.Konstantin Belousov2010-03-191-1/+0
* Fix two style issues.Konstantin Belousov2010-03-191-2/+2
* Use NULL instead of 0 when setting up pointer.Pawel Jakub Dawidek2010-02-181-2/+2
* Fix argument order in a call to mtx_init.Matt Jacob2009-12-171-1/+1
* If socket buffer space appears to be lower then sum of count of alreadyKonstantin Belousov2009-11-031-9/+1
* Fix style issue.Konstantin Belousov2009-10-291-1/+1
* Do not dereference vp->v_mount without holding vnode lock and checkingKonstantin Belousov2009-10-011-2/+5
* Get SCTP working in combination with VIMAGE.Michael Tuexen2009-09-191-0/+9
* Merge the remainder of kern_vimage.c and vimage.h into vnet.c andRobert Watson2009-08-011-1/+2
* Audit file descriptor numbers for various socket-related system calls.Robert Watson2009-07-011-0/+17
* Define missing audit argument macro AUDIT_ARG_SOCKET(), andRobert Watson2009-07-011-0/+3
* SCTP needs either IPv4 or IPv6 as lower layer[1].Bjoern A. Zeeb2009-06-101-4/+8
* Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERICRobert Watson2009-06-051-1/+0
* Add internal 'mac_policy_count' counter to the MAC Framework, which is aRobert Watson2009-06-021-36/+12
* Split native socketpair() syscall onto kern_socketpair() which shouldDmitry Chagin2009-05-311-24/+29
* - Implement a lockless file descriptor lookup algorithm inJeff Roberson2009-05-141-16/+9
* A NOP change: style / whitespace cleanup of the noise that slippedMarko Zec2009-05-081-1/+1
* Change the curvnet variable from a global const struct vnet *,Marko Zec2009-05-051-0/+17
* sendfile doesn't modify the vnode - acquire vnode lock sharedKip Macy2009-04-121-1/+1
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).Dag-Erling Smørgrav2008-10-231-5/+5
* When sendto(2) is called with an explicit destination addressRobert Watson2008-05-221-1/+5
* When writing trailers in sendfile(2), don't call kern_writev()Robert Watson2008-04-271-3/+4
* Replaced the misleading uses of a historical artefact M_TRYWAIT with M_WAIT.Ruslan Ermilov2008-03-251-20/+8
* After finishing sending file data in sendfile(2), don't forget to sendColin Percival2008-02-241-1/+3
* This patch adds a new ktrace(2) record type, KTR_STRUCT, whose payloadDag-Erling Smørgrav2008-02-231-0/+36
* Fix sendfile(2) write-only file permission bypass.Simon L. B. Nielsen2008-02-141-14/+17
* Give sendfile(2) a SF_SYNC flag which makes it wait until all mbufsPoul-Henning Kamp2008-02-031-1/+42
* Give MEXTADD() another argument to make both void pointers to thePoul-Henning Kamp2008-02-011-1/+1
* Correct two problems relating to sorflush(), which is called to flushRobert Watson2008-01-311-2/+7
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-2/+2
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-2/+2
* Remove explicit locking of struct file.Jeff Roberson2007-12-301-28/+5
* Merge first in a series of TrustedBSD MAC Framework KPI changesRobert Watson2007-10-241-12/+12
* - During shutdown pending, when the last sack came in andRandall Stewart2007-08-271-8/+5