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
/
sys_pipe.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Use __FBSDID().
obrien
2003-06-11
1
-2
/
+3
*
style(9).
mux
2003-06-09
1
-12
/
+20
*
Need to hold the same SMP lock for (knote) list traversal as for
hsu
2003-04-02
1
-1
/
+1
*
- Add vm_paddr_t, a physical address type. This is required for systems
jake
2003-03-25
1
-1
/
+2
*
Back out M_* changes, per decision of the TRB.
imp
2003-02-19
1
-2
/
+2
*
Do not allow kqueues to be passed via unix domain sockets.
alfred
2003-02-15
1
-1
/
+1
*
Use atomic ops to update amountpipekva. Amountpipekva represents the
alc
2003-02-13
1
-5
/
+8
*
Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.
alfred
2003-01-21
1
-2
/
+2
*
Bow to the whining masses and change a union back into void *. Retain
dillon
2003-01-13
1
-12
/
+12
*
Change struct file f_data to un_data, a union of the correct struct
dillon
2003-01-12
1
-12
/
+12
*
White-space changes.
phk
2002-12-24
1
-7
/
+7
*
Detediousficate declaration of fileops array members by introducing
phk
2002-12-23
1
-12
/
+7
*
Remove a KASSERT I added in 1.73 to catch uninitialized pipes.
alfred
2002-10-14
1
-2
/
+0
*
whitespace fixes.
alfred
2002-10-12
1
-2
/
+2
*
Change iov_base's type from `char *' to the standard `void *'. All
mike
2002-10-11
1
-1
/
+1
*
In an SMP environment post-Giant it is no longer safe to blindly
truckman
2002-10-03
1
-2
/
+2
*
Improve locking of pipe mutexes in the context of MAC:
rwatson
2002-10-01
1
-4
/
+12
*
Be consistent about "static" functions: if the function is marked
phk
2002-09-28
1
-2
/
+2
*
Don't use "NULL" when "0" is really meant.
archie
2002-08-21
1
-2
/
+2
*
Break out mac_check_pipe_op() into component check entry points:
rwatson
2002-08-19
1
-4
/
+4
*
In continuation of early fileop credential changes, modify fo_ioctl() to
rwatson
2002-08-17
1
-3
/
+4
*
Correct white space nits that crept in during my recent merges of
rwatson
2002-08-16
1
-1
/
+1
*
Make similar changes to fo_stat() and fo_poll() as made earlier to
rwatson
2002-08-16
1
-8
/
+10
*
In order to better support flexible and extensible access control,
rwatson
2002-08-15
1
-8
/
+8
*
Introduce support for labeling and access control of pipe objects
rwatson
2002-08-13
1
-0
/
+60
*
Check the far end before registering an EVFILT_WRITE filter on a pipe.
des
2002-08-05
1
-0
/
+3
*
Remove unneeded caddr_t casts.
alfred
2002-07-22
1
-5
/
+5
*
o Lock accesses to the page queues.
alc
2002-07-13
1
-0
/
+11
*
More caddr_t removal, make fo_ioctl take a void * instead of a caddr_t.
alfred
2002-06-29
1
-2
/
+3
*
document that the pipe fo_stat routine doesn't need locks because it's
alfred
2002-06-28
1
-0
/
+4
*
Make funsetown() take a 'struct sigio **' so that the locking can
alfred
2002-05-06
1
-1
/
+1
*
Redo the sigio locking.
alfred
2002-05-01
1
-1
/
+1
*
Use pmap_extract() instead of pmap_kextract() to retrieve the physical
tmm
2002-04-13
1
-1
/
+2
*
Back out the last revision - it does not work correctly when one of
tmm
2002-04-13
1
-17
/
+6
*
Do not use pmap_kextract() to find out the physical address of a user
tmm
2002-04-12
1
-6
/
+17
*
Change callers of mtx_init() to pass in an appropriate lock type name. In
jhb
2002-04-04
1
-1
/
+1
*
Allow resursion on the pipe mutex because filt_piperead() and filt_pipewrite()
alc
2002-03-27
1
-1
/
+1
*
When "cloning" a pipe's buffer bcopy the data after dropping the pipe's
alfred
2002-03-22
1
-2
/
+2
*
Remove references to vm_zone.h and switch over to the new uma API.
jeff
2002-03-20
1
-4
/
+4
*
This is the first part of the new kernel memory allocator. This replaces
jeff
2002-03-19
1
-2
/
+2
*
Bug fixes:
alfred
2002-03-15
1
-5
/
+10
*
Don't deref NULL mutex pointer when pipeclose()'ing a pipe that is not
alfred
2002-03-09
1
-30
/
+51
*
Track the number of wired pages to avoid unwiring unwired pages.
tanimura
2002-03-05
1
-0
/
+1
*
kill __P.
alfred
2002-02-27
1
-22
/
+22
*
add assertions in the places where giant is required to catch when
alfred
2002-02-27
1
-0
/
+12
*
Fix a NULL deref panic in pipe_write, we can't blindly lock
alfred
2002-02-27
1
-12
/
+12
*
MPsafe fixes:
alfred
2002-02-27
1
-4
/
+23
*
First rev at making pipe(2) pipe's MPsafe.
alfred
2002-02-27
1
-22
/
+68
*
SMP Lock struct file, filedesc and the global file list.
alfred
2002-01-13
1
-4
/
+20
*
Make kevents on pipes work as described in the manpage - when the last
sobomax
2001-11-19
1
-0
/
+1
[next]