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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move the atomic() mbstat.m_drops incrementing to the MGET(HDR) and
bmilekic
2001-03-24
1
-19
/
+5
*
Use (..., "%s", foo) instead of (..., foo) to avoid a warning about a
jhb
2001-03-24
1
-1
/
+1
*
This is kind of a hack, but it should work. Currently, world is broken
peter
2001-03-24
1
-0
/
+8
*
Just use the proc lock to protect read accesses to p_pptr rather than the
jhb
2001-03-24
1
-4
/
+4
*
Protect p_wmesg and p_wchan with sched_lock while checking for deadlocks
jhb
2001-03-24
1
-0
/
+3
*
replace calls to non-existant bail() subroutine with calls to
alfred
2001-03-23
1
-2
/
+2
*
o Actually extract version of interface and store it along with the name.
bp
2001-03-22
1
-52
/
+99
*
Slightly reorganize code in the linker_load_dependancies() function to make
bp
2001-03-22
1
-54
/
+52
*
Remove support for old way of handling module dependencies.
bp
2001-03-22
1
-35
/
+18
*
Make the pseudo-driver for "/dev/fd/*" handle fd's larger than 255.
phk
2001-03-20
1
-1
/
+8
*
Add a KASSERT on unit2minor() so that we catch it if people try to pass
phk
2001-03-20
1
-0
/
+1
*
Fixed breakage of access() in rev.1.164. Wrong credentials were used for
bde
2001-03-20
2
-2
/
+2
*
Use the same API as the example code.
peter
2001-03-20
1
-6
/
+8
*
o Rename "namespace" argument to "attrnamespace" as namespace is a C++
rwatson
2001-03-19
2
-2
/
+2
*
o Rename "namespace" argument to "attrnamespace" as namespace is a C++
rwatson
2001-03-19
6
-25
/
+25
*
Fix a couple of things in the internal mbuf allocation interface:
bmilekic
2001-03-17
1
-8
/
+8
*
Use a generic implementation of the Fowler/Noll/Vo hash (FNV hash).
peter
2001-03-17
1
-13
/
+6
*
When doing a recv(.. MSG_WAITALL) for a message which is larger than
jlemon
2001-03-16
1
-0
/
+6
*
Kill the 4MB kernel limit dead. [I hope :-)].
peter
2001-03-15
1
-3
/
+9
*
Jake essentially rewrote this. It is not by any stretch of the
peter
2001-03-15
1
-2
/
+0
*
Regenerate after rwatson's commit to syscalls.master (rev 1.85)
peter
2001-03-15
2
-2
/
+2
*
o Change the API and ABI of the Extended Attribute kernel interfaces to
rwatson
2001-03-15
6
-34
/
+129
*
Dont call device close and ioctl functions if device has disappeared.
sos
2001-03-13
1
-2
/
+5
*
Assert that the process we're trying to enqueue isn't already there.
des
2001-03-11
1
-0
/
+21
*
When aio_read/write() is used on a raw device, physical buffers are
alc
2001-03-10
1
-7
/
+26
*
Don't call malloc with M_WAITOK while holding a mutex.
alfred
2001-03-09
1
-22
/
+21
*
Push the test for a disconnected socket when accept()ing down to the
jlemon
2001-03-09
1
-4
/
+1
*
Fix mtx_legal2block. The only time that it is bad to block on a mutex is
jhb
2001-03-09
4
-6
/
+28
*
Use the kthread API to create and destroy AIO daemons.
alc
2001-03-09
1
-9
/
+7
*
Add a new informative KASSERT to ensure that a process is in the SRUN state
jhb
2001-03-09
1
-0
/
+3
*
Fix is a similar race condition as existed in the mbuf code. When we go
bmilekic
2001-03-08
1
-6
/
+7
*
Make the wait for sendfile buffers interruptable. Stops one process
dwmalone
2001-03-08
1
-3
/
+24
*
Make the SYSCTL_OUT handlers sysctl_old_user() and sysctl_old_kernel()
tmm
2001-03-08
1
-4
/
+10
*
Fixes to track snapshot copy-on-write checking in the specinfo
mckusick
2001-03-07
2
-8
/
+1
*
Bitch more loudly when someone botches changes to kinfo_proc
mckusick
2001-03-07
1
-3
/
+12
*
- Don't hold the proc lock across VREF and the fd* functions to avoid lock
jhb
2001-03-07
1
-4
/
+21
*
- Release Giant a bit earlier on syscall exit.
jhb
2001-03-07
1
-20
/
+14
*
Grab the process lock while calling psignal and before calling psignal.
jhb
2001-03-07
4
-14
/
+46
*
Proc locking including using proc lock in place of proctree where
jhb
2001-03-07
1
-10
/
+27
*
Proc locking.
jhb
2001-03-07
1
-3
/
+9
*
Use the proc lock to protect access to p_sigacts->ps_sigintr.
jhb
2001-03-07
1
-4
/
+4
*
- Proc locking.
jhb
2001-03-07
1
-17
/
+29
*
Lock the process while sending it SIGARLM and updating p_realtimer.
jhb
2001-03-07
1
-0
/
+4
*
- Proc locking.
jhb
2001-03-07
1
-25
/
+7
*
- Proc locking. Most of signal handling is now MP safe and doesn't require
jhb
2001-03-07
1
-70
/
+162
*
Lock initproc when we send SIGINT to init during shutdown.
jhb
2001-03-07
1
-0
/
+2
*
- Add an extra check in priority_propagation() for UP systems to ensure we
jhb
2001-03-07
3
-3
/
+27
*
- Use _PHOLD and move it before a PROC_UNLOCK to reduce the number of
jhb
2001-03-07
1
-7
/
+18
*
- Lock the forklist with an sx lock.
jhb
2001-03-07
1
-14
/
+57
*
Check to see if p_fd is NULL before derferencing it in checkdirs(). It's
jhb
2001-03-07
2
-0
/
+4
[next]