aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/uipc_mqueue.c
Commit message (Expand)AuthorAgeFilesLines
* Disallow opening a POSIX message queue for execute.Jilles Tjoelker2013-08-181-2/+2
* Make sendfile() a method in the struct fileops. Currently onlyGleb Smirnoff2013-08-151-1/+2
* Wrap kmq_notify(2) for compat32 to properly consume struct sigevent32Konstantin Belousov2013-07-211-24/+59
* mqueue,ksem,shm: Fix race condition with setting UF_EXCLOSE.Jilles Tjoelker2013-04-071-5/+1
* Merge Capsicum overhaul:Pawel Jakub Dawidek2013-03-021-3/+6
* Complete MPSAFE VFS interface and remove MNTK_MPSAFE flag.Attilio Rao2012-11-091-1/+0
* Fix freebsd32_kmq_timedreceive() and freebsd32_kmq_timedsend() to usePawel Jakub Dawidek2012-09-251-2/+2
* Remove unused thread argument to vrecycle().Edward Tomasz Napierala2012-04-231-2/+2
* Use strchr() and strrchr().Ed Schouten2012-01-021-2/+2
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.Ed Schouten2011-11-071-1/+1
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-8/+8
* Fix a deficiency in the selinfo interface:Attilio Rao2011-08-251-0/+2
* Add the fo_chown and fo_chmod methods to struct fileops and use themKonstantin Belousov2011-08-161-0/+49
* Rename CAP_*_KEVENT to CAP_*_EVENT.Jonathan Anderson2011-08-121-2/+2
* Second-to-last commit implementing Capsicum capabilities in the FreeBSDRobert Watson2011-08-111-8/+20
* After the r219999 is merged to stable/8, rename fallocf(9) to falloc(9)Konstantin Belousov2011-04-011-1/+1
* Add some FEATURE macros for various features (AUDIT/CAM/IPC/KTR/MAC/NFS/NTP/Alexander Leidinger2011-02-251-0/+2
* Create a global thread hash table to speed up thread lookup, useDavid Xu2010-10-091-3/+11
* Use ISO C99 integer types in sys/kern where possible.Ed Schouten2010-06-211-1/+1
* Rename st_*timespec fields to st_*tim for POSIX 2008 compliance.Ed Schouten2010-03-281-4/+4
* Implement compat32 shims for mqueuefs.Konstantin Belousov2010-03-191-62/+303
* Use C99 initialization for struct filterops.Robert Watson2009-09-121-4/+10
* Adapt vfs kqfilter to the shared vnode lock used by zfs write vop. UseKonstantin Belousov2009-06-101-2/+2
* Fix r193923 by noting that type of a_fp is struct file *, not int.Konstantin Belousov2009-06-101-1/+1
* s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_argsKonstantin Belousov2009-06-101-1/+1
* Remove the thread argument from the FSD (File-System Dependent) parts ofAttilio Rao2009-05-111-5/+6
* Fix matching of message queues by name.Ed Schouten2008-11-281-1/+2
* Introduce accmode_t. This is required for NFSv4 ACLs - it will be neccessaryEdward Tomasz Napierala2008-10-281-6/+6
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).Dag-Erling Smørgrav2008-10-231-4/+4
* fdescfs, devfs, mqueuefs, nfs, portalfs, pseudofs, tmpfs and xfsKonstantin Belousov2008-09-201-1/+0
* Initialize va_rdev to NODEV instead of 0 or VNOVAL in VOP_GETATTR().Konstantin Belousov2008-09-201-1/+1
* Initialize va_flags and va_filerev properly in VOP_GETATTR(). Don'tKonstantin Belousov2008-09-201-1/+0
* Fix LOR between vnode lock and internal mqueue locks.David Xu2008-09-051-41/+72
* Fix lock name conflict.David Xu2008-09-051-1/+1
* Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed threadAttilio Rao2008-08-281-8/+8
* - Use vget() to lock the vnode rather than refing without a lock andJeff Roberson2008-03-291-6/+3
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-1/+1
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-4/+3
* Make ftruncate a 'struct file' operation rather than a vnode operation.John Baldwin2008-01-071-0/+9
* Remove explicit locking of struct file.Jeff Roberson2007-12-301-12/+11
* Eliminate now-unused SUSER_ALLOWJAIL arguments to priv_check_cred(); inRobert Watson2007-06-121-6/+3
* Remove duplicate includes.Olivier Houchard2007-05-231-1/+0
* Remove now-obsolete comment regarding mqueue privileges in jail.Robert Watson2007-04-111-4/+0
* Do allow POSIX mqueue unlink privilege inside a jail, as we all allRobert Watson2007-04-101-1/+2
* Replace custom file descriptor array sleep lock constructed using a mutexRobert Watson2007-04-041-11/+10
* Make insmntque() externally visibile and allow it to fail (e.g. duringTor Egge2007-03-131-1/+6
* Further system call comment cleanup:Robert Watson2007-03-051-15/+3
* Merge posix4/* into normal kernel hierarchy.Tom Rhodes2006-11-111-1/+1
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-4/+16
* Use mount interlock to protect all changes to mnt_flag and mnt_kern_flag.Tor Egge2006-09-261-0/+2