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
/
netatm
Commit message (
Expand
)
Author
Age
Files
Lines
*
Make netatm/spans compile in the kernel without depending on userland
peter
2002-09-17
4
-4
/
+381
*
Replace various spelling with FALLTHROUGH which is lint()able
charnier
2002-08-25
1
-1
/
+1
*
Increase size of ifnet.if_flags from 16 bits (short) to 32 bits (int). To avoid
sobomax
2002-08-18
1
-1
/
+1
*
- Remove UM_* user land memory macros since they are no longer used.
arr
2002-06-24
1
-17
/
+1
*
- Remove DMA_* macros as only one, DMA_GET_ADDR, was used.
arr
2002-06-24
1
-8
/
+0
*
- Remove the definition for SCHED_ATM
arr
2002-06-24
1
-1
/
+0
*
- Turn a DIAGNOSTIC check into a KASSERT(9).
arr
2002-06-17
1
-4
/
+1
*
- Turn a DIAGNOSTIC check into a KASSERT(9) macro.
arr
2002-06-17
1
-6
/
+2
*
- Explicitly pass M_WAITOK in a few calls to uma_zalloc(9).
arr
2002-06-17
1
-7
/
+7
*
- Chainsaw the storage pool code. This was being used by a bunch of code
arr
2002-06-14
3
-404
/
+1
*
- Turn the hea and hfa HARP storage pools into UMA zones and insert
arr
2002-06-14
4
-19
/
+22
*
- Finish the uni part of the storage pool cleanup. There should now only
arr
2002-06-13
18
-200
/
+195
*
Use a larger data type to prevent counters wrapping so quickly.
mdodd
2002-06-07
2
-14
/
+14
*
Back out my lats commit of locking down a socket, it conflicts with hsu's work.
tanimura
2002-05-31
2
-33
/
+3
*
Pacify gcc by preinitializing a variable.
peter
2002-05-24
1
-2
/
+2
*
Fix a few warnings by adding a missing prototype
peter
2002-05-24
1
-0
/
+1
*
- Remove a few storage pools and replace them with UMA zones. The spans
arr
2002-05-24
7
-78
/
+90
*
- Turn a couple of storage pools into UMA zones and their associated calls
arr
2002-05-24
2
-10
/
+13
*
- Fix uma_zcreate parameters -- don't pass M_* flags here, doh.
arr
2002-05-23
1
-2
/
+2
*
- Turn two more storage pools into UMA zones and make the related memory
arr
2002-05-23
4
-30
/
+31
*
Lock down a socket, milestone 1.
tanimura
2002-05-20
2
-3
/
+33
*
- Remove the init routine for loop -- it broke something and I don't have
arr
2002-05-07
1
-11
/
+4
*
- Use an array of init functions to be used in a for loop in our
arr
2002-05-07
1
-4
/
+11
*
- Add atm_init_fn
arr
2002-05-07
1
-0
/
+2
*
- Add atm_sock_init()
arr
2002-05-07
3
-9
/
+16
*
- Change the atm_cm_init function to take no argument.
arr
2002-05-07
2
-2
/
+2
*
- Replaced the Atm_connection storage pool with an uma_zone of
arr
2002-05-02
3
-29
/
+31
*
- Take advantage of the M_ZERO flag that can now be passed to uma_zalloc.
arr
2002-04-30
3
-15
/
+4
*
Revert the change of #includes in sys/filedesc.h and sys/socketvar.h.
tanimura
2002-04-30
1
-2
/
+5
*
- Tweak wording of panic message to make more sense.
arr
2002-04-24
1
-2
/
+2
*
- Turn the atm_stackq_pool into a uma_zone (and change it's name to
arr
2002-04-24
1
-9
/
+9
*
- Remove atm_attributes_pool and the relating atm_allocate() and atm_free()
arr
2002-04-24
3
-11
/
+15
*
- Revert previous change of atm storage pools -> uma_zones until a solution
arr
2002-04-22
3
-19
/
+17
*
- Change the atm_attributes_pool and atm_stackq_pool to be uma_zone's
arr
2002-04-22
3
-17
/
+19
*
- Nuke some more not needed #ifdef cruft.
arr
2002-04-21
14
-319
/
+0
*
- Create a ``zero fill'' constructor for uma_zcreate's ctor argument.
arr
2002-04-20
2
-0
/
+11
*
- Nuke small sgi ifdef bits.
arr
2002-04-20
2
-9
/
+0
*
- Nuke some more #ifdef sun related sections.
arr
2002-04-19
4
-41
/
+1
*
- Nuke some #ifdef sun4m code; it hasn't been updated in 4 years and is not
arr
2002-04-19
2
-69
/
+0
*
- Change KM_ macro calls to the appropriate function call.
arr
2002-04-19
30
-238
/
+170
*
Fix missing commas.
mdodd
2002-04-17
1
-4
/
+4
*
Remove a stray comment terminator that was hiding beyond 80 columns.
mdodd
2002-04-17
1
-1
/
+1
*
- Add defines for ABR and UBR traffic types.
mdodd
2002-04-17
2
-0
/
+6
*
Wrap function in #ifdef DIAGNOSTIC to compile with -Werror.
mdodd
2002-04-17
1
-2
/
+4
*
Add ESA200 to enum atm_device.
mdodd
2002-04-17
1
-0
/
+1
*
Change callers of mtx_init() to pass in an appropriate lock type name. In
jhb
2002-04-04
1
-1
/
+1
*
Change the suser() API to take advantage of td_ucred as well as do a
jhb
2002-04-01
1
-4
/
+4
*
Remove __P.
alfred
2002-03-20
42
-719
/
+709
*
Remove __P.
alfred
2002-03-20
12
-185
/
+181
*
Unbreak fore adapters from POV of warnings.
julian
2002-02-27
2
-2
/
+2
[next]