]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/log
FreeBSD/stable/9.git
11 years agoMFC: r227309 (partial)
marius [Sat, 9 Mar 2013 02:36:32 +0000 (02:36 +0000)]
MFC: r227309 (partial)

Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.

The SYSCTL_NODE macro defines a list that stores all child-elements of
that node. If there's no SYSCTL_DECL macro anywhere else, there's no
reason why it shouldn't be static.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248085 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r243857 (partial)
marius [Sat, 9 Mar 2013 00:39:54 +0000 (00:39 +0000)]
MFC: r243857 (partial)

Mechanically substitute flags from historic mbuf allocator with
malloc(9) flags in sys/dev.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248078 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r244631
rstone [Fri, 8 Mar 2013 21:07:01 +0000 (21:07 +0000)]
MFC r244631
  Correct a series of errors in the hand-rolled locking for drace_debug.c:

  - Use spinlock_enter()/spinlock_exit() to prevent a thread holding a
    debug lock from being preempted to prevent other threads waiting
    on that lock from starvation.

  - Handle the possibility of CPU migration in between the fetch of curcpu
    and the call to spinlock_enter() by saving curcpu in a local variable.

  - Use memory barriers to prevent reordering of loads and stores of the
    data protected by the lock outside of the critical section

  - Eliminate false sharing of the locks by moving them into the structures
    that they protect and aligning them to a cacheline boundary.

  - Record the owning thread in the lock to make debugging future problems
    easier.

  Reviewed by:  rpaulo (initial version)

git-svn-id: svn://svn.freebsd.org/base/stable/9@248073 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r226452 (by marcel@)
rstone [Fri, 8 Mar 2013 21:03:35 +0000 (21:03 +0000)]
MFC r226452 (by marcel@)

  Define dtrace_cmpset_long in terms of atomic_cmpset_long
  and not by virtue of inline assembly. Now this file
  compiles on all supported architectures.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248071 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r241009
rstone [Fri, 8 Mar 2013 19:36:36 +0000 (19:36 +0000)]
MFC r241009
  Ensure that all cases that enqueue a netgraph item for delivery by a
  ngthread properly set the item's depth to 1.  In particular, prior to this
  change if ng_snd_item failed to acquire a lock on a node, the item's depth
  would not be set at all.  This fix ensures that the error code from rcvmsg/
  rcvdata is properly passed back to the apply callback.  For example, this
  fixes a bug where an error from rcvmsg/rcvdata would not previously
  propagate back to a libnetgraph consumer when the message was queued.

  Reviewed by:  mav
  MFC after:    1 month
  Sponsored by: Sandvine Incorporated

git-svn-id: svn://svn.freebsd.org/base/stable/9@248066 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r240923
rstone [Fri, 8 Mar 2013 19:01:26 +0000 (19:01 +0000)]
MFC r240923

  Some aac(4) adapters will always report that a direct access device is
  offline in response to a INQUIRY command that does not retreive vital
  product data(I personally have observed the behaviour on an Adaptec 2405
  and a 5805).  Force the peripheral qualifier to "connected" so that upper
  layers correctly recognize that a disk is present.

  This bug was uncovered by r216236.  Prior to that fix, aac(4) was
  accidentally clearing the peripheral qualifier for all inquiry commands.

  This fixes an issue where passthrough devices were not created for
  disks behind aac(4) controllers suffering from the bug.  I have
  verified that if a disk is not present that we still properly detect
  that and not create the passthrough device.

  Sponsored by: Sandvine Incorporated
  MFC after:    1 week

git-svn-id: svn://svn.freebsd.org/base/stable/9@248063 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r231879,246799,247880,248059:
delphij [Fri, 8 Mar 2013 18:46:21 +0000 (18:46 +0000)]
MFC r231879,246799,247880,248059:

Update driver to version 4.6.95.0.

Submitted by: "Duvvuru,Venkat Kumar" <VenkatKumar.Duvvuru Emulex.Com>

git-svn-id: svn://svn.freebsd.org/base/stable/9@248062 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r247632
marius [Fri, 8 Mar 2013 12:57:58 +0000 (12:57 +0000)]
MFC: r247632

- Complete r231621 (MFC'ed to stable/9 in r232092) by also blacklisting the
  bridge used by VMware for PCIe devices. While at it, update the comment
  now that we know that MSI-X doesn't work with ESXi 5.1 for Intel 82576
  either and the underlying issue is a bug in the MSI-X allocation code of
  the hypervisor.
  Reported by: Harald Schmalzbauer
- Make the nomatch table const.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248052 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r247601, r247621
marius [Fri, 8 Mar 2013 12:52:52 +0000 (12:52 +0000)]
MFC: r247601, r247621

- Correct an incorrect argument to shutdown_nice(9).
- Mark unused parameters as such.
- Use NULL instead of 0 for pointers.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248050 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r247600, r247620
marius [Fri, 8 Mar 2013 12:50:29 +0000 (12:50 +0000)]
MFC: r247600, r247620

- While Netra X1 generally show no ill effects when registering a power
  fail interrupt handler, there seems to be either a broken batch of them
  or a tendency to develop a defect which causes this interrupt to fire
  inadvertedly. Given that apart from this problem these machines work
  just fine, add a tunable allowing the setup of the power fail interrupt
  to be disabled.
  While at it, remove the DEBUGGER_ON_POWERFAIL compile time option and
  make that behavior also selectable via the newly added tunable.
- Correct an incorrect argument to shutdown_nice(9).
- Mark unused parameters as such.
- Use NULL instead of 0 for pointers.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248048 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r247579
marius [Fri, 8 Mar 2013 12:44:08 +0000 (12:44 +0000)]
MFC: r247579

- Move reporting of failures to disable RX/TX MAC under bootverbose as at
  least the Saturn chips of 501-6738 cards may fail to do so the first
  time, which isn't fatal though.
  Reported by: Paul Keusemann
- Explain why we don't enable infinite bursts on sparc64.
- Given that these chips support memory write invalidate, make sure that
  it's enabled in the command register. Also make sure that PERR# and
  SERR# assertion is enabled.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248046 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r247574
marius [Fri, 8 Mar 2013 12:13:30 +0000 (12:13 +0000)]
MFC: r247574

- In sbbc_pci_attach() just pass the already obtained bus tag and handle
  instead of acquiring these anew.
- Use NULL instead of 0 for pointers.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248044 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r247573
marius [Fri, 8 Mar 2013 12:11:37 +0000 (12:11 +0000)]
MFC: r247573

- Remove an unused header.
- Use NULL instead of 0 for pointers.
- Let ofw_pcib_probe() return BUS_PROBE_DEFAULT instead of 0 so specialized
  PCI-PCI-bridge drivers may attach instead.
- Add WARs for PLX Technology PEX 8114 bridges and PEX 8532 switches.
  Ideally, these should live in MI code but at least for the latter we're
  missing the necessary infrastructure there.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248042 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r236736
marius [Fri, 8 Mar 2013 12:08:52 +0000 (12:08 +0000)]
MFC: r236736

Add support for the Sunix SER5437A dual serial PCI Express card.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248040 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r247571
marius [Fri, 8 Mar 2013 11:41:48 +0000 (11:41 +0000)]
MFC: r247571

- Apparently, r186520 was just wrong and the clock of Oxford OX16PCI958 is
  neither DEFAULT_RCLK * 2 nor DEFAULT_RCLK * 10 but plain DEFAULT_RCLK
  and there's no (open) source indicating otherwise. This was tested with
  an EXSYS EX-41098-2, whose clock is not configurable and identifies as:
  puc0@pci0:5:1:0:        class=0x070200 card=0x06711415 chip=0x95381415 rev=0x01 hdr=0x00
      vendor     = 'Oxford Semiconductor Ltd'
      class      = simple comms
      subclass   = multiport serial

  Note that this exactly matches the card mentioned in PR 129665 so no
  sub-device/sub-vendor based quirking of the latter is possible. So maybe
  we should grow some sort of tunable, in case non-default cards such as
  the latter aren't configurable either (this also wouldn't be the first
  time an allegedly tested commit turns out to be wrong though).
- Make the TiMedia tables const.

git-svn-id: svn://svn.freebsd.org/base/stable/9@248038 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r247565, r247590
marius [Fri, 8 Mar 2013 11:32:58 +0000 (11:32 +0000)]
MFC: r247565, r247590

- Make tables, device ID strings etc const.
- Use NULL instead of 0 for pointers.
- Remove redundant bzero(9)'ing of the softc.
- Remove redundant/unused softc members.
- Don't allocate MSI/MSI-X as RF_SHAREABLE.
- Re-use bus accessor macros instead of duplicating them.
- In bce_miibus_{read,write}_reg(), remove superfluous limiting of the PHY
  address (missed in r213893).

git-svn-id: svn://svn.freebsd.org/base/stable/9@248036 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r247561
marius [Fri, 8 Mar 2013 11:25:52 +0000 (11:25 +0000)]
MFC: r247561

- Use strdup(9) instead of reimplementing it.
- Use __DECONST instead of strange casts.
- Reduce code duplication and simplify name2oid().

PR: 176373
Submitted by: Christoph Mallon

git-svn-id: svn://svn.freebsd.org/base/stable/9@248034 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247560:
kib [Fri, 8 Mar 2013 08:09:26 +0000 (08:09 +0000)]
MFC r247560:
Make the default implementation of the VOP_VPTOCNP() fail if the
directory entry, matched by the inode number, is ".".

git-svn-id: svn://svn.freebsd.org/base/stable/9@248029 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247829
bryanv [Fri, 8 Mar 2013 02:38:19 +0000 (02:38 +0000)]
MFC r247829

    Only set the barrier flag if the feature was negotiated

Approved by: grehan (mentor)

git-svn-id: svn://svn.freebsd.org/base/stable/9@248026 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247399:
pho [Wed, 6 Mar 2013 20:02:19 +0000 (20:02 +0000)]
MFC r247399:
The .journal file needs to reside on the ROOTINO which must not extend
beyond direct blocks. A typo caused this check to fail.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247900 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247854:
np [Wed, 6 Mar 2013 18:44:45 +0000 (18:44 +0000)]
MFC r247854:
Fix compile warning by including ctype.h for isdigit().

git-svn-id: svn://svn.freebsd.org/base/stable/9@247896 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246532: zfs_vget, zfs_fhtovp: properly handle the z_shares_dir object
avg [Wed, 6 Mar 2013 11:11:02 +0000 (11:11 +0000)]
MFC r246532: zfs_vget, zfs_fhtovp: properly handle the z_shares_dir object

git-svn-id: svn://svn.freebsd.org/base/stable/9@247888 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246243: uart: add resume method and enable it for attachments on
avg [Wed, 6 Mar 2013 11:07:59 +0000 (11:07 +0000)]
MFC r246243: uart: add resume method and enable it for attachments on
the most common x86 buses

git-svn-id: svn://svn.freebsd.org/base/stable/9@247887 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246245,246324: ng_ether: track interface renaming
avg [Wed, 6 Mar 2013 11:02:44 +0000 (11:02 +0000)]
MFC r246245,246324: ng_ether: track interface renaming

git-svn-id: svn://svn.freebsd.org/base/stable/9@247886 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246251: acpi: clear power button status bit after waking up
avg [Wed, 6 Mar 2013 10:52:01 +0000 (10:52 +0000)]
MFC r246251: acpi: clear power button status bit after waking up

git-svn-id: svn://svn.freebsd.org/base/stable/9@247884 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246250,246252: acpi: after wakeup from a state > S1 re-enable
avg [Wed, 6 Mar 2013 10:45:46 +0000 (10:45 +0000)]
MFC r246250,246252: acpi: after wakeup from a state > S1 re-enable
SCI_EN with a direct write

git-svn-id: svn://svn.freebsd.org/base/stable/9@247883 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r233579,236403,236408: make interrupt flags management closer to head
avg [Wed, 6 Mar 2013 10:23:56 +0000 (10:23 +0000)]
MFC r233579,236403,236408: make interrupt flags management closer to head

r233579: Restore interrupt state after executing AcpiEnterSleepState().
r236403,236408: acpi_wakeup_machdep/acpi_sleep_machdep

The merged changes are modified a bit to account for lots of missing
acpi and acpica MFCs.
For the same reason MFC to stable/8 is not practical.

MFC slackers: iwasaki, jkim

git-svn-id: svn://svn.freebsd.org/base/stable/9@247881 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246248: cpususpend_handler: mark AP as resumed only after fully
avg [Wed, 6 Mar 2013 09:33:04 +0000 (09:33 +0000)]
MFC r246248: cpususpend_handler: mark AP as resumed only after fully
setting up lapic

git-svn-id: svn://svn.freebsd.org/base/stable/9@247878 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246247: x86 suspend/resume: suspend pics and pseudo-pics in reverse order
avg [Wed, 6 Mar 2013 09:22:45 +0000 (09:22 +0000)]
MFC r246247: x86 suspend/resume: suspend pics and pseudo-pics in reverse order

git-svn-id: svn://svn.freebsd.org/base/stable/9@247877 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246246,246254: print compiler version in the kernel banner
avg [Wed, 6 Mar 2013 09:12:38 +0000 (09:12 +0000)]
MFC r246246,246254: print compiler version in the kernel banner

git-svn-id: svn://svn.freebsd.org/base/stable/9@247874 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247382:
yongari [Wed, 6 Mar 2013 08:03:26 +0000 (08:03 +0000)]
MFC r247382:
  RX checksum offloading on old Yukon controllers seem to cause more
  problems.  Disable RX checksum offloading on controllers that don't
  use new descriptor format but give chance to enable it with
  ifconfig(8).

git-svn-id: svn://svn.freebsd.org/base/stable/9@247872 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247281, r247345:
trociny [Wed, 6 Mar 2013 06:58:11 +0000 (06:58 +0000)]
MFC r247281, r247345:

r247281:

Add i/o error counters to hastd(8) and make hastctl(8) display
them.  This may be useful for detecting problems with HAST disks.

Discussed with and reviewed by: pjd

r247345:

Fix casting.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247867 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247281:
trociny [Wed, 6 Mar 2013 06:57:18 +0000 (06:57 +0000)]
MFC r247281:

Add i/o error counters to hastd(8) and make hastctl(8) display
them.  This may be useful for detecting problems with HAST disks.

Discussed with and reviewed by: pjd

git-svn-id: svn://svn.freebsd.org/base/stable/9@247866 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247268:
gallatin [Tue, 5 Mar 2013 16:37:20 +0000 (16:37 +0000)]
MFC r247268:
 Several cleanups and fixes to mxge:

 - Remove vestigial null pointer tests after malloc(..., M_WAITOK).

 - Remove vestigal qualhack union

 - Use strlcpy() instead of the error-prone strncpy() when parsing
   EEPROM and copying strings

 - Check the MAC address in the EEPROM strings more strictly.

 - Expand the macro MXGE_NEXT_STRING() at its only user. Due to a typo,
   the macro was very confusing.

 - Remove unnecessary buffer limit check.  The buffer is double-NUL
   terminated per construction.

PR:             kern/176369
Submitted by:   Christoph Mallon <christoph.mallon gmx.de>

git-svn-id: svn://svn.freebsd.org/base/stable/9@247850 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247396:
tijl [Tue, 5 Mar 2013 16:04:07 +0000 (16:04 +0000)]
MFC r247396:

Map libraries linked with -Ttext-segment=base_addr at base_addr.
Normal libraries have base address 0 and are unaffected by this change.

PR: 176216
Submitted by: Damjan Jovanovic <damjan.jov@gmail.com>
Reviewed by: kib

git-svn-id: svn://svn.freebsd.org/base/stable/9@247846 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247594:
delphij [Tue, 5 Mar 2013 06:43:54 +0000 (06:43 +0000)]
MFC r247594:

Fix a typo in mfi_stp_cmd() that would give wrong assignment.

Submitted by: Sascha Wildner <saw online de>
Obtained from: DragonFly rev 0dc98fff2206d7bb78ce5e07ac34d6954e4bd96a

git-svn-id: svn://svn.freebsd.org/base/stable/9@247828 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247443:
delphij [Tue, 5 Mar 2013 06:41:39 +0000 (06:41 +0000)]
MFC r247443:

Refresh vendor driver version which adds ARC-1224 support.

Many thanks to Areca for continuing to support FreeBSD.

Submitted by: 黃清隆 <ching2048 areca com tw>

git-svn-id: svn://svn.freebsd.org/base/stable/9@247827 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246134 ...
ian [Mon, 4 Mar 2013 16:50:01 +0000 (16:50 +0000)]
MFC r246134 ...

Improve devd startup time, by tweaking some string handling routines that are
heavily used when parsing config files.  Mostly these changes avoid making
temporary copies of the strings, and avoid doing byte at a time append
operations, on the most-used code path.

On a 1.2 GHz ARM processor this reduces the time to parse the config files
from 13 to 6 seconds.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247803 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246361 ... bump .Dd for content change.
ian [Mon, 4 Mar 2013 16:44:19 +0000 (16:44 +0000)]
MFC r246361 ... bump .Dd for content change.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247802 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247160
gallatin [Mon, 4 Mar 2013 15:32:38 +0000 (15:32 +0000)]
MFC r247160

  Bump mxge copyright.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247795 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247159
gallatin [Mon, 4 Mar 2013 15:30:38 +0000 (15:30 +0000)]
MFC r247159
  Improvements for newer mxge nics:

  - Some mxge nics may store the serial number in the SN2 field of the
    EEPROM.  These will also have an SN=0 field, so parse the SN2 field,
    and give it precedence.

  - Skip MXGEFW_CMD_UNALIGNED_TEST on mxge nics which do not require it.
    This saves roughly 10ms per port at device attach time.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247794 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247780:
dteske [Mon, 4 Mar 2013 11:40:52 +0000 (11:40 +0000)]
MFC r247780:

Fix VERBOSE reporting on results when removing _PATH_LOCALTIME for UTC option.

PR: bin/164976
Submitted by: dteske

git-svn-id: svn://svn.freebsd.org/base/stable/9@247781 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r226775:
hrs [Mon, 4 Mar 2013 05:46:35 +0000 (05:46 +0000)]
MFC r226775:

- Add support for a "!" character in regex matching in devd(8).  It inverts
  the logic (true/false) of the matching.

- Add "!usbus[0-9]+" to IFNET ATTACH notification handler in the default
  devd.conf to prevent rc.d/netif from running when usbus[0-9]+ is attached.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247767 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r230520:
dteske [Sun, 3 Mar 2013 19:31:44 +0000 (19:31 +0000)]
MFC r230520:

Clean up reinstall option and remove duplicate code

- Move the reinstall logic to be before menus are initialised
  (menus are not needed when reinstalling a zonefile).

- Remove unnecessary re-initialization of path_db.

- Update variable name and error message because we now use the
  zone name relative to /usr/share/zoneinfo, not the full path.

PR: bin/164041
Submitted by: dteske

git-svn-id: svn://svn.freebsd.org/base/stable/9@247729 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r230296:
dteske [Sun, 3 Mar 2013 19:26:05 +0000 (19:26 +0000)]
MFC r230296:

Don't write /var/db/zoneinfo when zone is not actually changed.

If the specified zone file does not exist or the -n flag is specified,
do not update /var/db/zoneinfo.

PR: bin/164039
Submitted by: dteske

git-svn-id: svn://svn.freebsd.org/base/stable/9@247728 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r230299:
dteske [Sun, 3 Mar 2013 19:20:30 +0000 (19:20 +0000)]
MFC r230299:

Fix #ifdef VERBOSE for UTC case

Update verbose output to match what actually happens when selecting
the UTC option, and when the -n option is used.

Patch updated slightly for new libdialog.

PR: bin/164042
Submitted by: dteske

git-svn-id: svn://svn.freebsd.org/base/stable/9@247727 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoDummy commit to show r247722 was (in addition to being an MFC for r227934), an
dteske [Sun, 3 Mar 2013 19:12:07 +0000 (19:12 +0000)]
Dummy commit to show r247722 was (in addition to being an MFC for r227934), an
MFC for r227947:

calloc +1 DIALOG_LISTITEM to prevent possible wild pointer access
in dlg_default_listitem().

and also for r228176: Sync xdialog_menu() implementation with sade.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247726 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246978:
markj [Sun, 3 Mar 2013 19:02:23 +0000 (19:02 +0000)]
MFC r246978:
  - Make sure to set an error code when trying to obtain a data descriptor for
    a section of type SHT_NULL.
  - Update the man page to reflect the fact that elf_getdata() and
    elf_rawdata() may return with an error of ELF_E_SECTION.

Approved by: rstone (co-mentor)

git-svn-id: svn://svn.freebsd.org/base/stable/9@247724 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r227934: Port to new libdialog.
dteske [Sun, 3 Mar 2013 18:59:59 +0000 (18:59 +0000)]
MFC r227934: Port to new libdialog.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247722 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r230005:
dteske [Sun, 3 Mar 2013 17:39:29 +0000 (17:39 +0000)]
MFC r230005:

Use a reasonable-sized buffer when formatting error messages about
installing zoneinfo.  While we're in the vicinity, add some missing
error checking to eliminate an unhelpful error message when unlink()
fails.

/me is embarrassed by the quality of his 16-year-old code.
The whole thing is awful and could stand a complete rewrite.

PR: 164038
Submitted by: Devin Teske (but implemented differently)

git-svn-id: svn://svn.freebsd.org/base/stable/9@247721 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246921:
kib [Sun, 3 Mar 2013 07:09:25 +0000 (07:09 +0000)]
MFC r246921:
Do not update the fsinfo block on each update of any fat block.
Postpone the flush to VFS_SYNC().

git-svn-id: svn://svn.freebsd.org/base/stable/9@247685 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247441:
gjb [Sun, 3 Mar 2013 00:37:34 +0000 (00:37 +0000)]
MFC r247441:
Properly handle '-h' argument.

PR: 176332

git-svn-id: svn://svn.freebsd.org/base/stable/9@247677 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r242854 (by rdivacky)
flo [Sat, 2 Mar 2013 17:51:22 +0000 (17:51 +0000)]
MFC: r242854 (by rdivacky)

Initialize hdrlen to 0 to avoid clang warning in NOINET case.

This fixes the kernel build for INET6 only kernels.

Approved by: cognet

git-svn-id: svn://svn.freebsd.org/base/stable/9@247658 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r246689, r246696
marius [Sat, 2 Mar 2013 17:39:11 +0000 (17:39 +0000)]
MFC: r246689, r246696

Make SYSCTL_{LONG,QUAD,ULONG,UQUAD}(9) work as advertised and also handle
constant values.

Reviewed by: kib

git-svn-id: svn://svn.freebsd.org/base/stable/9@247656 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r246300
marius [Sat, 2 Mar 2013 17:36:29 +0000 (17:36 +0000)]
MFC: r246300

- Make pci_ns8250_ids[] const.
- Use DEVMETHOD_END.
- Use NULL instead of 0 for pointers.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247654 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r246257
marius [Sat, 2 Mar 2013 17:32:15 +0000 (17:32 +0000)]
MFC: r246257

Improve r238673 (MFC'ed to stable/9 in r239494) to additionally allow
for odd-aligned buffers as passed in by smartd of smartmontools.
While at it, hint the compiler that 32-bit PIO is the most likely
case (idea from Linux) and use bus_{read,write}_stream_2(9) instead
of bus_{read,write}_multi_stream_2(9) for single count reads/writes.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247652 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r235857
marius [Sat, 2 Mar 2013 17:25:41 +0000 (17:25 +0000)]
MFC: r235857

mdoc: Only use macros inside a reference block.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247650 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r246106, r246139
marius [Sat, 2 Mar 2013 17:14:51 +0000 (17:14 +0000)]
MFC: r246106, r246139

Mark tftp_log() as __printflike() and deal with the fallout.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247644 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r229780 (partial)
marius [Sat, 2 Mar 2013 16:45:58 +0000 (16:45 +0000)]
MFC: r229780 (partial)

Spelling fixes for libexec/

git-svn-id: svn://svn.freebsd.org/base/stable/9@247641 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r241720 (partial)
marius [Sat, 2 Mar 2013 16:38:58 +0000 (16:38 +0000)]
MFC: r241720 (partial)

Fix warnings found by -Wmising-variable-declarations.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247638 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC: r235643
marius [Sat, 2 Mar 2013 16:33:43 +0000 (16:33 +0000)]
MFC: r235643

Properly use LDADD & DPADD to link against libwrap.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247637 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoUpdate FTP directories to include new layout. Previously discussed with
dteske [Sat, 2 Mar 2013 16:18:40 +0000 (16:18 +0000)]
Update FTP directories to include new layout. Previously discussed with
kensmith and others as this alleviates the need for the symbolic link upkeep
which is currently manually maintained.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247634 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMerge
melifaro [Sat, 2 Mar 2013 15:11:20 +0000 (15:11 +0000)]
Merge
* r233937 - Improve BPF locking model
* r233938 - Improve performace for writer-only BPF users
* r233946 - Fix build
* r235744 - Fix (new) panic on attaching to non-existent interface
* r235745 - Fix old panic when BPF consumer attaches to destroying interface
* r235746 - Call bpf_jitter() before acquiring BPF global lock
* r235747 - Make most BPF ioctls() SMP-safe.
* r236231 - Fix BPF_JITTER code broken by r235746.
* r236251 - Fix shim for BIOCSETF to drop all packets buffered on the descriptor.
* r236261 - Save the previous filter right before we set new one.
* r236262 - Fix style(9) nits, reduce unnecessary type castings.
* r236559 - Fix panic introduced by r235745
* r236806 - Fix typo introduced in r236559.

r233937
  - Improve BPF locking model.

  Interface locks and descriptor locks are converted from mutex(9) to rwlock(9).
  This greately improves performance: in most common case we need to acquire 1
  reader lock instead of 2 mutexes.

  - Remove filter(descriptor) (reader) lock in bpf_mtap[2]
  This was suggested by glebius@. We protect filter by requesting interface
  writer lock on filter change.

  - Cover struct bpf_if under BPF_INTERNAL define. This permits including bpf.h
  without including rwlock stuff. However, this is is temporary solution,
  struct bpf_if should be made opaque for any external caller.

r233938
  - Improve performace for writer-only BPF users.

  Linux and Solaris (at least OpenSolaris) has PF_PACKET socket families to send
  raw ethernet frames. The only FreeBSD interface that can be used to send raw
  frames is BPF. As a result, many programs like cdpd, lldpd, various dhcp stuff
  uses BPF only to send data. This leads us to the situation when software like
  cdpd, being run on high-traffic-volume interface significantly reduces overall
  performance since we have to acquire additional locks for every packet.

  Here we add sysctl that changes BPF behavior in the following way:
  If program came and opens BPF socket without explicitly specifyin read filter
  we assume it to be write-only and add it to special writer-only per-interface
  list. This makes bpf_peers_present() return 0, so no additional overhead is
  introduced. After filter is supplied, descriptor is added to original
  per-interface list permitting packets to be captured.

  Unfortunately, pcap_open_live() sets catch-all filter itself for the purpose
  of setting snap length.

  Fortunately, most programs explicitly sets (event catch-all) filter after
  that. tcpdump(1) is a good example.

  So a bit hackis approach is taken: we upgrade description only after second
  BIOCSETF is received.

  Sysctl is named net.bpf.optimize_writers and is turned off by default.

  - While here, document all sysctl variables in bpf.4

r233946
  Fix build broken by r233938.

r235744
  Fix panic on attaching to non-existent interface
(introduced by r233937, pointed by hrs@)
  Fix panic on tcpdump being attached to interface being removed
(introduced by r233937, pointed by hrs@ and adrian@)
  Protect most of bpf_setf() by BPF global lock

  Add several forgotten assertions (thanks to adrian@)

  Document current locking model inside bpf.c
  Document EVENTHANDLER(9) usage inside BPF.

r235745
  Fix old panic when BPF consumer attaches to destroying interface.
  'flags' field is added to the end of bpf_if structure. Currently the only
  flag is BPFIF_FLAG_DYING which is set on bpf detach and checked by bpf_attachd()
  Problem can be easily triggered on SMP stable/[89] by the following command
  (sort of):
  'while true; do ifconfig vlan222 create vlan 222 vlandev em0 up ; \
    tcpdump -pi vlan222 & ; ifconfig vlan222 destroy ; done'

  Fix possible use-after-free when BPF detaches itself from interface, freeing
  bpf_bif memory, while interface is still UP and there can be routes via this
  interface. Freeing is now delayed till ifnet_departure_event is received via
  eventhandler(9) api.

  Convert bpfd rwlock back to mutex due lack of performance gain
  (currently checking if packet matches filter is done without holding bpfd
   lock and we have to acquire write lock if packet matches)

r235746
  Call bpf_jitter() before acquiring BPF global lock due to malloc() being
  used inside bpf_jitter.

  Eliminate bpf_buffer_alloc() and allocate BPF buffers on descriptor creation
   and BIOCSBLEN ioctl. This permits us not to allocate buffers inside
   bpf_attachd() which is protected by global lock.

r235747
  Make most BPF ioctls() SMP-safe.

r236559
  Fix panic introduced by r235745. Panic occurs after first packet traverse
  renamed interface.
  Add several comments on locking

r236231
  Fix BPF_JITTER code broken by r235746.

r236251
  Fix 32-bit shim for BIOCSETF to drop all packets buffered on the descriptor
  and reset statistics as it should.

r236261
  - Save the previous filter right before we set new one.
  - Reduce duplicate code and make it little easier to read.

r236262
  Fix style(9) nits, reduce unnecessary type castings, etc., for bpf_setf().

r236806
  Fix typo introduced in r236559.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247629 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247205:
dim [Sat, 2 Mar 2013 14:39:48 +0000 (14:39 +0000)]
MFC r247205:

Pull in r175962 from upstream llvm trunk:

  X86: Disable cmov-memory patterns on subtargets without cmov.

  Fixes PR15115.

For the i386 arch, this should enable cmov instructions only on
-march=pentiumpro and higher.  Since our default CPU is i486, cmov
instructions will now be disabled by default.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247625 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247422:
delphij [Sat, 2 Mar 2013 01:04:02 +0000 (01:04 +0000)]
MFC r247422:

Add a reminder that the user should update boot block if they are upgrading
their existing system and use LZ4 compression for ZFS.

Suggested by: mm

git-svn-id: svn://svn.freebsd.org/base/stable/9@247607 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246562:
pfg [Fri, 1 Mar 2013 22:03:57 +0000 (22:03 +0000)]
MFC r246562:

Remove unused MAXSYMLINKLEN macro.

Reviewed by: mckusick
PR: kern/175794

git-svn-id: svn://svn.freebsd.org/base/stable/9@247589 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246121 ...
ian [Fri, 1 Mar 2013 20:48:53 +0000 (20:48 +0000)]
MFC r246121 ...

Fix a descriptor leak in devd.  Clients reading /var/run/devd.pipe can close
their socket connection any time, and devd only notices that when it gets an
error trying to write an event to the client.  On a system with no device
change activity, clients could connect and disappear repeatedly without devd
noticing, leading to an ever-growing list of open socket descriptors in devd.

Now devd uses poll(2) looking for POLLHUP on all existing clients every time
a new client connection is established, and also periodically (once a minute)
to proactively find zombie clients and reap the socket descriptors.  It also
now has a connection limit, configurable with a new -l <num> command line arg.
When the maximum number of connections is reached it stops accepting new
connections until some current clients drop off.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247576 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 246799:
jpaetzel [Fri, 1 Mar 2013 20:33:35 +0000 (20:33 +0000)]
MFC 246799:

Resolve issue that caused WITNESS to report LORs.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247572 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoPull in OpenPAM Micrampelis from head. Also merge a few minor module
des [Fri, 1 Mar 2013 19:42:50 +0000 (19:42 +0000)]
Pull in OpenPAM Micrampelis from head.  Also merge a few minor module
changes, most importantly support for ECDSA keys in pam_ssh.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247568 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 246367:
jhb [Fri, 1 Mar 2013 19:39:54 +0000 (19:39 +0000)]
MFC 246367:
Install <dev/agp/agpreg.h> and <dev/pci/pcireg.h> as userland headers
in /usr/include.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247566 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 246129:
jhb [Fri, 1 Mar 2013 19:01:40 +0000 (19:01 +0000)]
MFC 246129:
Allow the address and ports to be separated by a colon or period rather
than a space to permit directly pasting the output of commands such as
netstat and sockstat on the command line.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247562 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 245849:
jhb [Fri, 1 Mar 2013 18:39:46 +0000 (18:39 +0000)]
MFC 245849:
Don't assume that all Linux TCP-level socket options are identical to
FreeBSD TCP-level socket options (only the first two are).  Instead,
using a mapping function and fail unsupported options as we do for other
socket option levels.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247558 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247166:
dim [Fri, 1 Mar 2013 17:37:57 +0000 (17:37 +0000)]
MFC r247166:

Pull in r172354 from upstream clang trunk:

  Refactor the x86 CPU name logic in the driver and pass -march and -mcpu
  flag information down from the Clang driver into the Gold linker plugin
  for LTO. This allows specifying -march on the linker commandline and
  should hopefully have it pass all the way through to the LTO optimizer.

  Fixes PR14697.

Pull in r175919 from upstream clang trunk:

  Driver: Pass down the -march setting down to -cc1as on x86 too.

  The assembler historically didn't make use of any target features, but this has
  changed when support for old CPUs that don't support long nops was added.

This should fix the long nops that still occurred in crt*.o, and
possibly other object files, if the system was compiled for a CPU that
does not support those, such as Geode.

Note that gcc on i386 also does not pass through any -march, -mcpu or
-mtune setting to gas, but this has not caused any trouble yet, because
gas defaults to i386.

Reported by: lev

git-svn-id: svn://svn.freebsd.org/base/stable/9@247557 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 246037:
jhb [Fri, 1 Mar 2013 17:10:43 +0000 (17:10 +0000)]
MFC 246037:
Mark 'ticks', 'time_second', and 'time_uptime' as volatile to prevent the
compiler from caching their values in tight loops.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247555 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 246035:
jhb [Fri, 1 Mar 2013 16:18:40 +0000 (16:18 +0000)]
MFC 246035:
- Compute the correct size to reallocate when doubling the size of the
  array of loaded objects to avoid a buffer overrun.
- Use reallocf() to avoid leaking memory if the realloc() fails.

PR: kern/175648

git-svn-id: svn://svn.freebsd.org/base/stable/9@247553 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 245577,245640:
jhb [Fri, 1 Mar 2013 14:54:26 +0000 (14:54 +0000)]
MFC 245577,245640:
Don't attempt to use clflush on the local APIC register window.  Various
CPUs exhibit bad behavior if this is done (Intel Errata AAJ3, hangs on
Pentium-M, and trashing of the local APIC registers on a VIA C7).  The
local APIC is implicitly mapped UC already via MTRRs, so the clflush isn't
necessary anyway.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247547 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFH (r246328): sort knobs
des [Fri, 1 Mar 2013 10:33:31 +0000 (10:33 +0000)]
MFH (r246328): sort knobs

git-svn-id: svn://svn.freebsd.org/base/stable/9@247544 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFH (r240278): document -quit
des [Fri, 1 Mar 2013 09:49:55 +0000 (09:49 +0000)]
MFH (r240278): document -quit

git-svn-id: svn://svn.freebsd.org/base/stable/9@247541 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFH (r238602): add -g (gigabyte) flag
des [Fri, 1 Mar 2013 09:39:53 +0000 (09:39 +0000)]
MFH (r238602): add -g (gigabyte) flag

git-svn-id: svn://svn.freebsd.org/base/stable/9@247538 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 245823,245824,246210
jhb [Fri, 1 Mar 2013 03:04:57 +0000 (03:04 +0000)]
MFC 245823,245824,246210
- Use decimal values for UDP, TCP, and UNIX domain socket options rather
  than hex to avoid implying that these constants should be treated as bit
  masks.
- Add placeholder constants to reserve a portion of the socket option
  name space for use by downstream vendors to add custom options.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247525 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoRegenerate
des [Fri, 1 Mar 2013 01:03:27 +0000 (01:03 +0000)]
Regenerate

git-svn-id: svn://svn.freebsd.org/base/stable/9@247518 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 245610,245633,245635:
jhb [Fri, 1 Mar 2013 01:02:28 +0000 (01:02 +0000)]
MFC 245610,245633,245635:
Include the thread name along with the command name when displaying the
command name of a thread from a multi-threaded process that doesn't have
an available argument list (such as kernel processes) and threads display
is enabled via -H.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247516 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFH (r245527): add OPENSSH_NONE_CIPHER build option
des [Fri, 1 Mar 2013 01:02:26 +0000 (01:02 +0000)]
MFH (r245527): add OPENSSH_NONE_CIPHER build option

git-svn-id: svn://svn.freebsd.org/base/stable/9@247515 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247296: libexpat 2.1.0.
delphij [Fri, 1 Mar 2013 00:56:57 +0000 (00:56 +0000)]
MFC r247296: libexpat 2.1.0.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247513 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFH (r240107,240111,240361): warn against using weak PRNGs
des [Fri, 1 Mar 2013 00:52:57 +0000 (00:52 +0000)]
MFH (r240107,240111,240361): warn against using weak PRNGs

git-svn-id: svn://svn.freebsd.org/base/stable/9@247512 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247334:
delphij [Fri, 1 Mar 2013 00:46:41 +0000 (00:46 +0000)]
MFC r247334:

Correct a typo introduced in r153575, which gives inverted logic when
handling blocking semantics when seeding.

PR: kern/143298
Submitted by: James Juran <james juran baesystems com>
Reviewed by: markm

git-svn-id: svn://svn.freebsd.org/base/stable/9@247511 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 245508,245566,245568,245611,245909:
jhb [Thu, 28 Feb 2013 21:57:38 +0000 (21:57 +0000)]
MFC 245508,245566,245568,245611,245909:
Various fixes to timestamps in NFS:
- Use the VA_UTIMES_NULL flag to detect when NULL was passed to utimes()
  instead of comparing the desired time against the current time as a
  heuristic.
- Remove unused nfs_curusec().
- Use vfs_timestamp() to set file timestamps rather than invoking
  getmicrotime() or getnanotime() directly in NFS.
- Use NFSD_MONOSEC (which maps to time_uptime) instead of the seconds
  portion of wall-time stamps to manage timeouts on events.
- Remove unused nd_starttime from the per-request structure in the new
  NFS server.
- Use nanotime() for the modification time on a delegation to get as
  precise a time as possible.
- Use time_second instead of extracting the second from a call to
  getmicrotime().

git-svn-id: svn://svn.freebsd.org/base/stable/9@247502 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 245238:
jhb [Thu, 28 Feb 2013 21:24:10 +0000 (21:24 +0000)]
MFC 245238:
Add an option to not drop options from the third retransmitted SYN.  If the
SYNs (or SYN/ACK replies) are dropped due to network congestion, then the
remote end of the connection may act as if options such as window scaling
are enabled but the local end will think they are not.  This can result in
very slow data transfers in the case of window scaling disagreements.

Note that the unlike HEAD the existing behavior is preserved by default,
but it can be disabled by setting the
net.inet.tcp.rexmit_drop_options sysctl to zero.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247498 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 245476:
jhb [Thu, 28 Feb 2013 19:00:57 +0000 (19:00 +0000)]
MFC 245476:
- More properly handle interrupted NFS requests on an interruptible mount
  by returning an error of EINTR rather than EACCES.
- While here, bring back some (but not all) of the NFS RPC statistics lost
  when krpc was committed.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247491 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 245471:
jhb [Thu, 28 Feb 2013 18:58:37 +0000 (18:58 +0000)]
MFC 245471:
Do not require a filter-only interrupt handler for puc ports that are not
serial devices (such as printer ports).  This allows ppc devices attached
to puc to correctly setup an interrupt handler and work.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247489 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 241748:
jhb [Thu, 28 Feb 2013 18:49:31 +0000 (18:49 +0000)]
MFC 241748:
When checking to see if a video output's _ADR matches an entry in the
parent adapter's _DOD list, only check the low 16 bits of both _ADR and
_DOD.  The language in the ACPI spec seems to indicate that the _ADR values
should exactly match the entries in _DOD.  However, I assume that the
masking added to _DOD values was added to work around some known busted
machines (the commit history doesn't indicate either way), and the ACPI
spec does require that the low 16 bits are unique for all video outputs,
so only checking the low 16 bits should be fine.

This fixes recognition of video outputs that use the new standardized
device ID scheme in ACPI 3.0 that set bit 31 such as certain Dell laptops.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247487 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r247071:
jamie [Thu, 28 Feb 2013 18:46:56 +0000 (18:46 +0000)]
MFC r247071:

  Don't worry if a module is already loaded when looking for a fstype to mount
  (possible in a race condition).

Reviewed by: kib

git-svn-id: svn://svn.freebsd.org/base/stable/9@247486 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoPull in OpenSSH 6.1 from head.
des [Thu, 28 Feb 2013 18:43:50 +0000 (18:43 +0000)]
Pull in OpenSSH 6.1 from head.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247485 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 241730: Correct the order of the MFU and MRU labels.
jhb [Thu, 28 Feb 2013 18:24:07 +0000 (18:24 +0000)]
MFC 241730: Correct the order of the MFU and MRU labels.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247483 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 241027:
jhb [Thu, 28 Feb 2013 18:22:41 +0000 (18:22 +0000)]
MFC 241027:
- Re-shuffle the <machine/pc/bios.h> headers to move all kernel-specific
  bits under #ifdef _KERNEL but leave definitions for various structures
  defined by standards ($PIR table, SMAP entries, etc.) available to
  userland.
- Consolidate duplicate SMBIOS table structure definitions in ipmi(4)
  and smbios(4) in <machine/pc/bios.h> and make them available to
  userland.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247481 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 241198:
jhb [Thu, 28 Feb 2013 18:12:56 +0000 (18:12 +0000)]
MFC 241198:
Display the matrix of inter-domain distances in the SLIT table.  This is
used to complement the SRAT table on NUMA machines.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247480 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC 240968:
jhb [Thu, 28 Feb 2013 18:10:20 +0000 (18:10 +0000)]
MFC 240968:
Merge similar fixes from 223198 from igb to ixgbe:
- Use a dedicated task to handle deferred transmits from the if_transmit
  method instead of reusing the existing per-queue interrupt task.
  Reusing the per-queue interrupt task could result in both an interrupt
  thread and the taskqueue thread trying to handle received packets on a
  single queue resulting in out-of-order packet processing and lock
  contention.
- Don't define ixgbe_start() at all when if_transmit is used.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247478 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246789:
hselasky [Thu, 28 Feb 2013 16:56:08 +0000 (16:56 +0000)]
MFC r246789:
Add USB API to read power draw on USB devices.
Update usbconfig to print power draw on USB devices.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247475 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246753:
hselasky [Thu, 28 Feb 2013 16:43:41 +0000 (16:43 +0000)]
MFC r246753:
Add new USB ID to FTDI driver.

PR: kern/175893

git-svn-id: svn://svn.freebsd.org/base/stable/9@247474 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

11 years agoMFC r246944:
hselasky [Thu, 28 Feb 2013 16:39:44 +0000 (16:39 +0000)]
MFC r246944:
Fix bad EEPROM parsing code.

git-svn-id: svn://svn.freebsd.org/base/stable/9@247473 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f