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
/
dev
/
hatm
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix multiple incorrect SYSCTL arguments in the kernel:
hselasky
2014-10-21
1
-3
/
+11
*
Follow up to r225617. In order to maximize the re-usability of kernel code
davide
2014-10-16
1
-1
/
+1
*
Mechanically convert to if_inc_counter().
glebius
2014-09-19
2
-9
/
+9
*
Fix style bug: rename the refcount field of m_ext to ext_cnt, to match
glebius
2014-07-11
1
-2
/
+2
*
All mbuf external free functions never fail, so let them be void.
glebius
2014-07-11
1
-4
/
+2
*
Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
eadler
2013-11-30
1
-2
/
+2
*
Similar to the (1 << 31) case it is not defined to do (2 << 30).
eadler
2013-11-30
1
-1
/
+1
*
The r48589 promised to remove implicit inclusion of if_var.h soon. Prepare
glebius
2013-10-26
5
-0
/
+5
*
Give (*ext_free) an int return value allowing for very sophisticated
andre
2013-08-25
1
-4
/
+6
*
Add an mbuf pointer parameter to (*ext_free) to give the external
andre
2013-08-24
1
-4
/
+4
*
Update PCI drivers to no longer look at the MEMIO-enabled bit in the PCI
scottl
2013-08-12
1
-7
/
+1
*
Mechanically substitute flags from historic mbuf allocator with
glebius
2012-12-04
2
-3
/
+3
*
More conversions of drivers to use the PCI parent DMA tag.
scottl
2012-03-12
1
-2
/
+2
*
Remove extraneous semicolons, no functional changes.
mbr
2010-01-07
1
-2
/
+2
*
Free pointer from getenv() when done with it.
emaste
2009-11-30
1
-0
/
+1
*
Take a step towards removing if_watchdog/if_timer. Don't explicitly set
jhb
2009-11-06
1
-1
/
+0
*
Give MEXTADD() another argument to make both void pointers to the
phk
2008-02-01
1
-2
/
+2
*
Remove the __inline qualifier from a function which is in fact not an
mjacob
2007-06-08
1
-1
/
+1
*
o break newbus api: add a new argument of type driver_filter_t to
piso
2007-02-23
1
-1
/
+1
*
Replace m_extadd() with macro version MEXTADD().
andre
2005-09-19
1
-2
/
+2
*
Fix "struct ifnet" leaks when attach() fails in the middle.
ru
2005-09-16
1
-3
/
+4
*
Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE and
rwatson
2005-08-09
5
-16
/
+16
*
Convert the atomic_ptr() operations over to operating on uintptr_t
jhb
2005-07-15
1
-3
/
+6
*
Fix another fallout from the ifnet change that assumed that a softc
harti
2005-07-01
3
-5
/
+5
*
Fix the debugging macro. The struct ifnet isn't embedded in softc
harti
2005-06-22
1
-1
/
+1
*
Stop embedding struct ifnet at the top of driver softcs. Instead the
brooks
2005-06-10
6
-114
/
+122
*
Add a missing comma which prevents compilation with debugging enabled.
harti
2005-05-25
1
-1
/
+1
*
Use BUS_PROBE_DEFAULT for pci probe return value
imp
2005-03-05
1
-1
/
+1
*
Start each of the license/copyright comments with /*-, minor shuffle of lines
imp
2005-01-06
8
-8
/
+8
*
Convert callers to the new bus_alloc_resource_any(9) API.
njl
2004-03-17
1
-4
/
+4
*
All three of these drivers abused cv_waitq_empty in the same way by spinning
scottl
2004-02-29
1
-7
/
+2
*
change NULL to 0 to silence warning.
alfred
2003-12-24
1
-1
/
+1
*
Make the driver conditionally MPSAFE. MPSAFEty defaults to not-mpsafe
harti
2003-11-05
2
-2
/
+9
*
When compiled with debugging trace the number of transmit mbufs that
harti
2003-11-05
2
-2
/
+46
*
Initialize the USED flag in new external receive buffers to 0, not to 1.
harti
2003-11-05
1
-2
/
+2
*
Replace the if_name and if_unit members of struct ifnet with new members
brooks
2003-10-31
1
-4
/
+1
*
Fix breakage on ia64: PAGE_SIZE on ia64 is large enough that more than
harti
2003-10-31
1
-1
/
+5
*
Explain why the lock-free allocation algorithm is safe in our case
harti
2003-10-30
1
-0
/
+18
*
Reinvent the used-flag for external mbufs. This and the on-card flag
harti
2003-10-30
3
-19
/
+56
*
Allow sending of more than one raw cell from a single mbuf. Only the
harti
2003-10-29
1
-8
/
+11
*
Remove a superfluous ) from the previous commit. This was obviously
harti
2003-10-29
1
-1
/
+1
*
Make the maximum number of pages for external mbufs configurable in
harti
2003-10-29
3
-2
/
+7
*
Make the value of the HATM_DEBUG symbol the default for the debugging
harti
2003-10-29
3
-13
/
+15
*
Inline a function that was called only in one place directly into that place.
harti
2003-10-29
2
-72
/
+72
*
We have some space in the external mbufs so use this space for
harti
2003-10-29
2
-2
/
+5
*
Defer allocation of the actual receive mbuf until the external buffer
harti
2003-10-29
4
-29
/
+30
*
Get rid of the mutexes for the exernal buffer free lists. Use
harti
2003-10-29
3
-52
/
+51
*
When we cannot allocate an external buffer (bacause we've hit
harti
2003-10-27
1
-9
/
+5
*
Sysctl names should not contain dots. Convert them to underlines.
harti
2003-10-24
1
-19
/
+19
*
Use PCIR_BAR(x) instead of PCIR_MAPS.
jhb
2003-09-02
1
-1
/
+1
[next]