summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright spelling.imp2010-03-1014-15/+15
| | | | | PR: 139825 Submitted by: Ruslan Mahmatkhanov
* Fix copyright spellingimp2010-03-101-1/+1
| | | | | PR: 139825 Submitted by: Ruslan Mahmatkhanov
* Enable hardware fixes for BCM5704 B0 as recommended by data sheet.yongari2010-03-101-0/+12
|
* - The OPSZ macro actually only does the right thing for int32 and int64marius2010-03-102-29/+21
| | | | | | | | | | | | | | | | | operands but not for double and extended double ones. Instead of trying to fix the macro just nuke it and unroll the loops in the correct way though as extended double operands turn out to be the only special case. - For FxTO{s,d,q} the source operand is int64 so rs2 has to be re-decoded after setting type accordingly as it's generally decoded using the low 2 bits as the type, which are 0 for these three instructions. - Similarly, in case of F{s,d,q}TOx the target is int64 so rd has to be re-decoded using not only the operand mask appropriate for int64 but also the correct register number encoding. - Use const where appropriate. - Wrap long lines. Submitted by: Peter Jeremy (partly) MFC after: 3 days
* Make NKPT a kernel option on i386 so that it can be set to a non-defaultjhb2010-03-104-0/+12
| | | | | | | value from kernel config files. Tested by: Charles Sprickman spork of bway net MFC after: 2 weeks
* nos-tun(8): make WARNS=3 cleanuqs2010-03-102-13/+16
| | | | | | | The renames are in spirit of DragonflyBSD, to keep diff minimal. PR: bin/140060 Approved by: ed (co-mentor)
* Fix white spaces.jkim2010-03-101-2/+2
|
* Fall back to wbinvd when region for CLFLUSH is >= 2MB.kib2010-03-102-4/+8
| | | | | | Submitted by: Kevin Day <toasty dragondata com> Reviewed by: jhb MFC after: 2 weeks
* Typo.jhb2010-03-101-1/+1
|
* fix handling of commands issued by RELENG_7 version of /sbin/ipfw,luigi2010-03-102-2/+4
| | | | Submitted by: Riccardo Panicucci
* Use thr_once() with once_t controls to initialize various thread_key_tjhb2010-03-108-64/+81
| | | | | | | | | | | | objects used to provide per-thread storage in the RPC code. Almost all of these used double-checking with a dedicated mutex (tsd_lock) to do this before. However, that is not always safe with more relaxed memory orders. There were also other bugs, such as one in __rpc_createrr() that caused a new key to be allocated each time __rpc_createrr() was invoked. PR: threads/144558 Reported by: Sam Robb samrobb of averesystems com (key leak) MFC after: 1 week
* Revert r204939des2010-03-101-1/+1
|
* Forgot to svn add the Makefile.des2010-03-101-0/+16
|
* Use more proper terms (from official documents) for AMD CPU's.obrien2010-03-101-1/+1
| | | | Reviewed by: imp
* Add -i to the first post-install mergemaster example to makedougb2010-03-101-2/+3
| | | | | | | | it consistent with the other. [1] Add a note about -U to the mergemaster footnote. Submitted by: obrien [1]
* Provide workaround for the ages old bug affecting certain BCM5708Ssobomax2010-03-101-3/+20
| | | | | | | | | | | | | | | | chip revision often found in the blades and resulting in interfaces not sensing carrier signal. Looking at all problem reports it appears that it only affects some very specific silicon revision (ASIC (0x57081021); Rev (B2)) and version of the PHY that supports 1000baseSX-FDX media only. Therefore, narrow the scope of workaround to combination of that revision and media type. Given that the first report on this issue is dated back to 2007, there is not much hope that this issue will ever be properly resolved. Among affected systems are IBM HS21, Intel SBXD132 and HP BL460c. PR: 118238, 122551, 140970 MFC after: 1 month
* Fix the build. The ssh-pkcs11-helper directory is empty, which isdougb2010-03-101-1/+1
| | | | causing confusion.
* Revert to r197433, the more recent change doesn't work for the commondougb2010-03-101-4/+4
| | | | case, and has not been well received.
* Fix "Empty input line" mdoc warning.sobomax2010-03-101-2/+2
| | | | Submitted by: Alexander Best
* Integrate OpenBSD rev 1.5 of x86emu.c.delphij2010-03-091-143/+205
|
* Add SIZE_MAX overflow checkache2010-03-091-0/+2
|
* Add SIZE_MAX overflow checkache2010-03-091-0/+2
|
* Add warnings to <regexp.h> and <sys/timeb.h>.ed2010-03-093-1/+9
| | | | | | | | | These header files only provide functionality that can be used in combination with libcompat. In order to prevent people from including them without any actual use (which happens a lot with <sys/timeb.h>), put a warning here to make people more aware. This means we have to lower WARNS for libcompat, which is no big deal.
* Remove unneeded include of <sys/timeb.h>.ed2010-03-091-1/+0
| | | | This header file should not be included by anything.
* uses KOBJMETHOD_END macro to indicate the end of method table.weongyo2010-03-095-5/+5
| | | | Submitted by: yongari
* o uses bus accessor macros to read values from ivar so no more valuesweongyo2010-03-095-519/+1196
| | | | | | | | | | | are referenced directly from ivar pointer. It's to do like what other buses do. [1] o changes exported prototypes. It doesn't use struct siba_* structures anymore that instead of it it uses only device_t. o removes duplicate code and debug messages. o style(9) Pointed out by: imp [1]
* Better TwinAx transceiver detection.np2010-03-092-2/+14
| | | | | | | Originally submitted by: <Bruno dot Bittner at isilon dot com> (This is a rewritten, corrected version of that patch) MFC after: 1 week
* Since the interpreter slack mode is a tunable now, enable a local hack onlyjkim2010-03-091-6/+9
| | | | when it is set. Note the default behaviour does not change by this change.
* o bdeficize expand_number_int() function;sobomax2010-03-093-38/+36
| | | | | o revert most of the recent changes (int -> int64_t conversion) by using this functon for parsing all options.
* Document a new sysctl variable and a loader tunable.jkim2010-03-091-1/+8
|
* Upgrade to OpenSSH 5.4p1.des2010-03-09129-3011/+10889
|\ | | | | | | MFC after: 1 month
| * Forgot to remove dead filesdes2010-03-088-1445/+0
| |
| * Vendor import of OpenSSH 5.4p1des2010-03-08160-8656/+17191
| |
* | - Allow users to enable dumping Debug objects without ACPI debugger.jkim2010-03-091-4/+45
| | | | | | | | | | | | | | | | Setting the new sysctl MIB "debug.acpi.enable_debug_objects" to a non-zero value enables us to print Debug object when something is written to it. - Allow users to disable interpreter slack mode. Setting the new tunable "debug.acpi.interpreter_slack" to zero disables some workarounds for common BIOS mistakes and enables strict ACPI implementations by the specification.
* | Now that the workaround for the AMD 10h CPUs is in place, re-enable machinejhb2010-03-091-1/+1
| | | | | | | | | | | | checks by default on amd64. Discussed with: alc
* | Change secrorsize back to int, since that's the data type expected by thesobomax2010-03-092-3/+21
| | | | | | | | | | | | | | ioctl(DIOCGSECTORSIZE). It creates issues on some architectures. MFC after: 1 week Reported by: Jayachandran C.
* | - Fix the highlighting for non-terminals when the last week is notedwin2010-03-092-10/+22
| | | | | | | | | | 7 days long. - "-m <N> <YYYY>" now prints only the month, not the whole year.
* | Implement AMD's recommended workaround for Erratum 383 on Family 10halc2010-03-094-8/+162
| | | | | | | | | | | | | | | | | | | | | | | | | | processors. With this workaround, superpage promotion can be re-enabled under virtualization. Moreover, machine check exceptions can safely be enabled when FreeBSD is running natively on Family 10h processors. Most of the credit should go to Andriy Gapon for diagnosing the error and working with Borislav Petkov at AMD to document it. Andriy also reviewed and tested my patches. Discussed with: jhb MFC after: 3 weeks
* | Remove inclusion of <i386/include/psl.h>marcel2010-03-091-3/+1
| | | | | | | | While here move inclusion of <sys/lock.h> in a better place.
* | Remove support for SYS_RES_DRQ.marcel2010-03-091-21/+1
| |
* | Place interrupt handling in a critical section and remove doublenwhitehorn2010-03-092-6/+8
| | | | | | | | | | | | | | | | | | | | | | counting in incrementing the interrupt nesting level. This fixes a number of bugs in which the interrupt thread could be preempted by an IPI, indefinitely delaying acknowledgement of the interrupt to the PIC, causing interrupt starvation and hangs. Reported by: linimon Reviewed by: marcel, jhb MFC after: 1 week
* | One of the advantages of enabling ECMP (a.k.a RADIX_MPATH) is toqingli2010-03-097-11/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | allow for connection load balancing across interfaces. Currently the address alias handling method is colliding with the ECMP code. For example, when two interfaces are configured on the same prefix, only one prefix route is installed. So connection load balancing among the available interfaces is not possible. The other advantage of ECMP is for failover. The issue with the current code, is that the interface link-state is not reflected in the route entry. For example, if there are two interfaces on the same prefix, the cable on one interface is unplugged, new and existing connections should switch over to the other interface. This is not done today and packets go into a black hole. Also, there is a small bug in the kernel where deleting ECMP routes in the userland will always return an error even though the command is successfully executed. MFC after: 5 days
* | Remove the check for IFF_DRV_OACTIVE right before adding a port into laggdelphij2010-03-091-4/+0
| | | | | | | | | | | | | | | | interface. The check itself seems to be coming from OpenBSD but does not seem to be useful for our code. Discussed with: thomasa MFC after: 1 month
* | BWCT boards can have 128MB SDRAM.ticso2010-03-092-2/+6
| |
* | fix signed warningticso2010-03-091-1/+1
| |
* | Rewrite input processing to not exit with error on the first EILSEQ foundache2010-03-081-108/+68
| | | | | | | | | | | | | | | | in the input data but fallback to "binary comparison" instead. POSIX says: "The input files shall be text files", nothing more, so the text file with illegal sequence is valid input. BTW, GNU sort does not fails on EILSEQ too.
* | MFV of tzdata2010e:edwin2010-03-083-64/+77
| | | | | | | | | | | | | | - Adjust beginning / end of DST in Bangladesh (minimal impact) - Fiji ends DST one month earlier to last Sunday of March - Samoa changes - Chile extends DST until 3 April this year.
* | - Set missing flag when initiating a plex rebuild with the rebuildparitylulf2010-03-081-0/+15
| | | | | | | | | | | | command. - Check if plex is already syncing or rebuilding before initiating a parity rebuild or check.
* | Add file forgotten in r204879.kib2010-03-081-0/+139
| |
* | Teach procstat(1) to display some information about signal dispositionkib2010-03-084-8/+84
| | | | | | | | | | | | | | and pending/blocked status for signals. Reviewed by: rwatson MFC after: 2 weeks
OpenPOWER on IntegriCloud