| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
| |
contigmalloc() instead of calling bzero().
|
|
|
|
|
|
|
| |
http://sources.zabbadoz.net/freebsd/patchset/110-ipsec-netkey-key.diff
Submitted by: "Bjoern A. Zeeb" <bzeeb+freebsd@zabbadoz.net>
Reviewed by: itojun
|
|
|
|
|
|
|
|
|
| |
http://sources.zabbadoz.net/freebsd/patchset/110-ipsec-netkey-key.diff
with some modification.
Submitted by: "Bjoern A. Zeeb" <bzeeb+freebsd@zabbadoz.net>
Reviewed by: itojun
Obtained from: KAME
|
|
|
|
| |
ndis_cpu_cnt().
|
|
|
|
| |
1.57 -> 1.59 errata/article.sgml
|
| |
|
|
|
|
|
| |
and receive FCS-less RFC1490-"bridged" Ethernet packets that are
currently just ignored.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
ithread_remove_handler() may fail to remove the interrupt handler if
it decides to let the ithread do the removal. The problem is that during
boot "cold" is set, which causes msleep() to return immediately. This
will cause ithread_remove_handler() to fail to wait for the ithread
to do the removal from the handler TAILQ before freeing the handler
back to the heap. Bad things will happen when some other user of the
TAILQ, such as ithread_add_handler() or the actual ithread attempts to use
the freed handler. Fix the problem by forcing ithread_remove_handler()
to do the actual removal itself if the "cold" flag is set.
Reviewed by: jhb
|
|
|
|
| |
Centralize the definition to make it easier to change.
|
|
|
|
|
|
|
| |
depending on a target will cause ${MAKE} to have been "reset" to
the initial value by make(1). This breaks, for example,
make MAKE="make -f subMakefile" clean. The supported way to pass
these sorts of make flags is actually the .MAKEFLAGS variable.
|
|
|
|
|
| |
Tested on: AMD64
Reviewed by: wpaul
|
| |
|
| |
|
|
|
|
|
| |
Submitted by: Sean Welch <welchsm@earthlink.net>
MFC after: 1 week
|
|
|
|
| |
both master and slave at the same time confusing the probe code.
|
|
|
|
| |
acpi_toshiba(4) driver with ACPI_DEBUG and thus fix LINT on i386.
|
|
|
|
|
|
|
|
|
|
|
| |
the usual parallel make race in custom .y rules.
- Fixed some style bugs.
- Removed -v from YFLAGS.
Prodded by: bde
Reviewed by: bde, njl
|
|
|
|
|
|
|
|
| |
kmem_free(). Note: The FreeBSD-specific code in this file has been
subsumed by the FreeBSD-specific header file, pdq_freebsd.h. That header
file already specifies the use of contigmalloc() and contigfree(). Thus,
the purpose of this change is to avoid having nonsensical examples of
FreeBSD-specific memory allocation in our source tree.
|
|
|
|
|
|
|
| |
* Long statements with '\' continuation now use <4 spaces>continuation
consistently.
* wraps some long lines
* More consistent on how very simular repeated commands are wrapped.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
needed for generating dependencies. SRCS are always part of it,
and normally only they.
This can be useful in some random cases where it's necessary to
have something in .depend that isn't part of SRCS. This will be
used to replace a hack in lib/libpam/libpam/Makefile.
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
| |
| |
| | |
Jonathan Heusser <jonny@drugphish.ch>
|
|\ \
| |/
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
| |
| |
| | |
Przemyslaw Frasunek on bugtraq list.
|
| |
| |
| |
| | |
Requested by: scottl, "Eugenia Loli-Queru" <eugenia at osnews dot com>
|
| |
| |
| |
| |
| |
| | |
notes [2].
Submitted by: nectar [1], gerald [2]
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
nexus code no longer searches for interrupt controllers.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
the MacIO chip and PSIM's IOBus. Bus-specific drivers should
use the identify method to attach themselves to nexus so
interrupt can be allocated before the h/w is probed. The
'early attach' routine in openpic is used for this stage
of boot. When h/w is probed, the openpic can be attached
properly. It will enable interrupts allocated prior to
this.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
and add_child entry point to allow devices to use the identify
method to add themselves if need be (e.g. openpic, syscons).
Export interrupt-controller-add routine for extern int cntlr drivers.
Eliminate recursive OFW device-tree walk and only iterate the
top-level ala sparc64. Allow child devices to set the device
type with write_ivars.
Step 1 of many in removing the hard-dependency on OpenFirmware.
|
| | |
|
| | |
|
| |
| |
| |
| | |
Obtained from: KAME
|
| |
| |
| |
| |
| | |
Submitted by: "Bjoern A. Zeeb" <bzeeb+freebsd@zabbadoz.net>
Reviewed by: itojun
|
| |
| |
| |
| | |
us closer to being able to run the Intel PRO/Wireless 5000 driver.
|
| |
| |
| |
| | |
MFC after: 3 days
|