| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
| |
a receive socket in DDP. This reduces the number of mutex operations
required to deliver to a socket by two, and is the model used in other
protocols.
|
|
|
|
| |
MFC after: 3 days
|
|
|
|
|
|
|
|
|
|
|
| |
header. pf finds the first TCP/UDP/ICMP6 header to filter by traversing
the header chain. In the case where headers are skipped, the protocol
checksum verification used the wrong length (included the skipped headers),
leading to incorrectly mismatching checksums. Such IPv6 packets with
headers were silently dropped.
Discovered by: Bernhard Schmidt
MFC after: 1 week
|
|
|
|
|
|
|
|
|
|
|
|
| |
ifnet_rename() to support situations where rc.conf's $network_interfaces
variable is set to an explicit list of network interfaces (instead of
the default "auto").
Using "list_network_interfaces all" resulted in using
$network_interfaces for both interface _renaming_ and interface
_configuration_ which obviously cannot work either before (if the
new name is in $network_interfaces) or after (if the old name is in
$network_interfaces) renaming the interface.
|
| |
|
|
|
|
|
|
|
|
|
| |
and that I've verified things seem to basically work. I was able to
boot and hot plug usb devices. Please let me know if this causes
problems for anybody.
The push down of giant has proceeded to the point that this will start
to matter more and more.
|
|
|
|
|
|
|
|
| |
solib-svr4.c to the MD makefiles because they are native files for
alpha and sparc64, but target files for amd64, i386 and ia64.
Note that kgdb(1) does not yet build as a cross-debugger due to
libkvm.
|
|
|
|
|
|
|
|
|
| |
anywhere in the DAG. This includes configurations that are not
allowed by the EFI specification.
o Reject a GPT partition table if it's not preceeded by a PMBR.
There's no need to preserve the MBR partitioning anymore as GPT
is mature and with the first bullet extending the applicability
of GPT, it's better to be a bit more strict.
|
| |
|
|
|
|
| |
subdirectories.
|
|
|
|
|
|
|
|
|
|
|
| |
If we are resuming non-MPSAFE drivers, they need Giant held for them.
This may fix some obscure suspend/resume problems. It has fixed keyrate
setting problems that were triggered by cardbus (MPSAFE) changing the
ordering for syscons resume (non-MPSAFE). Also, add some asserts that
Giant is held in our suspend/resume and shutdown methods.
Found by: iedowse
MFC after: 2 days
|
|
|
|
|
|
|
| |
for cleanup of pkg-plist files with respect to handling of the share/locale
subdirectories.
MFC after: 3 days
|
|
|
|
|
|
|
| |
Also reorder tunables.
Approved by: njl
MFC after: 1 week
|
|
|
|
|
|
| |
possible, such as the inner loop of pmap_copy().
Remove two comments that apply to i386 but not amd64.
|
|
|
|
|
|
|
|
| |
because we know it then and we need it when inserting a component which
wasn't destroyed while device was running.
Reported by: Michael Handler <handler@grendel.net>
MFC after: 1 week
|
|
|
|
|
|
|
| |
- Add a missing period.
Noticed by: ru
Approved by: Jorge Mario G. Mazo <jgutie11@eafit.edu.co> [1]
|
|
|
|
| |
sparc64/pci/ofw_pci.h is no longer required for compiling modules.
|
|
|
|
|
|
| |
can't be removed as ofw_console(4) and zs(4) use them so one has to
live with some complaints about non-existent devices at boot time and
remove the respective entries locally for now.
|
| |
|
|
|
|
|
| |
In the near future rootfs mounting will not require special handling
in the filesystems.
|
| |
|
|
|
|
|
|
| |
NOINET6 case.
Reported by: ru
|
|
|
|
|
|
|
|
|
| |
to nmount.
Make kernel_mount() accept the output from mount_arg() and know how to
free the malloc'ed space.
Make kernel_vmount() use the new function.
|
| |
|
|
|
|
|
|
|
|
| |
and if so call it.
The cmount method will gather and interpret omount() style arguments,
and issue a kern_[v]mount() call to execute the corresponding nmount
operation.
|
| |
|
|
|
|
| |
args to nmount request.
|
|
|
|
| |
the code path.
|
| |
|
|
|
|
| |
- Avoid LOR in pcn_probe() by removing useless mutex stuff.
|
|
|
|
|
|
| |
- Initialize sc->pcn_type during ATTACH as softc contents may not surivive
from PROBE.
- Print out chip-id to assist with ongoing pcn(4) debugging efforts.
|
| |
|
|
|
|
|
|
| |
to privent running of PPP's state machine in non PPP mode.
MFC: after 3 days.
|
|
|
|
| |
Obtained from: NetBSD
|
|
|
|
|
|
|
| |
as a module if possible.
Use it so we don't have linker magic in the middle of the already
complex mount code.
|
|
|
|
|
|
|
| |
initialized "by a call to getcontext(3) or makecontext(3)" and not "by a
call to setcontext(3) or makecontext(3)".
MFC after: 3 days
|
|
|
|
| |
Reviewed by: ru
|
|
|
|
| |
Submitted by: ru
|
|
|
|
| |
to change to size_t in a couple of other places too.
|
| |
|
|
|
|
| |
if the VI_LOCK() is held.
|
| |
|
|
|
|
| |
Submitted by: johan
|
|
|
|
| |
should be Byte (as the numerous casts to Byte in the function calls show).
|
|
|
|
| |
Tripped up: marks
|
|
|
|
| |
Informed by: nyan
|
|
|
|
| |
Checked with: diff on object file.
|
|
|
|
|
|
| |
for now, only include the headers for i386, amd64, or ia64.
Pointed out by: grehan
|
|
|
|
| |
Reviewed by: ru
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
of the .SHELL target. Formerly it used to select the shell with the
longest common trailing substring, so that bash would select sh, but pocsh
would select csh. Now an exact match is required so that specifying bash
without also giving a path and the other keywords will give an error.
PR:
Submitted by:
Reviewed by: ru
Approved by:
Obtained from:
MFC after:
|