| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
option and add explicit option to bind to the wildcard address. The
default is to bind to the wildcard address when no -h option has been
specified and thus backwards compatibility is maintained.
PR: kern/13049
Reviewed by: David Malone <dwmalone@maths.tcd.ie>
Submitted by: Matt Dillon <dillon@freebsd.org>, David Malone <dwmalone@maths.tcd.ie>
|
| |
| |
| |
| |
| |
| |
| | |
bind IP addresses to udp/cltp sockets separately.
PR: kern/13049
Reviewed by: David Malone <dwmalone@maths.tcd.ie>, freebsd-current
|
| |
| |
| |
| |
| |
| |
| |
| | |
during autoconfig to support strange hardware (such as the Yamaha DS-1)
which implements 'legacy' ISA devices as well as a PCI device. This will
allow the PCI driver for the YMF724 to add the legacy devices to the ISA
bus and will allow the PnP system to automatically allocate the resources
for those devices.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
the simple lock when it returns.
Also, eliminate spinning on a uniprocessor. It's pointless.
Submitted by: bde,
Assar Westerlund <assar@sics.se>
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The old code was spread out through the machdep code and was sloppy about
enabling and disabling the FEN bit (which controls access to the FP
register set). This caused a DIAGNOSTIC warning "DANGER WILL ROBINSON:
FEN SET IN cpu_fork!" sometimes when operating under high loads and could
conceivably lead to processes getting incorrect FP results.
The new code is much more strict about the FEN bit and makes sure that
*only* fpcurproc ever has it enabled. This also allows us to remove a
section of code from the exception_return path which might improve
performance marginally.
Reviewed by: gallatin
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
which is zero-based.
Correct the range checking for the value taken for %S.
Add %w for the day of the week (0-6).
Accept (but do nothing with) %U and %W. The comment for this change was
taken from NetBSD.
These changes were made after several failed attempts to contact the
author of our strptime.c .
PR: 10131
Submitted by: tadf@kt.rim.or.jp (Tadayoshi Funaba)
|
| |
| |
| |
| |
| | |
PR: 14472
Reported by: j_guojun@lbl.gov (Jin Guojun)
|
| |
| |
| |
| |
| |
| |
| | |
example of such a clone.
PR: 14601
Submitted by: Matthias Buelow <mkb@altair.mayn.de>
|
| | |
|
| |
| |
| |
| | |
Pointed out by: bde
|
| |
| |
| |
| | |
Dont panic if a nonexistant device is opened.
|
| | |
|
| |
| |
| |
| |
| | |
to make the number of compression slots parameter consistent with what
IPCP negotiates (ie, the number of slots - 1).
|
| |
| |
| |
| |
| | |
they belong there because they are device independent.
Also some other misc. fixes.
|
| |
| |
| |
| |
| |
| |
| | |
instead of duplicating the code. (2) If a wired page is passed
to vm_page_free_toq, panic instead of printing a friendly warning.
(If we don't panic here, we'll just panic later in vm_page_unwire
obscuring the problem.)
|
| |
| |
| |
| |
| |
| |
| | |
as plain time as originally intended, instead of displaying DayHH times
when the login time happens to be prior the GMT - TZ difference.
(Only noticable on systems operating east of GMT/UTC).
Local times are now used to determine the day.
|
| |
| |
| |
| | |
don't go and set it to CARRIER_LOST !
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
doing a HangupDone(). The HangupDone() may fuel
bundle_CleanDatalinks(), and if so, the bogus
UpdateSet() ends up select()ing on a closed
descriptor.....
Change the main `do/while' loop to a `for' loop so
that any `continue's do the bundle_CleanDatalinks()
& bundle_IsDead() bit.
|
| | |
|
| |
| |
| |
| | |
warnings while I'm here.
|
| |
| |
| |
| |
| |
| | |
``-unitX''.
Pointed out twice by: Gert-Jan Vons <gert-jan@bigfoot.com>
|
| |
| |
| |
| |
| |
| |
| | |
if we are really going to call ast() to avoid unexpected interrupt
recursion.
Reviewed by: bde, gallatin
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
(don't dereference NULL).
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Correctly lock vnodes when calling VOP_OPEN() from filesystem mount code.
Unify spec_open() for bdev and cdev cases.
Remove the disabled bdev specific read/write code.
|
| | |
|
| | |
|
| |
| |
| |
| | |
- Added sis driver.
|
| |
| |
| |
| | |
Found by: abial
|
| | |
|
| |
| |
| |
| | |
be the same as Xsize and Ysize.
|
| |
| |
| |
| |
| | |
PR: 14742
Submitted by: peter@wahoo.com.tw
|
| | |
|
| |
| |
| |
| | |
Move InterNIC to -i option
|
| |
| |
| |
| |
| | |
left over from the original system (d_dk was for preassigned iostat unit
numbers for disks)
|
| |
| |
| |
| |
| | |
PR: docs/14505
Submitted by: Stephen J. Roznowski <sjr@home.net>
|
| |
| |
| |
| | |
should be "VM_FAULT_NORMAL".
|
| |
| |
| |
| |
| |
| |
| |
| | |
"Options" should be:
options<ascii space><tab>OPTION_NAME
Pointed out by: obrien
|