| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
| |
machine/segments.h.
|
|
|
|
| |
Noticed by: ru
|
|
|
|
|
|
|
| |
without a detach call in between so don't try to deal with that
possiability.
This is a diff-reduction commit for the upcoming if_xname conversion.
|
| |
|
|
|
|
| |
- don't call malloc with M_WAITOK within lock context.
|
|
|
|
|
|
|
|
|
|
|
|
| |
/etc/ip6addrctl.conf.
following sample of ip6addrctl.conf is a good default:
#Prefix Precedence Label
::1/128 50 0
::/0 40 1
2002::/16 30 2
::/96 20 3
::ffff:0:0/96 10 4
|
|
|
|
|
|
|
|
| |
selection policy for IPv6 and IPv4 described in RFC3484.
source address selection part of RFC3484 is not merged
from KAME, yet.
Obtained from: KAME
|
|
|
|
|
|
|
|
|
| |
in KAME implementation, even when no policy is installed
into kernel, getaddrinfo(3) sorts addresses. Since it
causes POLA violation, I modified to don't sort addresses
when no policy is installed into kernel,
Obtained from: KAME
|
| |
|
|
|
|
| |
always shoould entered with mutex locked.
|
|
|
|
|
| |
while beeing not safe in the general case. Thanks to David Schultz
<das@freebsd.org> for help.
|
|
|
|
| |
the same effect as ACPI_NO_RESET_VIDEO kernel option.
|
|
|
|
|
|
| |
RFC3484.
Obtained from: KAME
|
|
|
|
|
| |
Without this cast the compiler cannot know that it has to convert
the null pointer constant NULL to a null pointer.
|
|
|
|
|
| |
Without this cast the compiler cannot know that it has to convert the
null pointer constant NULL to a null pointer.
|
|
|
|
| |
Cleanup the SATA support a bit now we are here anyways.
|
| |
|
| |
|
| |
|
|
|
|
| |
Make vis(3) decode errors fatal for both symlink targets and fienames.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
names containing glob(3) expressions would appear verbatim in the
output.
If such an mtree file were used by mtree in update mode, wrong things
would happen.
|
| |
|
|
|
|
|
|
|
|
| |
are now in the header of the external buffer itself which allows us
to manipulate them in the free routine without having to lock the softc
structure or the free list. To get space for these flags the chunk number
is reduced to 8 bit which amounts to a maximum of 256 chunks per allocated
page. This restriction is now enforced by a CTASSERT.
|
|
|
|
| |
characters '*', '?' and '['.
|
|
|
|
| |
- Remove several instances of GIANT_REQUIRED.
|
|
|
|
|
| |
Avoid shadowing declarations.
Avoid compairing signed and unsigned types.
|
|
|
|
|
| |
- Use swp_sizecheck() rather than assignment to swap_pager_full in
swaponsomething().
|
| |
|
| |
|
| |
|
|
|
|
|
| |
blocks in page fault hanlder, and upcall thread can be scheduled. It is
useful if process is doing lots of mmap based I/O.
|
|
|
|
| |
context related things.
|
|
|
|
|
|
|
|
|
|
| |
structures come out the right size.
Fix the ones that broke. stat32 had some missing fields from the end
and statfs32 was broken due to the strange definition of MNAMELEN
(which is dependent on sizeof(long))
I'm not sure if this fixes any actual problems or not.
|
|
|
|
|
|
|
|
| |
this is consistent with other places but will be replaced
shortly by a "proper fix"
Supported by: FreeBSD Foundation
Pain felt by: Jiri Mikulas
|
|
|
|
|
|
| |
instead of holding a lock while calling out of view
Supported by: FreeBSD Foundation
|
|
|
|
|
|
| |
been created. This has been sitting in my local tree for
far too long; I can't believe noone else has come across this
yet.
|
| |
|
|
|
|
| |
Sync usage() with the manual page: s/file/snapshot_name/g.
|
|
|
|
|
|
| |
NULL.
Submitted by: Andrew Thompson <andy@fud.org.nz>
|
| |
|
|
|
|
| |
neglected here.
|
|
|
|
|
|
|
|
|
|
| |
the module. Previously we grabbed the mutex used by the callouts,
then stopped the callout with callout_stop, but if the callout
was already active and blocked by the mutex then it would continue
later and reference the mutex after it was destroyed. Instead
stop the callout first then lock.
Supported by: FreeBSD Foundation
|
|
|
|
|
|
|
|
|
|
| |
o add some more debugging help for figuring out why folks are
getting complaints about releasing routing table entries with
a zero refcnt
o fix comment that talked about spl's
o remove duplicate define of DUMMYNET_DEBUG
Supported by: FreeBSD Foundation
|
|
|
|
|
|
|
| |
direct dispatch) to avoid extensive kernel stack usage and to
avoid directly re-entering the network stack. The latter causes
locking problems when, for example, a complete TCP handshake`
happens w/o a context switch.
|
| |
|
|
|
|
|
| |
drivers. This is prepatory to running more parts of the network system
w/o Giant.
|