index
:
FreeBSD-src
RELENG_2_2
RELENG_2_3
RELENG_2_3_0
RELENG_2_3_1
RELENG_2_3_2
RELENG_2_3_3
RELENG_2_3_4
RELENG_2_4
RELENG_2_4_4
RELENG_2_4_OLD
devel
devel-11
releng/10.1
releng/10.3
releng/11.0
releng/11.1
stable/10
stable/11
Raptor Engineering's fork of pfsense FreeBSD src with pfSense changes
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
sys
/
kern
/
kern_event.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
prevent doing filter ops locking for staticly compiled filter ops...
jmg
2014-11-16
1
-17
/
+39
*
Make kevent(2) periodic timer events more reliably periodic. The event
ian
2014-10-04
1
-5
/
+9
*
Add a new fo_fill_kinfo fileops method to add type-specific information to
jhb
2014-09-22
1
-0
/
+11
*
Fix various issues with invalid file operations:
jhb
2014-09-12
1
-35
/
+3
*
Extend kqueue's EVFILT_TIMER by adding precision unit flags support
bapt
2014-07-18
1
-7
/
+34
*
Hide internal details of sbintime_t implementation wrapping INT64_MAX into
davide
2014-04-12
1
-3
/
+3
*
Implement kqueue(2) for procdesc(4).
ed
2014-04-07
1
-12
/
+7
*
When KN_INFLUX is set on the knote due to kqueue_register() or
kib
2014-04-05
1
-26
/
+32
*
Update kernel inclusions of capability.h to use capsicum.h instead; some
rwatson
2014-03-16
1
-1
/
+1
*
Add in a default initialiser for the EVOPS_SENDFILE kqueue filterops.
adrian
2014-01-17
1
-0
/
+1
*
Add a compile-time control over the size of KN_HASHSIZE.
adrian
2014-01-07
1
-0
/
+4
*
Fix compilation on 32 bit architectures and use INT64_MAX instead of
se
2013-12-19
1
-3
/
+6
*
Fix overflow for timeout values of more than 68 years, which is the maximum
se
2013-12-19
1
-1
/
+2
*
Replace CAP_POLL_EVENT and CAP_POST_EVENT capability rights (which I had
pjd
2013-11-15
1
-4
/
+11
*
kqueue: Change error for kqueues rlimit from EMFILE to ENOMEM and document
jilles
2013-11-03
1
-1
/
+1
*
Add a resource limit for the total number of kqueues available to the
kib
2013-10-21
1
-1
/
+23
*
Do not allow negative timeouts for kqueue timers, check for the
kib
2013-09-26
1
-2
/
+10
*
Pre-acquire the filedesc sx when a possibility exists that the later
kib
2013-09-22
1
-3
/
+30
*
Revert r255672, it has some serious flaws, leaking file references etc.
rdivacky
2013-09-18
1
-71
/
+52
*
Implement epoll support in Linuxulator. This is a tiny wrapper around kqueue
rdivacky
2013-09-18
1
-52
/
+71
*
Use TAILQ instead of STAILQ for kqeueue filedescriptors to ensure constant
kib
2013-09-13
1
-3
/
+3
*
Change the cap_rights_t type from uint64_t to a structure that we can extend
pjd
2013-09-05
1
-3
/
+9
*
fix up some comments and a white space issue...
jmg
2013-08-26
1
-6
/
+6
*
Make sendfile() a method in the struct fileops. Currently only
glebius
2013-08-15
1
-0
/
+1
*
Some small cleanups to the fixes in r180340:
jhb
2013-08-13
1
-3
/
+3
*
Don't emit a spurious EVFILT_PROC event with no fflags set on process exit
jhb
2013-08-07
1
-2
/
+19
*
Change callout use counter to use C11 atomics.
ed
2013-06-16
1
-10
/
+15
*
Rework overflow checks of r247898 to not let too "intelligent" compiler to
mav
2013-03-09
1
-3
/
+4
*
Fix off-by-one error in nanoseconds validation.
mav
2013-03-07
1
-1
/
+1
*
Fix time math overflows and improve zero intervals handling in poll(),
mav
2013-03-06
1
-5
/
+10
*
MFcalloutng:
davide
2013-03-04
1
-53
/
+29
*
Make the interval timings for EVFILT_TIMER more accurate. tvtohz() always
jhb
2012-07-13
1
-5
/
+12
*
Update comment.
pjd
2012-06-14
1
-1
/
+1
*
- Add knlist_init_rw_reader() function to kqueue(9).
melifaro
2012-03-26
1
-0
/
+42
*
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
[next]