aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_alq.c
Commit message (Expand)AuthorAgeFilesLines
* kern: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-1/+1
* Remove duplicated empty lines from kern/*.cMateusz Guzik2020-01-301-3/+0
* vfs: drop the mostly unused flags argument from VOP_UNLOCKMateusz Guzik2020-01-031-2/+2
* sys/kern: adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* Use SI_SUB_LAST instead of SI_SUB_SMP as the "catch-all" subsystem.John Baldwin2016-03-111-1/+1
* Prevent alq from panic when the invalid alq_file path specified.Dmitry Chagin2014-04-051-4/+6
* The fix committed in r250951 replaced the reported panic with a deadlock... goldLawrence Stewart2013-06-171-2/+2
* Ensure alq's shutdown_pre_sync event handler is deregistered on module unload toLawrence Stewart2013-05-241-2/+5
* Remove the support for using non-mpsafe filesystem modules.Konstantin Belousov2012-10-221-7/+1
* - Rework the underlying ALQ storage to be a circular buffer, which amongst otherLawrence Stewart2010-04-261-89/+466
* The ALQ should not be considered drained until it has been made inactive.Lawrence Stewart2010-04-011-1/+1
* According to SLEEP(9), msleep() is deprecated in favour of mtx_sleep().Lawrence Stewart2010-04-011-3/+3
* - Factor code to destroy an ALQ out of alq_close() into a private alq_destroy().Lawrence Stewart2010-04-011-17/+20
* Add support for ALQ(9) to be compiled and loaded as a kernel module.Lawrence Stewart2010-03-311-1/+83
* Add another flags argument to vn_open_cred. Use it to specify that someKonstantin Belousov2009-06-211-1/+1
* Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERICRobert Watson2009-06-051-2/+0
* Remove VOP_LEASE and supporting functions. This hasn't been used sinceRobert Watson2009-04-101-1/+0
* Use msleep_spin() instead of unlock/tsleep/lock. This wasRoman Divacky2008-07-021-6/+2
* In keeping with style(9)'s recommendations on macros, use a ';'Robert Watson2008-03-161-2/+2
* 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-1/+1
* Merge first in a series of TrustedBSD MAC Framework KPI changesRobert Watson2007-10-241-1/+1
* Change the VOP_OPEN(), vn_open() vnode operation and d_fdopen() cdev operationKonstantin Belousov2007-06-011-1/+1
* Backout rev 1.17, msleep() can't be used with a spinlock.Olivier Houchard2007-03-061-2/+6
* Use msleep(9) instead of tsleep(9) surrounded by lock acquisition andWojciech A. Koszek2007-03-041-6/+2
* Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.hRobert Watson2006-10-221-1/+2
* - Conditionalize Giant around VFS operations for ALQ, ktrace, andJohn Baldwin2006-03-281-4/+8
* Grr. Backout previous change. vn_open_cred() will call NDFREE() on failure.Pawel Jakub Dawidek2006-01-271-1/+1
* Don't forget to call NDFREE(9) in case of vn_open_cred() failure.Pawel Jakub Dawidek2006-01-271-2/+2
* Modify the alq(9) alq_open() API to accept a file creation mode, ratherRobert Watson2005-04-161-3/+3
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* Allow MAC policies to block/revoke kern_alq write access to a file.Robert Watson2003-10-251-2/+10
* Add fdidx argument to vn_open() and vn_open_cred() and pass -1 throughout.Poul-Henning Kamp2003-07-271-1/+1
* Add an explicit credential argument to alq_open() to allow the caller toRobert Watson2003-06-221-3/+4
* Use __FBSDID().David E. O'Brien2003-06-111-3/+3
* - Reset the free ent to NULL if we have consumed the last free entry. ThisJeff Roberson2003-05-251-0/+2
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-3/+3
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-3/+3
* - Export the alq daemon thread pointer.Jeff Roberson2002-09-261-4/+7
* - Hold the credential of the caller and use it in all subsequent vn ops.Jeff Roberson2002-09-231-6/+7
* - Add an asynchronous fixed length record logging mechanism calledJeff Roberson2002-09-221-0/+499