| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
| |
was shipped with DISABLE_PG_G and DISABLE_PSE, not 5.0-REL. *blush*
Disable the code - but still leave it there in case its still lurking.
|
|
|
|
| |
that we can stop turning off PG_G and PG_PS globally for releases.
|
|
|
|
| |
This causes LOR and could-sleep messages to come with a stack trace.
|
|
|
|
| |
expect end users to automatically recognize a stack trace for what it is.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
pluto2# gpt show da0
start end size contents
0 0 1 PMBR
1 1 1 Pri GPT header
2 33 32 Pri GPT table
34 401595 401562 GPT part - EFI System partition
401596 925883 524288 GPT part - FreeBSD ufs partition
925884 9314491 8388608 GPT part - FreeBSD swap partition
...
It'll print a plain uuid string for unrecognized types.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
or host specifications, eg:
!foo,bar
*.* /var/log/only_foo_or_bar.log
!-foo,bar
*.* /var/log/all_except_foo_or_bar.log
Reviewed by: roberto
Not objected to by: arch@
|
|
|
|
| |
which modify the connection list, namely, tcp_notify().
|
|
|
|
|
|
|
|
|
| |
looking for ^===> can give quite annoying false positives, especially
when building kernels, so drop it; the context can be inferred from
make's "Stop in /foo/bar/baz" messages anyway.
Also add a case that I'd missed the first time around (which happens
to be the common case, not the exception...)
|
| |
|
| |
|
|
|
|
| |
to tickle 'tail -F'.
|
|
|
|
|
|
|
|
|
| |
isnormal(). The current isinf() and isnan() are perserved for
binary compatibility with 5.0, but new programs will use the macros.
o Implement C99 comparison macros isgreater(), isgreaterequal(),
isless(), islessequal(), islessgreater(), isunordered().
Submitted by: David Schultz <dschultz@uclink.Berkeley.EDU>
|
|
|
|
|
|
|
|
|
| |
warning which breaks builds.
cc1: warnings being treated as errors
src/sys/net/bridge.c: In function `bdg_forward':
sys/net/bridge.c:931: warning: suggest parentheses around assignment used as truth value
*** Error code 1
|
|
|
|
| |
Discussed with: alfred, bde, jmallett, obrien
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
NetVolante RTA54i Broadband&ISDN Router
NetVolante RTA55i Broadband VoIP Router
NetVolante RTW65b Broadband Wireless Router
NetVolante RTW65i Broadband&ISDN Wireless Router
PR: bin/42574
Submitted by: Yoshihiko Sarumaru <mistral@imasy.or.jp>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
lower extremities.
Setting bit 4 in debugflags (sysctl kern.geom.debugflags=16) will
allow any open to succeed on rank#1 providers. This will generally
correspond to the physical disk devices: ad0, da0, md0 etc.
This fundamentally violates the mechanics of GEOMs autoconfiguration,
and is only provided as a debugging facility, so obviously error
reports on GEOM where this bit is or has been set will not be
accepted.
|
|
|
|
| |
code so it results in -A rather than -rCURRENT.
|
|
|
|
| |
graphics card in a 64bit PCI slot.
|
|
|
|
| |
non-standard.
|
|
|
|
|
|
| |
# I though this was alredy implemented
Pointy hat on my head shown by: peter
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Kill the slightly bogus #define for DECODE_PROTOTYPE
Be less verbose. Hide most (all I hope) of the CIS
parsing behind cardbus_debug_cis (which is set with
hw.cardbus.debug_cis=1).
This doesn't fix problems with parsing, but should make cardbus
less chatty. There appears to be some issues still with the
parsing of the CIS, but this won't fix them.
Prompted by: scottl
|
|
|
|
|
|
|
|
|
|
|
| |
Second part of the kldload patches for cardbus. This makes
kldload of a driver for a device that's inserted now appears
to work. To make it work, we only do a power cycle of the card
if there's no children drivers attached.
This likely is papering over bogosities in the power system. The
power sequence needs to be re-written, so I'll not worry about
the papering over until the re-write.
|
|
|
|
| |
Don't reach inside of rman to r_dev. Use rman_get_device instead.
|
| |
|
| |
|
|
|
|
|
|
| |
devd later in the boot process. This should fix all the problems
people have had with those commits. Diskless should be working again,
and those that mount /usr with nfs should be able to do that again too.
|
|
|
|
|
|
|
|
|
|
|
| |
critical remote systems. This lets us run commands from devd that
aren't on the / partition. This also means we can remove some kludges
from the networking startup that I added a while ago that caused other
problems.
There's still a race in starting devd that needs to be fixed in devd
so that things present at boot will be configured by the time devd
does daemon(). That race will be fixed later.
|
|
|
|
|
|
|
| |
device node exists directly to see if OLDCARD is compiled into the
kernel. This eliminates the scary warning that people using NEWCARD
are seeing when they have pccard_enable=YES in their /etc/rc.conf
files.
|
| |
|
| |
|
|
|
|
| |
exclusive TCP protocol lock.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
disk I/O processing.
The intent is that the disk driver in its hardware interrupt
routine will simply schedule the bio on the task queue with
a routine to finish off whatever needs done.
The g_up thread will then schedule this routine, the likely
outcome of which is a biodone() which queues the bio on
g_up's regular queue where it will be picked up and processed.
Compared to the using the regular taskqueue, this saves one
contextswitch.
Change our scheduling of the g_up and g_down queues to be water-tight,
at the cost of breaking the userland regression test-shims.
Input and ideas from: scottl
|
| |
|
| |
|
|
|
|
| |
munging the IP header to pass to the hooks
|
|
|
|
| |
Submitted by: Alexandr Kovalenko <never@nevermind.kiev.ua>
|
| |
|
| |
|
|
|
|
| |
bottom of things.
|
|
|
|
| |
Printf a warning and use DFLTPHYS if the drive has not set a size.
|
|
|
|
|
|
| |
things might happen otherwise.
Noticed by: Michael Reifenberger <root@nihil.reifenberger.com>
|
|
|
|
|
|
| |
should add more comments explaining which registers hold which variables.
Spotted by: bde
|
| |
|
|
|
|
|
|
|
| |
off of lines or words. See the man page for details.
Reviewed by: markm
MFC after: 3 days
|