| Commit message (Expand) | Author | Age | Files | Lines |
* | In order to maximize the re-usability of kernel code in user space this | kmacy | 2011-09-16 | 1 | -2/+2 |
* | Fix a deficiency in the selinfo interface: | attilio | 2011-08-25 | 1 | -0/+1 |
* | Add the fo_chown and fo_chmod methods to struct fileops and use them | kib | 2011-08-16 | 1 | -0/+2 |
* | Rename CAP_*_KEVENT to CAP_*_EVENT. | jonathan | 2011-08-12 | 1 | -3/+3 |
* | Second-to-last commit implementing Capsicum capabilities in the FreeBSD | rwatson | 2011-08-11 | 1 | -3/+4 |
* | After the r219999 is merged to stable/8, rename fallocf(9) to falloc(9) | kib | 2011-04-01 | 1 | -1/+1 |
* | Defer freeing a kevent list until after dropping kqueue locks. | jhb | 2010-03-30 | 1 | -4/+6 |
* | Do not leak process lock when current thread is not allowed to see target. | kib | 2010-02-14 | 1 | -1/+3 |
* | If a filter has already been added, actually return EEXIST when trying | brooks | 2009-12-31 | 1 | -1/+2 |
* | The devices that supported EVFILT_NETDEV kqueue filters were removed in | brooks | 2009-12-31 | 1 | -1/+1 |
* | Postpone dropping fp till both kq_global and kqueue mutexes are | kib | 2009-10-10 | 1 | -3/+3 |
* | Use correct sizeof() object for klist 'list'. Currently, struct klist | delphij | 2009-09-28 | 1 | -4/+4 |
* | Change unsigned foo to u_foo as required by style(9). | rdivacky | 2009-09-22 | 1 | -3/+3 |
* | Fix the style of the previous commit. | rdivacky | 2009-09-17 | 1 | -1/+2 |
* | Make these argument/variable unsigned as the defines for them don't fit | rdivacky | 2009-09-17 | 1 | -3/+3 |
* | Add EV_RECEIPT to kevents. | sson | 2009-09-16 | 1 | -1/+1 |
* | Add the EV_DISPATCH flag to kevents. | sson | 2009-09-16 | 1 | -2/+4 |
* | Add EVFILT_USER to kevents. | sson | 2009-09-16 | 1 | -0/+99 |
* | Add optional touch event filter hooks to kevents. | sson | 2009-09-16 | 1 | -37/+56 |
* | Use C99 initialization for struct filterops. | rwatson | 2009-09-12 | 1 | -10/+25 |
* | - Turn the third (islocked) argument of the knote call into flags parameter. | stas | 2009-06-28 | 1 | -6/+18 |
* | Adapt vfs kqfilter to the shared vnode lock used by zfs write vop. Use | kib | 2009-06-10 | 1 | -14/+29 |
* | Fix a number of style issues in the MALLOC / FREE commit. I've tried to | des | 2008-10-23 | 1 | -3/+2 |
* | Retire the MALLOC and FREE macros. They are an abomination unto style(9). | des | 2008-10-23 | 1 | -6/+5 |
* | The kqueue_register() function assumes that it is called from the top of | kib | 2008-07-07 | 1 | -15/+67 |
* | The r178914 I erronously put the setting of the KQ_FLUXWAIT flag before | kib | 2008-07-07 | 1 | -2/+1 |
* | Kqueue_scan() may sleep when encountered the influx knotes. On the other | kib | 2008-05-10 | 1 | -1/+10 |
* | The kqueue_close() encountering the KN_INFLUX knotes on the kq being | kib | 2008-05-10 | 1 | -4/+11 |
* | - Convert two timeout users to the new callout_reset_curcpu() api. | jeff | 2008-04-02 | 1 | -3/+3 |
* | In keeping with style(9)'s recommendations on macros, use a ';' | rwatson | 2008-03-16 | 1 | -1/+1 |
* | Make ftruncate a 'struct file' operation rather than a vnode operation. | jhb | 2008-01-07 | 1 | -0/+11 |
* | Remove explicit locking of struct file. | jeff | 2007-12-30 | 1 | -23/+11 |
* | Refactor select to reduce contention and hide internal implementation | jeff | 2007-12-16 | 1 | -3/+6 |
* | Revert previous commits which I committed by mistake. | rodrigc | 2007-07-14 | 1 | -9/+0 |
* | The last entry in the ext2_opts array must be NULL, | rodrigc | 2007-07-14 | 1 | -0/+9 |
* | In kern_kevent(), unconditionally fdrop() fp once fget() has succeeded, | rwatson | 2007-05-28 | 1 | -2/+1 |
* | Select a more appealing spelling for the word acquire. | rwatson | 2007-05-27 | 1 | -10/+10 |
* | Replace custom file descriptor array sleep lock constructed using a mutex | rwatson | 2007-04-04 | 1 | -9/+9 |
* | Remove 'MPSAFE' annotations from the comments above most system calls: all | rwatson | 2007-03-04 | 1 | -6/+0 |
* | Save exit status of an exiting process in kn_data in the knote. | jhb | 2006-11-20 | 1 | -0/+1 |
* | remove unnecessary NULL check... | jmg | 2006-09-25 | 1 | -2/+1 |
* | hide kqueue_register from public view, and replace it w/ kqfd_register... | jmg | 2006-09-24 | 1 | -2/+30 |
* | add KTRACE hooks into kevent... This will help people debug their kqueue | jmg | 2006-09-24 | 1 | -2/+38 |
* | Use fget() in kqueue_register() instead of doing all the work by hand. | jhb | 2006-06-12 | 1 | -17/+3 |
* | Don't forget to unlock kq lock in low memory situations. | pjd | 2006-06-02 | 1 | -0/+1 |
* | Remove confusing done_noglobal label. The KQ_GLOBAL_UNLOCK() macro know | pjd | 2006-06-02 | 1 | -2/+1 |
* | Use SLIST_FOREACH_SAFE() macro, because knote_drop() can free an element | pjd | 2006-06-02 | 1 | -2/+2 |
* | Drop the kqueue global mutex as soon as we are finished with it rather | jhb | 2006-04-14 | 1 | -4/+2 |
* | spell unlock correctly, this is relatively minor as it's rare someone would | jmg | 2006-04-07 | 1 | -1/+1 |
* | mask out any action when copying the flags from the event to the knote.. | jmg | 2006-04-01 | 1 | -0/+2 |