]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/log
FreeBSD/stable/8.git
12 years agoMFC 226217,227070,227341,227502:
jhb [Fri, 6 Jan 2012 19:32:39 +0000 (19:32 +0000)]
MFC 226217,227070,227341,227502:
Add the posix_fadvise(2) system call.  It is somewhat similar to
madvise(2) except that it operates on a file descriptor instead of a
memory region.  It is currently only supported on regular files.

Note that this adds a new VOP, so all filesystem modules must be
recompiled.

Approved by: re (kib)

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

12 years agoMFC r228326-228327,228331-228332:
yongari [Fri, 6 Jan 2012 19:26:31 +0000 (19:26 +0000)]
MFC r228326-228327,228331-228332:
r228326:
  Controller does not require TX start command for every frame.  So
  send a single TX command after setting up all TX frames.  This
  removes unnecessary register accesses and bus_dmamap_sync(9) calls.
  et(4) uses TX interrupt moderation so it's possible to have TX
  buffers that were already transmitted but waiting for TX completion
  interrupt.  If the number of available TX descriptor is less then
  1/3 of total TX descriptor, try reclaiming first to get enough free
  TX descriptors before setting up TX descriptors.
  After r228325, et_txeof() no longer tries to send frames after
  reclaiming TX buffers.  That change was made to give more chance
  to transmit frames in main interrupt handler since we can still
  send frames in interrupt handler with RX interrupt.  So right
  before exiting interrupt hander, after enabling interrupt, try to
  send more frames.  This gives slightly better performance numbers.

  While I'm here reduce number of spare TX descriptors from 8 to 4.
  Controller does not require reserved TX descriptors, it was just to
  reduce TX overhead.  After r228325, driver has much lower TX
  overhead so it does not make sense to reserve 8 TX descriptors.

r228327:
  Remove et_enable_intrs(), et_disable_intrs() functions and
  manipulation of interrupt register access is done through
  CSR_WRITE_4 macro.  Also add disabling interrupt into et_reset()
  because we want interrupt disabled state after controller reset.
  While I'm here slightly change interrupt handler to be more
  readable one.

r228331:
  Rework link state tracking and TX/RX MAC configuration.
   o Do not report link status if driver is not running.
   o TX/RX MAC configuration should be done with resolved speed,
     duplex and flow control after establishing a link so it can't
     be done in driver initialization routine.
     Move the configuration to miibus_statchg callback which will be
     called whenever any link state change is detected.
     At this moment, flow-control is not enabled yet mainly because
     I was not able to set correct flow control parameters to
     generate TX pause frames.
   o Now TX/RX MAC is enabled only when a valid link is detected.
     Rearragnge hardware initialization routine a bit to leave
     enabling MAC to miibus_statchg callback.  In order to that,
     TX/RX DMA engine is enabled in et_init_locked().
   o Introduce ET_FLAG_LINK flag to track current link state.
   o Introduce ET_FLAG_FASTETHER flag to mark whether controller is
     fast ethernet.  This flag is checked in miibus_statchg callback
     to know whether PHY established a valid link.
   o In et_stop(), TX/RX MAC is explicitly disabled instead of
     relying on et_reset().  And move et_reset() from et_stop() to
     controller initialization.  Controler reset is not required here
     and it would also clear critial registers(i.e station address,
     RX filter configuration, WOL etc) that are required to make WOL
     work.
   o Switching to current media is done in et_init_locked() after
     setting IFF_DRV_RUNNING flag.  This should ensure reliable
     auto-negotiation/manual link establishment.
   o In et_start_locked(), check whether driver got a valid link
     before trying to send frames.
   o Remove checking a link in et_tick() as this is done by
     miibus_statchg callback.

r228332:
  Implement hardware MAC statistics counter.  Counters could be
  queried with dev.et.%d.stats sysctl node where %d is an instance of
  device.

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

12 years agoMFC r228325:
yongari [Fri, 6 Jan 2012 19:11:20 +0000 (19:11 +0000)]
MFC r228325:
  Overhaul bus_dma(9) usage in et(4) and clean up TX/RX path.  This
  change should make et(4) work on any architectures.
   o Remove m_getl inline function and replace it with stanard mbuf
     interfaces.  Previous code tried to minimize code duplication
     but this came from incorrect use of common DMA tag.
     Driver may be still use a common RX allocation handler with
     additional structure changes but I don't see much point to do
     that it would make it hard to understand the code.
   o Remove DragonflyBSD specific constant EVL_ENCAPLEN, use
     ETHER_VLAN_ENCAP_LEN instead.
   o Add bunch of new RX status definition.  It seems controller
     supports RX checksum offloading but I was not able to make the
     feature work yet.  Currently driver checks whether recevied
     frame is good one or not.
   o Avoid a typedef ending in '_t' as style(9) says.
   o Controller has no restriction on DMA address space, so there
     is no reason to limit the DMA address to 32bit.  Descriptor
     rings,  status blocks and TX/RX buffers now use full 64bit DMA
     addressing.
   o Allocate DMA memory shared between host and controller as
     coherent.
   o Create 3 separate DMA tags to be used as TX, mini RX ring and
     stanard RX ring.  Previously it created a single DMA tag and it
     was used to all three rings.
   o et(4) does not support jumbo frame at this moment and I still
     don't quite understand how jumbo frame works on this controller
     so use two RX rings to handle small sized frame and normal sized
     frame respectively.  The mini RX ring will be used to receive
     frames that are less than or equal to 127 bytes.  The second RX
     ring is used to receive frames that are not handled by the first
     RX ring.
     If jumbo frame support is implemented, driver may have to choose
     better RX scheme by letting the second RX ring handle jumbo
     frames.  This scheme will mimic Broadcom's efficient jumbo frame
     handling feature.  However RAM buffer size(16KB) of the
     controller is too small to hold 2 jumbo frames, if 9KB
     jumbo frame is used, I'm not sure how good performance would it
     have.
   o In et_rxeof(), make sure to check whether controller received
     good frame or not.  Passing corrupted frame to upper layer is
     bad idea.
   o If driver receives a bad frame or driver fails to allocate RX
     buffer due to resource shortage condition, reuse previously
     loaded DMA map for RX buffer instead of unloading/loading RX
     buffer again.
   o et_init_tx_ring() never fails so change return type to void.
   o In watchdog handler, show TX DMA write back status of errored
     frame which could be used as a clue to debug watchdog timeout.
   o Add missing bus_dmamap_sync() in various places such that et(4)
     should work with bounce buffers(e.g. PAE).
   o TX side bus_dmamap_load_mbuf_sg(9) support.
   o RX side bus_dmamap_load_mbuf_sg(9) support.
   o Controller has no DMA alignment limit in RX buffer so use
     m_adj(9) in RX buffer allocation to make IP header align on 2
     bytes boundary.  Otherwise it would trigger unaligned access
     error in upper layer on strict alignment architectures.
     One of down side of controller is it provides limited set of RX
     buffer length like most Intel controllers.  This is not problem
     at this moment because driver does not support jumbo frame yet
     but it may require alignment fixup code to support jumbo frame
     on strict alignment architectures.
   o In et_txeof(), don't zero TX descriptors for transmitted frames.
     TX descriptors don't need write access after transmission.
     Driver sets IFF_DRV_OACTIVE when the number of available TX
     descriptors are less than or equal to ET_NSEG_SPARE.  Make sure
     to clear IFF_DRV_OACTIVE only when the number of available TX
     descriptor is greater than ET_NSEG_SPARE.

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

12 years agoMFC r228291-228293,228297-228298:
yongari [Fri, 6 Jan 2012 18:16:57 +0000 (18:16 +0000)]
MFC r228291-228293,228297-228298:
r228291:
  Remove NetBSD license. r199548 removed all bit macros that were
  derived from NetBSD.

r228292:
  Implement suspend/resume methods.  Driver has no issue with
  suspend/resume.

r228293:
  Fix alt(4) support.  Also add check for number of available TX
  descriptors before trying to send frames.  If we're not able to
  send a frame, make sure to prepend it to if_snd queue such that
  alt(4) should work.

  While I'm here prefer ETHER_BPF_MTAP to BPF_MTAP.  ETHER_BPF_MTAP
  should be used for controllers that support VLAN hardware tag
  insertion.  The controller supports VLAN tag insertion but lacks
  VLAN tag stripping in RX path though.

r228297:
  et(4) supports VLAN oversized frame so correctly set header length.
  While I'm here remove initializing if_mtu, it is set by
  ether_ifattach(9).  Also move callout_init_mtx(9) to the right below
  driver lock initialization.

r228298:
  Make et_probe() return BUS_PROBE_DEFAULT such that allow other
  driver that has high precedence for the controller override et(4).
  Add missing callout_drain(9) in device detach and rework detach
  routine.  While I'm here use rman_get_rid(9) instead of using
  cached resource id because bus methods are free to change the
  id.

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

12 years agoMFC 228967:
jhb [Fri, 6 Jan 2012 16:57:29 +0000 (16:57 +0000)]
MFC 228967:
Update if_obytes and if_omcast after successful transmit.
While I'm here update if_oerrors if parent interface of vlan is not
up and running.  Previously it updated collision counter and it was
confusing to interprete it.

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

12 years agoMFC r227954:
trociny [Fri, 6 Jan 2012 16:46:52 +0000 (16:46 +0000)]
MFC r227954:

Add const qualifier to rlimit_ident.

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

12 years agoMFC r228838:
kib [Fri, 6 Jan 2012 11:06:48 +0000 (11:06 +0000)]
MFC r228838:
Optimize the common case of msyncing the whole file mapping with
MS_SYNC flag.

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

12 years agoMFC r227488:
eadler [Fri, 6 Jan 2012 02:27:43 +0000 (02:27 +0000)]
MFC r227488:

- add "check" option to MD5 and friends to compare files against known hash.

Approved by: cperciva

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

12 years agoMFC: r227796
rmacklem [Fri, 6 Jan 2012 02:23:33 +0000 (02:23 +0000)]
MFC: r227796
Clean up some cruft in the NFSv4 client left over from the
OpenBSD port, so that it is more readable. No logic change
is made by this commit.

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

12 years agoMFC: r227760
rmacklem [Fri, 6 Jan 2012 01:20:48 +0000 (01:20 +0000)]
MFC: r227760
Add two arguments to the nfsrpc_rellockown() function in the NFSv4
client. This does not change the client's behaviour, but prepares
the code so that nfsrpc_rellockown() can be called elsewhere in a
future commit.

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

12 years agoMFC r226617 (pjd):
mm [Thu, 5 Jan 2012 22:31:25 +0000 (22:31 +0000)]
MFC r226617 (pjd):

zfs vdev_file_io_start: validate vdev before using vdev_tsd

vdev_tsd can be NULL for certain vdev states.
At least in userland testing with ztest.

Submitted by: avg

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

12 years agoMFC ZFS userland to reduce diff with stable/9:
mm [Thu, 5 Jan 2012 22:28:40 +0000 (22:28 +0000)]
MFC ZFS userland to reduce diff with stable/9:
r224170, r224526, r226583, r226613, r226615, r226616

MFC r224170 (gibbs):
Correct reporting of missing leaf vdevs so that the GUID required to
perform pool actions is always displayed.

cddl/contrib/opensolaris/cmd/zpool/zpool_main.c:
The "zpool status" command reports the "last seen at"
device node path when the vdev name is being reported
by GUID.  Augment this code to assume a GUID is reported
when a device goes missing after initial boot in addition
to the previous behavior of doing this for devices that
aren't seen at boot.

cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c:
In zpool_vdev_name(), report recently missing devices
by GUID.  There is no guarantee they will return at
their previous location.

MFC r224526 (mm, userland part only):
Fix serious bug in ZIL that can lead to pool corruption
in the case of a held dataset during remount.

Detailed description is available at:
https://www.illumos.org/issues/883

illumos-gate revision: 13380:161b964a0e10

MFC r226583 (pjd):
Make all the lines align properly.

MFC r226613 (pjd) [1]:
libzpool task_alloc: pass only valid flags to kmem_alloc

tqflags may contain other flags besided those that are suitable for
kmem_alloc == umem_alloc

MFC r226615 (pjd) [1]:
thr_create: new_thread_ID may be NULL

MFC r226616 (pjd) [1]:
zdb: access dp_free_bpobj only if pool version is >= SPA_VERSION_DEADLISTS

Submitted by: avg [1]

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

12 years agoMFC 227577: The sys/sysctl.h header is needed when MFI_DEBUG is defined.
jhb [Thu, 5 Jan 2012 22:14:49 +0000 (22:14 +0000)]
MFC 227577: The sys/sysctl.h header is needed when MFI_DEBUG is defined.

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

12 years agoMFC r228286:
yongari [Thu, 5 Jan 2012 21:17:06 +0000 (21:17 +0000)]
MFC r228286:
  Fix off by one error in mbuf access.  Previously it caused panic.
  While I'm here use NULL to compare mbuf pointer and add additional
  check for zero length mbuf before accessing the mbuf.

  PR: kern/162932

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

12 years agoMFC 224169 (gibbs):
jhb [Thu, 5 Jan 2012 20:41:40 +0000 (20:41 +0000)]
MFC 224169 (gibbs):
cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h:
cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c:
o Add zpool_pool_state_to_name() API to libzfs which converts a
  pool_state_t into a user consumable string.
o While here, correct constness of make zpool_state_to_name()
  and zpool_label_disk().

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

12 years agoMFC r228205:
yongari [Thu, 5 Jan 2012 20:37:28 +0000 (20:37 +0000)]
MFC r228205:
  Add more controllers that support jumbo frame.

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

12 years agoMFC r228086:
yongari [Thu, 5 Jan 2012 20:31:58 +0000 (20:31 +0000)]
MFC r228086:
  Announce flow control capability to PHY drivers and enable flow
  control for all vr(4) controllers that support it.  It's known that
  old vr(4) controllers(Rhine II) does not support TX pause but Rhine
  III supports both TX and RX pause.
  Make TX pause really work on Rhine III by letting controller know
  available RX buffers.
  While here, adjust XON/XOFF parameters to get better performance
  with flow control.

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

12 years agoMFC 228866:
jhb [Thu, 5 Jan 2012 19:56:54 +0000 (19:56 +0000)]
MFC 228866:
Fix a bug where TAILQ_FIRST(&V_ifnet) was accessed without holding the
proper lock.

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

12 years agoMFC 228593:
jhb [Thu, 5 Jan 2012 19:53:17 +0000 (19:53 +0000)]
MFC 228593:
Fire a kevent if necessary after seeking on a regular file.  This fixes a
case where a kevent would not fire on a regular file if an application read
to EOF and then seeked backwards into the file.

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

12 years agoMFC 228089:
jhb [Thu, 5 Jan 2012 19:50:47 +0000 (19:50 +0000)]
MFC 228089:
Change the if_vlan driver to use if_transmit for forwarding packets to the
parent interface.  This avoids the overhead of queueing a packet to an IFQ
only to immediately dequeue it again.

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

12 years agoMFC 228361:
jhb [Thu, 5 Jan 2012 19:36:38 +0000 (19:36 +0000)]
MFC 228361:
Explicitly use curthread while manipulating td_fpop during last close
of a devfs file descriptor in devfs_close_f().  The passed in td argument
may be NULL if the close was invoked by garbage collection of open
file descriptors in pending control messages in the socket buffer of a
UNIX domain socket after it was closed.

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

12 years agoMFC 228496:
jhb [Thu, 5 Jan 2012 19:18:41 +0000 (19:18 +0000)]
MFC 228496:
Implement BUS_ADD_CHILD() for the isab(4) driver.  It already calls
bus_generic_probe() and bus_generic_attach() to handle drivers that add
new children via identify methods.

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

12 years agoMFC 228278:
jhb [Thu, 5 Jan 2012 19:14:11 +0000 (19:14 +0000)]
MFC 228278:
Use the correct volume identifier field when parsing MR_EVT_ARG_LD_STRIP
arguments.

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

12 years agoMFC 228207:
jhb [Thu, 5 Jan 2012 18:56:23 +0000 (18:56 +0000)]
MFC 228207:
When changing the user priority of a thread, change the real priority
in addition to the user priority for threads whose current real priority
is equal to the previous user priority or if the new priority is a
real-time priority.  This allows priority changes of other threads to
have an immediate effect.

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

12 years agoMFC 228185:
jhb [Thu, 5 Jan 2012 18:50:37 +0000 (18:50 +0000)]
MFC 228185:
Enhance the sequential access heuristic used to perform readahead in the
NFS server and reuse it for writes as well to allow writes to the backing
store to be clustered.

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

12 years agoMFC 228181:
jhb [Thu, 5 Jan 2012 18:38:23 +0000 (18:38 +0000)]
MFC 228181:
If the -d flag is specified, ignore any new values specified and only
display the descriptions of specified nodes.

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

12 years agoMFC 227562:
jhb [Thu, 5 Jan 2012 18:31:08 +0000 (18:31 +0000)]
MFC 227562:
Add single-message MSI support to mfi(4).  It is disabled by default but
can be enabled via the hw.mfi.msi tunable.  Many mfi(4) controllers also
support MSI-X, but in testing it seems that many adapters do not work with
MSI-X but do work with MSI.

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

12 years agoMFC 227507: Finish making 'wcommitsize' an NFS client mount option.
jhb [Thu, 5 Jan 2012 18:26:44 +0000 (18:26 +0000)]
MFC 227507: Finish making 'wcommitsize' an NFS client mount option.

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

12 years agoMFC r228084:
yongari [Thu, 5 Jan 2012 18:22:48 +0000 (18:22 +0000)]
MFC r228084:
  Reuse flag variable to represent driver internal states rather than
  using member variables in softc.
  While I'm here change media after setting IFF_DRV_RUNNING. This
  will remove unnecessary link state handling in vr_tick() if
  controller established a link immediately.

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

12 years agoMFC: r227744
rmacklem [Thu, 5 Jan 2012 17:20:03 +0000 (17:20 +0000)]
MFC: r227744
Since the nfscl_cleanup() function isn't used by the FreeBSD NFSv4 client,
delete the code and fix up the related comments. This should not have
any functional effect on the client.

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

12 years agoMFC r228797:
mm [Thu, 5 Jan 2012 12:57:14 +0000 (12:57 +0000)]
MFC r228797:
Use contrib sources for building libarchive, tar and cpio.
Make "make test" fully operational.

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

12 years agoMFC contrib/libarchive:
mm [Thu, 5 Jan 2012 12:07:42 +0000 (12:07 +0000)]
MFC contrib/libarchive:
r228761-r228764, r228770-r228777, r228835, r228911:

MFC r228761:
Copy libarchive from vendor branch to contrib

MFC r228762:
Add FREEBSD-Xlist and FREEBSD-upgrade to contrib/libarchive

MFC r228763:
Set svn:keywords to FreeBSD=%H for contrib/libarchive

MFC r228764:
Strip unnecessary files and directories from contrib/libarchive
according to FREEBSD-Xlist

MFC r228770:
Remove libarchive/archive_entry_copy_bhfi.c and libarchive/mtree.5
Add these files to FREEBSD-Xlist

MFC r228771:
Partial merge of r224691 from lib/libarchive:

Add compatibility for ISO images created with unfixed makefs that
violated ECMA-119 (ISO9660): allow reserved4 to be 0x20 in PVD.
This allows tar to read FreeBSD distribution ISO images created
with makefs prior to NetBSD bin/45217 bugfix (up to 9.0-BETA1).

MFC r228772:
Add missing integer casts to comparsions in libarchive read.

MFC r228773:
Merge FreeBSD changes from lib/libarchive to contrib/libarchive:

r204111 (uqs):
Fix common misspelling of hierarchy

r208027 (uqs):
mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to the
bottom of the manpages and order them consistently.

GNU groff doesn't care about the ordering, and doesn't even mention
CAVEATS and SECURITY CONSIDERATIONS as common sections and where to put
them.

r208291 (uqs):
mdoc: consistently spell our email addresses <foo@FreeBSD.org>

r209031 (uqs):
mdoc nitpicking: the title argument shall be uppercase

r214822 (kientzle):
Clarify the naming:  Methods that free an object should
be called "free".  Retain the old "finish" names to preserve
source compatibility for now.

r214905 (kientzle):
If the Zip reader doesn't see a PK signature block
because there's inter-entry garbage, just scan forward
to find the next one.  This allows us to handle a lot
of Zip archives that have been modified in-place.

Thanks to: Gleb Kurtsou for sending me a sample archive

r216258 (kientzle):
Don't write data into an empty "file."

In particular, this check avoids a warning when
extracting directory entries from certain GNU tar
archives that store directory contents.

r225525 (kientzle):
Fix cpio on ARM.

MFC r228774:
Add $FreeBSD$ to libarchive_fe headers where missing.

MFC r228775:
Merge FreeBSD changes from usr.bin/tar to contrib/libarchive/libarchive_fe:

r213469:
Recognize both ! and ^ as markers for negated character classes.

MFC r228776:
Merge FreeBSD changes from usr.bin/tar to contrib/libarchive/tar:

r204111 (uqs):
Fix common misspelling of hierarchy

r207786 (kientzle):
Various manpage updates, including many long-option synonyms that were
previously undocumented.

r208028 (uqs):
mdoc: move remaining sections into consistent order

This pertains mostly to FILES, HISTORY, EXIT STATUS and AUTHORS sections.

r209152 (kientzle):
If the compressed data is larger than the uncompressed,
report the compression ratio as 0% instead of displaying
nonsense triggered by numeric overflow.  This is common
when dealing with uncompressed files when the I/O blocking
causes there to be small transient differences in the
accounting.

r210720 (joel):
Fix typos.

r223541 (kientzle):
If there is a read error reading Y/N confirmation from the keyboard,
exit immediately with an error.

If there is an error opening or reading a file to put into the archive,
set the return value for a deferred error exit.

r223573 (kientzle):
The --newer-than test should descend into old
directories to look for new files.

r226636 (kientzle):
Typo from previous commit. Urgh.

r224153 (mm, partial):
Update bsdtar.1 manpage

MFC r228777:
Merge FreeBSD changes from usr.bin/cpio to contrib/libarchive/cpio:

r204111 (uqs):
Fix common misspelling of hierarchy

r211054 (kientzle);
Fix -R when used with -p.  Previously, the
uname and gname weren't overwritten, so the
disk restore would use those to lookup the
original uid/gid again.  Clearing the uname
and gname prevents this.

r212263 (gjb):
Fix typo in bsdcpio manual:
s/libarchive_formats/libarchive-formats

MFC r228835:
Fix typo s/xz/libarchive/

Reported by: Emil Mikulic (private e-mail)

MFC r228911:
Update to vendor revision 4016.

Vendor has integrated most of our local changes in revisions 3976-3979 so
future updates are going to be easier.
Thanks to Tim Kientzle <kientzle@FreeBSD.org>.

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

12 years agoMFC r228744, r228745, r228748:
mm [Thu, 5 Jan 2012 11:45:22 +0000 (11:45 +0000)]
MFC r228744, r228745, r228748:

MFC r228744 [1]:
Merge vendor revision 3723:
Fixes extraction of Zip entries that use length-at-end without specifying
either the compressed or uncompressed length.  In particular, fixes bsdtar
extraction of such files.

Reported by: Patrick Lamaiziere <patfbsd@davenulle.org> (freebsd-stable@)

MFC r228745:
Update libarchive, tar and cpio to version 2.8.5

The following additional vendor revisions are applied:

Revision 3740:
Use archive_clear_error() to clear the error markers.

Obtained from: http://code.google.com/p/libarchive

MFC r228748:
Sync libarchive with vendor branch release/2.8:

3730:
Fix issue 174 (Windows path names, not relevant for FreeBSD)

3734:
Merge r1989: archive_clear_error should set errno to 0.

3735:
Merge r3247 from trunk: Clear errors before returning
from archive_read_support_format_all()

3799:
Check the position before dereferencing the pointer.
This avoids dereferencing one byte past the end of a string

3824:
Merge r3823 from trunk for issue 199 (hang in iso9660 reading)

Obtained from: http://code.google.com/p/libarchive

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

12 years agoMFC r200257 (by mav):
kib [Thu, 5 Jan 2012 11:14:54 +0000 (11:14 +0000)]
MFC r200257 (by mav):
Add ID for NetMos NM9820 Serial Port chip, found on CardBus serial adapter.

MFC r228947:
Add PCI Id for the Intel AMT serial interface as found on my DQ67OW.

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

12 years agoMFC r228206, r228353:
mm [Thu, 5 Jan 2012 11:12:02 +0000 (11:12 +0000)]
MFC r228206, r228353:

MFC r228206:
Remove unnecesary "Ns" macros and add missing command example to zpool(8).

MFC r228353:
Some mdoc(7) style and typo fixes to zfs(8).

Submitted by: Nobuyuki Koganemaru <n-kogane@syd.odn.ne.jp>

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

12 years agoMFC r228103, r228104:
mm [Thu, 5 Jan 2012 11:07:07 +0000 (11:07 +0000)]
MFC r228103, r228104:

MFC r228103:
Merge new ZFS features from illumos:

1644 add ZFS "clones" property
https://www.illumos.org/issues/1644

1645 add ZFS "written" and "written@..." properties
https://www.illumos.org/issues/1645

1646 "zfs send" should estimate size of stream
https://www.illumos.org/issues/1646

1647 "zfs destroy" should determine space reclaimed by destroying multiple
snapshots
https://www.illumos.org/issues/1647

1693 persistent 'comment' field for a zpool
https://www.illumos.org/issues/1693

1708 adjust size of zpool history data
https://www.illumos.org/issues/1708

1748 desire support for reguid in zfs
https://www.illumos.org/issues/1748

MFC r228104:
Fix typo in copyright notice.

Obtained from: illumos (changesets 13514, 13524, 13525)

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

12 years agoMFC zfs manpage update
mm [Thu, 5 Jan 2012 10:55:55 +0000 (10:55 +0000)]
MFC zfs manpage update
(r227646, r227648, r227649, r227752, r228019, r228045, r228054, r228055)

MFC r227646 (partial):
Update and desolarization of zfs(8) and zpool(8) manual pages:
- synchronized to match new vendor code (Illumos rev. 13513) [1]
- removed references to sun commands (replaced with FreeBSD commands)
- removed ATTRIBUTES sections
- updated SEE ALSO sections
- properly updated copyright information (required by CDDL)

zfs(8) only:
- replaced "Zones" section with new "Jails" section
- removed misleading "ZFS Volumes as Swap or Dump Devices" section
- updated shareiscsi and sharesmb option information (not supported on FreeBSD)
- replace zoned property with jailed property

zpool(8) only:
- updated device names in examples

MFC r227648:
Fix reference to fsync(2).
Add more references to SEE ALSO section.

MFC r227649:
More zfs(8) manpage fixes:
- remove shareiscsi property
- mark casesensitivity property as unsupported
- remove reference to Solaris Administration Guide

MFC r227752 (partial):
Update and desolarization of zdb(8) and zstreamdump(1) manual pages:
- synchronized to match new vendor code [1]
- removed ATTRIBUTES sections
- updated SEE ALSO sections
- properly updated copyright information (required by CDDL)

MFC r228019:
Update ZFS manual pages to a mdoc(7) reimplementation.

The zfs(8) and zpool(8) manual pages now match the state of the ZFS module
and have been customized for FreeBSD.

The new texts of the "Deduplication" subsection in zfs(8), the zpool "split"
command, the zfs "dedup" property and several other missing parts have been
added from illumos or OpenSolaris snv_134 (CDDL-licensed).

The mdoc(7) reimplementation of whole manual pages, the descriptions of the
zpool "readonly" property, "zfs diff" command and descriptions of several
other missing command flags and/or options were authored by myself.

MFC r228045:
Add missing -n flag to "zpool import" description.

MFC r228054:
Add missing warning to zfs(8) for using "zfs destroy" with -r and -R flags.

MFC r228055:
Use singular form for zfs destroy snapshot in zfs(8).

Obtained from: Illumos (as of rev. 13513:f84d4672fdbd) [1]

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

12 years agoMFC r224171 (gibbs):
mm [Thu, 5 Jan 2012 10:24:06 +0000 (10:24 +0000)]
MFC r224171 (gibbs):
Add the "zpool labelclear" command.  This command can be
used to wipe the label data from a drive that is not
active in a pool.  The optional "-f" argument can be
used to treat an exported or foreign vdev as "inactive"
thus allowing its label information to be cleared.

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

12 years agoMFC r226620, r228392:
mm [Thu, 5 Jan 2012 10:09:22 +0000 (10:09 +0000)]
MFC r226620, r228392:

MFC r226620 (pjd):
Update per-thread I/O statistics collection in ZFS.
This allows to see processes I/O activity in 'top -m io' output.

MFC r228392 (pjd):
Move ru_inblock increment into arc_read_nolock() so we don't account for
cached reads.

PR: kern/156218
Reported by: Marcus Reid <marcus@blazingdot.com>
Patch by: avg
Approved by: pjd

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

12 years agoMFC r227110, r227111:
mm [Thu, 5 Jan 2012 09:50:47 +0000 (09:50 +0000)]
MFC r227110, r227111:

MFC r227110 (pjd) [1]:
In zvol_open() if the spa_namespace_lock is already held, it means that
ZFS is trying to open and taste ZVOL as its VDEV. This is not supported,
so return an error instead of panicing on spa_namespace_lock recursion.

MFC r227111 (pjd) [2]:
Correct typo in comment.

PR: kern/162008
Reported by: Robert Millan <rmh@debian.org> [1]
Fabian Keil <fk@fabiankeil.de> [2]

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

12 years agoMFC r226676, r226678, r226700, r226705, r226706, r226707:
mm [Thu, 5 Jan 2012 09:39:29 +0000 (09:39 +0000)]
MFC r226676, r226678, r226700, r226705, r226706, r226707:

MFC r226676 (pjd):
Allow to rename file systems without remounting if it is possible.
It is possible for file systems with 'mountpoint' preperty set to 'legacy'
or 'none' - we don't have to change mount directory for them.
Currently such file systems are unmounted on rename and not even mounted back.

This introduces layering violation, as we need to update 'f_mntfromname'
field in statfs structure related to mountpoint (for the dataset we are
renaming and all its children).

In my opinion it is worth it, as it allow to update FreeBSD in even cleaner
way - in ZFS-only configuration root file system is ZFS file system with
'mountpoint' property set to 'legacy'. If root dataset is named system/rootfs,
we can snapshot it (system/rootfs@upgrade), clone it (system/oldrootfs),
update FreeBSD and if it doesn't boot we can boot back from system/oldrootfs
and rename it back to system/rootfs while it is mounted as /. Before it was
not possible, because unmounting / was not possible.

MFC r227768 (pjd):
Include <sys/zfs_vfsops.h> only when compiling kernel module.

MFC r226700 (pjd):
Don't forget to rename mounted snapshots of the file system being renamed.

MFC r226705 (pjd):
Extend r226676 to allow rename without unmount even for file systems with
non-legacy mountpoints. It is better to be able to rename such file systems and
let them be mounted in old places until next reboot than using live CD, etc. to
rename with remount.

This is implemented by adding -u option to 'zfs rename'. If file system's
mountpoint property is set to 'legacy' or 'none', there is no need to specify -u.

Update zfs(8) manual page to reflect this addition.

MFC r226706 (pjd):
Update copyright to include myself.

MFC r226707 (pjd):
- Use better naming now that we allow to rename any mounted file system (not
  only legacy).
- Update copyright to include myself.

Approved by: pjd

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

12 years agoMFC r227497, r228020:
mm [Thu, 5 Jan 2012 08:54:15 +0000 (08:54 +0000)]
MFC r227497, r228020:

MFC r227497 [1]:
Import upstream changesets for the output of the "zpool" command:

952 separate intent logs should be obvious in 'zpool iostat' output
1337 `zpool status -D' should tell if there are no DDT entries

References:
https://www.illumos.org/issues/952
https://www.illumos.org/issues/1337

MFC r228020:
Fix zfs(8) and zpool(8) context help to repport supported flags.

Obtained from: Illumos (issues 952, 1337; changesets 13384, 13432) [1]

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

12 years agoMFC r227458, r226436:
eadler [Thu, 5 Jan 2012 04:50:28 +0000 (04:50 +0000)]
MFC r227458, r226436:

- change "is is" to "is" or "it is"
- change "the the" to "the"
- other typo fixes

Approved by: lstewart

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

12 years agoMFC: r227743
rmacklem [Thu, 5 Jan 2012 02:05:15 +0000 (02:05 +0000)]
MFC: r227743
Post r223774 the NFSv4 client never uses the linked list with the
head nfsc_defunctlockowner. This patch simply removes the code that
loops through this always empty list, since the code no longer does
anything useful. It should not have any effect on the client's
behaviour.

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

12 years agoMFC r227842:
yongari [Thu, 5 Jan 2012 00:09:49 +0000 (00:09 +0000)]
MFC r227842:
  For IP1001 PHY, do not set multi-port device(MASTER).  Ideally this
  bit should not affect link establishment process of auto-negotiation
  if manual configuration is not used, which is true in auto-negotiation.
  However it seems setting this bit interfere with IP1001 PHY's
  down-shifting feature such that establishing a 10/100Mbps link failed
  when 1000baseT link is not available during auto-negotiation process.

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

12 years agoMFC r227828,227835,227837:
yongari [Thu, 5 Jan 2012 00:00:30 +0000 (00:00 +0000)]
MFC r227828,227835,227837:
r227828:
  Always start MII auto polling before accessing any MII registers.

r227835:
  Rework link establishment and link state detection logic.
   - Remove MIIBUS statchg callback and program VGE_DIAGCTL before
     initiating link establishment.  Previously driver used to
     program VGE_DIAGCTL after getting a link in statchg callback.
     It seems the VGE_DIAGCTL register works like a kind of MII
     register such that it requires setting a 'to be' mode in advance
     rather than relying on resolved speed/duplex of established link.
     This means the statchg callback is not needed in driver.  In
     addition, if there was no link at the time of media change, this
     was not called at all.
   - Introduce vge_ifmedia_upd_locked() to change current media to
     configured one.  Actual media change is performed only after PHY
     reset and VGE_DIAGCTL setup.
   - In WOL configuration, make sure to clear forced mode such that
     controller can rely on auto-negotiation.
   - Unlike most other drivers that use miibus(4), vge(4) used
     controller's auto-polling feature for link state tracking via
     interrupt.  This came from controller's inefficient mechanism to
     access MII registers.  On link state change interrupt, vge(4)
     used to get current link state with series of MII register
     accesses.  Because vge(4) already enabled auto polling, read PHY
     status register to resolved speed/duplex/flow control parameters.

  vge(4) still does not drive MII_TICK to reduce number of MII
  register accesses which in turn means the driver does not know the
  status of auto-negotiation.  This was a one of long standing
  issue of vge(4).  Probably driver may be able to implement a timer
  that keeps track of auto-negotiation state and restart
  auto-negotiation when driver couldn't establish a link within a
  specified period.  However the controller does not provide a
  reliable way to detect auto-negotiation failure so I'm not sure
  whether it's worth to implement it in driver.

  Alternatively driver can completely disable MII auto-polling and
  let miibus(4) poll link state by driving MII_TICK.  This may reduce
  unnecessary overhead of stopping/restarting MII auto-polling of
  controller.  Unfortunately it was known that some variants of
  controller does not work correctly if MII auto-polling is disabled.

r227837:
  Announce flow control capability to underlying PHY driver.
  Pause timer value is initialized to 0xFFFF. Controller allows just
  4 different TX pause thresholds. The lowest possible threshold
  value looks too aggressive so use next available threshold value.

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

12 years agoMFC r227850-227851,227854,227914,227916:
yongari [Wed, 4 Jan 2012 23:31:43 +0000 (23:31 +0000)]
MFC r227850-227851,227854,227914,227916:
r227850:
  Writing access to RL_CFG5 register also requires EEPROM write
  access.
  While I'm here, enable WOL through magic packet but disable waking
  up system via unicast, multicast and broadcast frames.  Otherwise,
  multicast or unicast frame(e.g. ICMP echo request) can wake up
  system which is not probably wanted behavior on most environments.
  This was not known as problem because RL_CFG5 register access had
  not effect until this change.
  The capability to wake up system with unicast/multicast frames
  are still set in driver, default off, so users who need that
  feature can still activate it with ifconfig(8).

r227851:
  Perform media change after setting IFF_DRV_RUNNING flag. Without it,
  driver would ignore the first link state update if controller
  already established a link such that it would have to take
  additional link state handling in re_tick().

r227854:
  Disable accepting frames in re_stop() to put RX MAC into idle state.
  Because there is no reliable way to know whether RX MAC is in
  stopped state, rejecting all frames would be the only way to
  minimize possible races.
  Otherwise it's possible to receive frames while stop command
  execution is in progress and controller can DMA the frame to freed
  RX buffer during that period.
  This was observed on recent PCIe controllers(i.e. RTL8111F).

  While this change may not be required on old controllers it
  wouldn't make negative effects on old controllers.  One side effect
  of this change is disabling receive so driver reprograms RL_RXCFG
  to receive WOL frames when it is put into suspend or shutdown.

  This should address occasional 'memory modified free' errors seen
  on recent RealTek controllers.

r227914:
  Make sure to stop TX MAC before freeing queued TX frames.
  For RTL8111DP, check if the TX MAC is active by reading RL_GTXSTART
  register.  For RTL8402/8168E-VL/8168F/8411, wait until TX queue is
  empty.

r227916:
  To save more power, switch to 10/100Mbps link when controller is
  put into suspend/shutdown.  Old PCI controllers performed that
  operation in firmware but for RTL8111C or newer controllers, it's
  responsibility of driver.  It's not clear whether the firmware of
  RTL8111B still downgrades its speed to 10/100Mbps so leave it as it
  was.

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

12 years agoMFC r227587,227590-227591,227593,227638-227639:
yongari [Wed, 4 Jan 2012 22:55:15 +0000 (22:55 +0000)]
MFC r227587,227590-227591,227593,227638-227639:
r227587:
  Add preliminary support for RTL8402 PCIe FastEthernet with
  integrated card reader.

r227590:
  Add preliminary support for RTL8411 PCIe Gigabit ethernet with
  integrated card reader.

r227591:
  Add missing driver lock in SIOCSIFCAP handler.

r227593:
  Disable PCIe ASPM (Active State Power Management) for all
  controllers.
  More and more RealTek controllers started to implement EEE feature.
  Vendor driver seems to load a kind of firmware for EEE with
  additional PHY fixups.  It is known that the EEE feature may need
  ASPM support.  Unfortunately there is no documentation for EEE of
  the controller so enabling ASPM may cause more problems.

r227638:
  Add preliminary support for second generation RTL8105E PCIe
  FastEthernet.

r227639:
  Add preliminary support for RTL8168/8111F PCIe Gigabit ethernet.

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

12 years agoMFC: r228898
brueffer [Wed, 4 Jan 2012 21:57:11 +0000 (21:57 +0000)]
MFC: r228898

Add missing -l flag to usage().

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

12 years agoMFC r227582:
yongari [Wed, 4 Jan 2012 21:52:56 +0000 (21:52 +0000)]
MFC r227582:
  Enable 64bit DMA addressing support for all msk(4) controllers.
  Unnecessarily complex LE format used on Marvell controller was
  main reason not to enable 64bit DMA addressing in driver.  If high
  32bit address of DMA address of TX/RX buffer is changed, driver has
  to generate a new LE.  In TX path, driver will keep track of lastly
  used high 32bit address of DMA address and generate a new LE
  whenever it sees high address change in the DMA address. In RX path,
  driver will always use two LEs to specify 64bit DMA address of RX
  buffer.  If the high 32bit address of DMA address of RX buffer is
  the same as previous DMA address of RX buffer, driver does not have
  to use two LEs but driver will use two LEs for simplicity in RX
  ring management.

  One of draw back for switching to 64bit DMA addressing is that the
  large amount of LEs are used to specify 64bit DMA address such that
  number of available LEs for TX/RX buffers are considerably reduced.
  To mitigate the issue, increase number of available LEs from 256 to
  384 for TX and from 256 to 512 for RX. For 32bit architectures,
  msk(4) does not use 64bit DMA addressing to save resources.

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

12 years agoMFC r227452:
yongari [Wed, 4 Jan 2012 21:27:03 +0000 (21:27 +0000)]
MFC r227452:
  To send a frame, controller requires a prepended TX header and
  the length of frame should be treated as multiple of 4. Actual
  frame length is set in the TX header. The TX header position
  should be aligned on 4 byte boundary and actual frame start
  position should be aligned on 4 byte boundary as well. This means
  we need 4(TX header length) + 3(frame length fixup) additional free
  space in TX buffer in addition to actual frame length.
  Make sure TX handler check these additional bytes.
  ae_tx_avail_size() returns actual free space in TX buffer to ease
  the calculation of available TX buffer space in caller. While I'm
  here, replace magic number to appropriate sizeof operator to
  enhance readability.

  This change should fix controller lockup issue happened under
  certain conditions but it still does not fix watchdog timeout. It
  seems the watchdog timeout is side-effect of TxS and TxD
  mismatches. The root cause of TxD/TxD mismatch is not known yet but
  it looks like silicon bug. I guess driver may have to reinitialize
  controller whenever it sees TxS and TxD mismatches but leave it as
  it was at this moment.

  PR: kern/145918

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

12 years agoRegen src.conf(5) after merge of WITHOUT_INET{,_SUPPORT} in r229514.
bz [Wed, 4 Jan 2012 19:53:32 +0000 (19:53 +0000)]
Regen src.conf(5) after merge of WITHOUT_INET{,_SUPPORT} in r229514.

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

12 years agoMFC r221266:
bz [Wed, 4 Jan 2012 19:50:10 +0000 (19:50 +0000)]
MFC r221266:

 Introduce two new options MK_INET and MK_INET_SUPPORT analogically
 with INET6 equivalents.

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

12 years agoMFC r219843, r225773, r225781, r225782, r225783, r225784, 225785, r225786,
trociny [Wed, 4 Jan 2012 17:25:41 +0000 (17:25 +0000)]
MFC r219843, r225773, r225781, r225782, r225783, r225784, 225785, r225786,
  r225787, r225830, r225831, r225832, r225835, r226461, r226462, r226463,
  r226842, r226851, r226852, r226854, r226855, r226856, r226857, r226859,
  r226861, r228542, r228542, r228543, r228544, r228695, r228696:

r219843 (pjd):

Fix typo.

r225773 (pjd):

Ensure that pjdlog functions don't modify errno.

r225781 (pjd):

No need to use KEEP_ERRNO() macro around pjdlog functions, as they don't
modify errno.

r225782 (pjd):

Prefer PJDLOG_ASSERT() and PJDLOG_ABORT() over assert() and abort().
pjdlog versions will log problem to syslog when application is running in
background.

r225783 (pjd):

Correct two mistakes when converting asserts to PJDLOG_ASSERT()/PJDLOG_ABORT().

r225784 (pjd):

- Convert some impossible conditions into assertions.
- Add missing 'if' in comment.

r225785 (pjd):

Prefer PJDLOG_ASSERT()/PJDLOG_ABORT() over assert().

r225786 (pjd):

No need to wrap pjdlog functions around with KEEP_ERRNO() macro.

r225787 (pjd):

Use PJDLOG_ASSERT() and PJDLOG_ABORT() everywhere instead of assert().

r225830 (pjd):

After every activemap change flush disk's write cache, so that write
reordering won't make the actual write to be committed before marking
the coresponding extent as dirty.

It can be disabled in configuration file.

If BIO_FLUSH is not supported by the underlying file system we log a warning
and never send BIO_FLUSH again to that GEOM provider.

r225831 (pjd):

Break a bit earlier.

r225832 (pjd):

If the underlying provider doesn't support BIO_FLUSH, log it only once
and don't bother trying in the future.

r225835 (pjd):

Correct typo.

r226461 (pjd):

When path to the configuration file is relative, obtain full path,
so we can always find the file, even after daemonizing and changing
working directory to /.

r226462 (pjd):

Remove redundant space.

r226463 (pjd):

Allow to specify pidfile in HAST configuration file.

r226842 (pjd):

Correct comments.

r226851 (pjd):

Delay resuid generation until first connection to secondary, not until first
write. This way on first connection we will synchronize only the extents that
were modified during the lifetime of primary node, not entire GEOM provider.

r226852 (pjd):

Minor cleanups.

r226854 (pjd):

- Eliminate the need for hio_nv.
- Introduce hio_clear() function for clearing hio before returning it
  onto free queue.

r226855 (pjd):

Improve comment so it doesn't suggest race is possible, but that we handle
the race.

r226856 (pjd):

Reduce indentation.

r226857 (pjd):

Minor cleanups.

r226859 (pjd):

Implement 'async' mode for HAST.

r226861 (pjd):

Remove redundant space.

r228542 (pjd):

Remove redundant setting of the error variable.

Found by:       Clang Static Analyzer

r228543 (pjd):

Simplify code by changing functions types from int to avoid, as the functions
always return 0.

Found by:       Clang Static Analyzer

r228544 (pjd):

Remove redundant assignment.

Found by:       Clang Static Analyzer

r228695 (pjd):

Don't use function name as format string.

Detected by:    clang

r228696 (pjd):

Use lex's standard way of not generating unused function.

Inspired by:    r228555

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

12 years agoMFC 227069:
jhb [Wed, 4 Jan 2012 16:51:04 +0000 (16:51 +0000)]
MFC 227069:
Move the cleanup of f_cdevpriv when the reference count of a devfs
file descriptor drops to zero out of _fdrop() and into devfs_close_f()
as it is only relevant for devfs file descriptors.

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

12 years agoMFC 226748:
jhb [Wed, 4 Jan 2012 16:45:12 +0000 (16:45 +0000)]
MFC 226748:
- Add a new header for the x86 boot code that defines various structures
  and constants related to the BIOS Enhanced Disk Drive Specification.
- Use this header instead of magic numbers and various duplicate structure
  definitions for doing I/O.
- Use an actual structure for the request to fetch drive parameters in
  drvsize() rather than a gross hack of a char array with some magic
  size.  While here, change drvsize() to only pass the 1.1 version of
  the structure and not request device path information.  If we want
  device path information you have to set the length of the device
  path information as an input (along with probably checking the actual
  EDD version to see which size one should use as the device path
  information is variable-length).  This fixes data smashing problems
  from passing an EDD 3 structure to BIOSes supporting EDD 4.

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

12 years agoMFC 226746:
jhb [Wed, 4 Jan 2012 16:43:08 +0000 (16:43 +0000)]
MFC 226746:
Consolidate duplicate definitions of V86_CY() and V86_ZR() which check for
the carry and zero flags being set, respectively, in <btxv86.h> and use
them throughout the x86 boot code.

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

12 years agoRemove unnecessary mergeinfo from these two files.
jhb [Wed, 4 Jan 2012 16:24:33 +0000 (16:24 +0000)]
Remove unnecessary mergeinfo from these two files.

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

12 years agoMFC 225518,225793,227085:
jhb [Wed, 4 Jan 2012 16:20:55 +0000 (16:20 +0000)]
MFC 225518,225793,227085:
Allow the ipfw.ko module built with a kernel to honor any options defined
in the kernel config.  This more closely matches the behavior of other
modules which inherit configuration settings from the kernel configuration
during a kernel + modules build.

Do not try to build the module in case of no INET support but keep #error
calls for now in case we would compile it into the kernel.

While here garbage collect unneeded opt_*.h includes.
opt_ipdn.h is not used anywhere but we need to leave the DUMMYNET
entry in options for conditional inclusion in kernel so keep the
file with the same name.

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

12 years agoMFC r228916:
pluknet [Wed, 4 Jan 2012 15:59:49 +0000 (15:59 +0000)]
MFC r228916:
 Clean up from the 4.x era.

 In an example of boot command:
 - rename wd(4) IDE disk drives name to ad(4).
 - update the used kernel path "/kernel" to the current default.

 Bump .Dd for this and previous changes.

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

12 years agoMFC r227792:
pluknet [Wed, 4 Jan 2012 14:49:29 +0000 (14:49 +0000)]
MFC r227792:

 Add history for setsockopt(2).

PR: docs/162719
Submitted by: Niclas Zeising <niclas at zeising gmail>

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

12 years agoMFC r227447:
pluknet [Wed, 4 Jan 2012 14:34:45 +0000 (14:34 +0000)]
MFC r227447:

 struct timespec32: change types of tv_sec and tv_nsec fields to signed
 to match native struct timespec ABI on __LP32__.

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

12 years agoMFC r226882:
pluknet [Wed, 4 Jan 2012 14:21:30 +0000 (14:21 +0000)]
MFC r226882:
 Fix arguments list for proc:::signal-discard DTrace probe.

Reported by: Anton Yuzhaninov <citrin citrin ru>

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

12 years agoMFC r227055:
pluknet [Wed, 4 Jan 2012 14:03:45 +0000 (14:03 +0000)]
MFC r227055:
 Remove a couple of write-only variables.

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

12 years agoRevert MFC r226833,227056.
pluknet [Wed, 4 Jan 2012 13:53:50 +0000 (13:53 +0000)]
Revert MFC r226833,227056.
/stand exists in the MFS root used during a sysinstall-based install.

Reported by: jhb
Pointy hat to: pluknet

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

12 years agoMFC r226833,r227056:
pluknet [Wed, 4 Jan 2012 12:48:24 +0000 (12:48 +0000)]
MFC r226833,r227056:

Remove the long reprecated ``/stand/sysinstall'' from the init_path.

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

12 years agoMFC r228436:
fabient [Wed, 4 Jan 2012 08:47:00 +0000 (08:47 +0000)]
MFC r228436:
Add VIA microcode update support to cpuctl(4) and cpucontrol(8).

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

12 years agoMFC r226482
eadler [Wed, 4 Jan 2012 02:03:10 +0000 (02:03 +0000)]
MFC r226482
- remove device keyword from makefs manpage

Approved by: gjb

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

12 years agoMFC r227675:
yongari [Wed, 4 Jan 2012 01:45:52 +0000 (01:45 +0000)]
MFC r227675:
  Partially revert r218788. r218788 removed calling dc_setcfg() for
  !DC_IS_ADMTEK in dc_miibus_statchg(). This change broke link
  establishment of Intel 21143 with dcphy(4) where it stuck in
  "ability detect" state without completing auto-negotiation.
  Also nuke dc_if_media as it's not actually used.

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

12 years agoMFC: r227690
rmacklem [Wed, 4 Jan 2012 00:24:09 +0000 (00:24 +0000)]
MFC: r227690
The old NFS client will crash due to the reply being m_freem()'d
twice if the server bogusly returns an error with the NFSERR_RETERR
bit (bit 31) set. No actual NFS error has this bit set, but it seems
that amd will sometimes do this. This patch makes sure the NFSERR_RETERR
bit is cleared to avoid a crash.

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

12 years agoMFC r227349,227513-227514:
yongari [Wed, 4 Jan 2012 00:03:50 +0000 (00:03 +0000)]
MFC r227349,227513-227514:
r227349:
  Document TI_SF_BUF_JUMBO and Xr altq.

r227513:
  Document newly introduced a loader tunable and sysctl variables.

r227514:
  Clarify hw.ti.%d.dac tunable.

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

12 years agoMFC r227348:
yongari [Tue, 3 Jan 2012 23:57:47 +0000 (23:57 +0000)]
MFC r227348:
  ti(4) supports altq(4).

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

12 years agoMFC r227512:
yongari [Tue, 3 Jan 2012 23:45:44 +0000 (23:45 +0000)]
MFC r227512:
  Overhaul bus_dma(9) usage in driver:
   - Don't use a single big DMA block for all rings. Create separate
     DMA area for each ring instead.  Currently the following DMA
     areas are created:
        Event ring, standard RX ring, jumbo RX ring, RX return ring,
        hardware MAC statistics and producer/consumer status area.
     For Tigon II, mini RX ring and TX ring are additionally created.
   - Added missing bus_dmamap_sync(9) in various TX/RX paths.
   - TX ring is no longer created for Tigon 1 such that it saves more
     resources on Tigon 1.
   - Data sheet is not clear about alignment requirement of each ring
     so use 32 bytes alignment for normal DMA area but use 64 bytes
     alignment for jumbo RX ring where the extended RX descriptor
     size is 64 bytes.
   - For each TX/RX buffers use separate DMA tag(e.g. the size of a
     DMA segment, total size of DMA segments etc).
   - Tigon allows separate DMA area for event producer, RX return
     producer and TX consumer which is really cool feature.  This
     means TX and RX path could be independently run in parallel.
     However ti(4) uses a single driver lock so it's meaningless
     to have separate DMA area for these producer/consumer such that
     this change creates a single status DMA area.
   - It seems Tigon has no limits on DMA address space and I also
     don't see any problem with that but old comments in driver
     indicates there could be issues on descriptors being located in
     64bit region.  Introduce a tunable, dev.ti.%d.dac, to disable
     using 64bit DMA in driver. The default is 0 which means it would
     use full 64bit DMA.  If there are DMA issues, users can disable
     it by setting the tunable to 0.
   - Do not increase watchdog timer in ti_txeof(). Previously driver
     increased the watchdog timer whenever there are queued TX frames.
   - When stat ticks is set to 0, skip processing ti_stats_update(),
     avoiding bus_dmamap_sync(9) and updating if_collisions counter.
   - MTU does not include FCS bytes, replace it with
     ETHER_VLAN_ENCAP_LEN.

  With these changes, ti(4) should work on PAE environments.
  Many thanks to Jay Borkenhagen for remote hardware access.

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

12 years agoMFC r227431-227432,227505,227509:
yongari [Tue, 3 Jan 2012 23:38:16 +0000 (23:38 +0000)]
MFC r227431-227432,227505,227509:
r227431:
  style.
  No functional changes.

r227432:
  Remove dead ifdef.  Driver should always check raised interrupt is
  for the device.

r227505:
  It's bad idea to allocate large memory, 4KB, from stack.
  Pre-allocate the memory in device attach time. While I'm here
  remove unnecessary reassignment of error variable as it was already
  initialized. Also added a missing driver lock in TIIOCSETTRACE
  handler.

r227509:
  Export sysctl node for various interrupt moderation parameters and
  have administrators control them.  ti(4) provides a character
  device to control various other features of driver via ioctls but
  users had to write their own code to manipulate these parameters.
  It seems some default values for these parameters are not optimal
  on today's system but leave it as it was and let administrators
  change them.  The following parameters could be changed:

  dev.ti.%d.rx_coal_ticks
  dev.ti.%d.rx_max_coal_bds
  dev.ti.%d.tx_coal_ticks
  dev.ti.%d.tx_max_coal_bds
  dev.ti.%d.tx_buf_ratio
  dev.ti.%d.stat_ticks

  The interface has to be brought down and up again before a change
  takes effect.

  ti(4) controller supports hardware MAC counters with additional
  DMA statistics.  So it's doable to export these counters via
  sysctl interface.  Unfortunately, these counters are cumulative
  such that driver have to either send an explicit clear command to
  controller after extracting them or have to maintain internal
  counters to get actual changes.  Neither look good to me so
  counters were not exported via sysctl.

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

12 years agoMFC r227347,227367:
yongari [Tue, 3 Jan 2012 21:17:59 +0000 (21:17 +0000)]
MFC r227347,227367:
r227347:
  Retire 'options TI_PRIVATE_JUMBOS' and replace local jumbo
  allocator with UMA backed jumbo allocator by default. Previously
  ti(4) used sf_buf(9) interface for jumbo buffers but it was broken
  at this moment such that enabling jumbo frame caused instant panic.
  Due to the nature of sf_buf(9) it heavily relies on VM changes but
  it seems ti(4) was not received much blessing from VM gurus.  I
  don't understand VM magic and implications used in driver either.
  Switching to UMA backed jumbo allocator like other network drivers
  will make jumbo frame work on ti(4).
  While I'm here, fully allocate all RX buffers. This means ti(4) now
  uses 512 RX buffer and 1024 mini RX buffers.

  To use sf_buf(9) interface for jumbo buffers, introduce a new
  'options TI_SF_BUF_JUMBO'. If it is proven that sf_buf(9) is better
  for jumbo buffers, interesting developers can fix the issue in
  future.

  ti(4) still needs more bus_dma(9) cleanups and should use separate
  DMA tag/map for each ring(standard, jumbo, mini, command, event
  etc) but it should work on all platforms except PAE.

  Special thanks to Jay[1] who provided complete remote debugging
  access.

r227367:
  Comment out TI_JUMBO_HDRSPLIT. TI_JUMBO_HDRSPLIT requires TI_SF_BUF_JUMBO.

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

12 years agoMFC r227311-227312,227318-227319,227322-227324:
yongari [Tue, 3 Jan 2012 20:50:48 +0000 (20:50 +0000)]
MFC r227311-227312,227318-227319,227322-227324:
r227311:
  Remove ti_unit member variable in softc.
  While I'm here use PCIR_BAR macro.

r227312:
   o Remove unnecessary controller reinitialization.
   o Do not blindly UP controller when MTU is changed. Reinitialize
     controller only if driver is running.
   o Remove useless ti_stop() in ti_watchdog() since ti_init_locked()
     always invokes ti_stop().

r227318:
  Track which ring was updated in RX handler and update only modified
  ring. This should reduce unnecessary register accesses.

r227319:
  Mini ring is not available on Tigon 1 so do not create DMA maps for
  mini ring on Tigon 1 to save resources.

r227322:
  Show RX buffer allocation failure and do not blindly send alive
  message to firmware. Probably the correct way for this error is to
  send a TI_CMD_CODE_STACK_DOWN message to firmware and let firmware
  handle the rest.

r227323:
  If ti_chipinit() fails in ti_stop(), ignore the error and release
  all allocated TX/RX buffer resources. If the interface is brought
  to up again after the error, we will leak allocated TX/RX buffers.

r227324:
  Do not allow changing MTU to be less than the minimum.

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

12 years agoMFC r227091-227095,227098-227099:
yongari [Tue, 3 Jan 2012 20:26:28 +0000 (20:26 +0000)]
MFC r227091-227095,227098-227099:
r227091:
  Make sure to unload loaded DMA area(descriptor, command, event ring).

r227092:
  Announce IFCAP_LINKSTATE capability and let network stack know link
  state changes.  Hide superfluous link up/down message under
  bootverbose since if_link_state_change(9) shows that information.
  While I'm here, change baudrate with the resolved speed of the
  established link instead of blindly setting it 1G. Unfortunately,
  it seems there is no way to differentiate 10/100Mbps from
  non-gigabit link so just assume we established a 100Mbps link if
  current link is not a gigabit link.

r227093:
  Introduce ti_ifmedia_upd_locked() to use in driver initialization
  and add missing driver lock for both ti_ifmedia_upd() and
  ti_ifmedia_sts().

r227094:
  Don't clear upper 4bits from VLAN tag information.  It's
  responsibility of vlan(4) to extract VLAN id from the tag
  information and vlan(4) correctly handles it.

r227095:
  Don't abuse if_hwassist and make sure enabling corresponding TX/RX
  checksum offloading and VLAN hardware tag insertion/stripping from
  the currently enabled hardware offloading capabilities.
  Previously if_hwassist, which was initialized to TX/RX checksum
  offloading, was blindly used to enable both TX and RX checksum
  offloading such that disabling either TX or RX checksum offloading
  was not possible.

  ti(4) controllers support TX/RX checksum offloading with VLAN
  tagging so announce TX/RX checksum offloading capability over VLAN
  to vlan(4).

  Make VLAN hardware tag insertion/stripping honors currently enabled
  interface capability instead of blindly enabling VLAN hardware
  tagging. This change allows disabling hardware support of VLAN tag.

  Because ti(4) supports VLAN oversized frames, make network stack
  know the capability by setting if_hdrlen.

  While I'm here, rewrite SIOCSIFCAP handler and make sure to
  reinitialize controller whenever TX/RX checksum offloading and VLAN
  hardware tagging option is changed.  The requirement of controller
  reinitialization comes from the limitation of Tigon I/II firmware.
  Tigon I/II firmware requires all related RCBs should be
  reinitialized whenever any of its hardware offloading capabilities
  change.

  vlan(4) is also notified whenever the parent interface's capability
  changes such that it can correctly handle TX/RX checksum offloading
  based on parent interface's enabled offloading capabilities.

  RX checksum offloading handler was changed to make upper stack use
  controller computed partial checksum value.  Previously, ti(4) just
  set the computed value for any frames(IPv4, IPv6) and the value was
  not used in upper stack because driver didn't set CSUM_DATA_VALID
  such that upper network stack had to recompute checksum of TCP/UDP
  packets. I have no idea how this was not noticed for a long time.
  With this change, upper network stack does not have to fully
  recompute the checksum such that calculating pseudo checksum based
  on partial checksum is sufficient to know whether received packet's
  checksum is correct or not. However, I don't know why ti(4) does
  not have controller compute pseudo checksum as controller has
  ability to do it. I'm just guessing enabling that feature could
  trigger a firmware bug or could be slower than computing it on host
  side so just leave it as it was.

  In order not to produce false positives, ti(4) now checks whether
  controller actually computed IP or TCP/UDP checksum by checking
  ti_flags field.

r227098:
  Because ti(4) drops a driver lock in RX handler, check whether
  driver is still running before re-enabling interrupts.

r227099:
  Implement altq(4) support.
  While I'm here fix a logic error in r227098 where it didn't
  re-enable interrupts when TX queue is empty.

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

12 years agoMFC r227086-227089:
yongari [Tue, 3 Jan 2012 19:00:29 +0000 (19:00 +0000)]
MFC r227086-227089:
r227086:
  Use ANSI function definations.

r227087:
  No functional changes.

r227088:
  Make ti(4) build with 'options TI_PRIVATE_JUMBOS'.
  This was broken in r175872.

  We have a UMA backed jumbo allocator and that is much better
  implementation than having a local jumbo buffer allocator in
  driver. This local allocator would be removed in near future but
  fixing build before removal wouldn't be a bad idea.

r227089:
  s/u_intXX_t/uintXX_t/g

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

12 years agoMFC r228438:
fabient [Tue, 3 Jan 2012 17:17:30 +0000 (17:17 +0000)]
MFC r228438:
There's a small set of events on Nehalem, that are not supported in
processors with CPUID signature 06_1AH, 06_1EH, and 06_1FH.

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

12 years agoMFC r228198:
fabient [Tue, 3 Jan 2012 16:54:47 +0000 (16:54 +0000)]
MFC r228198:
Update Westmere uncore event exception list.

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

12 years agoMFC r225839:
mav [Tue, 3 Jan 2012 13:16:47 +0000 (13:16 +0000)]
MFC r225839:
Import the rest of HID improvements from the branch:
 - improve report descriptor parser in libusbhid to handle several kinds of
reports same time;
 - add to the libusbhid API two functions wrapping respective kernel IOCTLs
for reading and writing reports;
 - tune uhid IOCTL interface to allow reading and writing arbitrary report,
when multiple supported by the device;
 - teach usbhidctl to set output and feature reports;
 - make usbhidaction support all the same item names as bhidctl.

Sponsored by: iXsystems, inc.

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

12 years agoMFC r213920 (by hselasky):
mav [Tue, 3 Jan 2012 13:13:31 +0000 (13:13 +0000)]
MFC r213920 (by hselasky):
- Add support for libusbhid in 32-bit compatibility mode.
- Add missing check for ugd_actlen being too small.
- Add missing inclusion guard to usbvar.h header file.

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

12 years agoMFC r226471 (se):
delphij [Tue, 3 Jan 2012 10:22:09 +0000 (10:22 +0000)]
MFC r226471 (se):

Add missing default values for daily/800.scrub-zfs for documentation
purposes. No functional change, since all parameters are set to their
default values.

MFC r226865 (delphij):

Increase default scrub threshold from 30 days to 5 weeks.  Using
whole weeks makes it easier to predicate when the scrub would
happen.

Requested by: gjb

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

12 years agoMFC r228758:
hselasky [Tue, 3 Jan 2012 09:17:50 +0000 (09:17 +0000)]
MFC r228758:
 - Fix for race against user-space applications trying to change the
 configuration on USB HUBs.

PR:     kern/163091

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

12 years agoMFC r228483, r228640, r228709, r228711, r228723 and r229086:
hselasky [Tue, 3 Jan 2012 09:15:54 +0000 (09:15 +0000)]
MFC r228483, r228640, r228709, r228711, r228723 and r229086:
 - Implement better support for USB controller suspend and resume.
 - Add code to wait for USB shutdown to be executed at system shutdown.
 - Add sysctl which can be used to skip this waiting.

NOTE: All USB controller drivers needs to be re-compiled after
this change due to changes in some USB controller only structures.

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

12 years agoMFC: r227543
rmacklem [Tue, 3 Jan 2012 04:12:40 +0000 (04:12 +0000)]
MFC: r227543
Modify the new NFS client so that nfs_fsync() only calls ncl_flush()
for regular files. Since other file types don't write into the
buffer cache, calling ncl_flush() is almost a no-op. However, it does
clear the NMODIFIED flag and this shouldn't be done by nfs_fsync() for
directories.

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

12 years agoMFC r226871-226872:
yongari [Tue, 3 Jan 2012 01:02:26 +0000 (01:02 +0000)]
MFC r226871-226872:
r226871:
  Add initial BCM5720 support.
  Many thanks to Broadcom for continuing support of FreeBSD.

  Submitted by: Geans Pin at Broadcom (initial version)
  H/W donated by: Broadcom

r226872:
  Disable updating InputDiscards counter for BCM5717, BCM5718,
  BCM5719 A0 and BCM5720 A0 and add comment why driver does not try
  to read it.

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

12 years agoRecognize BCM5720C PHY.
yongari [Tue, 3 Jan 2012 00:47:54 +0000 (00:47 +0000)]
Recognize BCM5720C PHY.
This is a direct commit to stable/8.

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

12 years agoMFC r226814-226815,226820-226821,226864,226866-226867:
yongari [Tue, 3 Jan 2012 00:24:44 +0000 (00:24 +0000)]
MFC r226814-226815,226820-226821,226864,226866-226867:
r226814:
  Rename definition of BGE_SOFTWARE_GENCOMM_* to more readable ones.
  The origin of GENCOMM seems to come from Alteon Tigon Host/NIC
  interface definition where it defines general communications region
  which is active when firmware is loaded and running.  This region
  was used in communication between the host and processor internal
  to the Tigon chip.
  Broadcom data sheet also defines the region as 'Software Gencomm'
  in NetXtreme memory map but lacks detailed description of its
  interface so it was hard to know which ones are used for which
  interface.
  This change shall slightly enhance readability.

  No functional changes.

r226815:
  Define MAC address mail box and use it instead of using
  hard-coded value.

r226820:
  Offset 0x6810 is RX-RISC event register. Rename BGE_CPU_EVENT with
  BGE_RX_CPU_EVENT for readability.
  Additionally define BGE_TX_CPU_EVENT for TX-RSIC event register(BCM570[0-4] only).

r226821:
  SRAM offset 0x0C04 is used by driver to inform the IPMI/ASF firmware
  about the various driver events like load, unload, reset, suspend,
  restart, and ioctl operations.
  Define driver's event rather than using hard-coded values.  We don't
  still send suspend/resume event to firmware.

  Previously bge(4) used BGE_SDI_STATUS to send events. Because driver
  has to access firmware mail box to inform current state, using
  BGE_SDI_STATUS register was wrong. The end result was the same as
  BGE_SDI_STATUS is 0x0C04.

  No functional changes.

r226864:
  Rename BGE_FW_DRV_ALIVE/BGE_FW_PAUSE to BGE_FW_CMD_DRV_ALIVE/BGE_FW_CMD_PAUSE.
  Also add more firmware commands(not used yet).
  No functional changes.

r226866:
  Rename hard-coded value 1 << 14 with BGE_RX_CPU_DRV_EVENT.
  This bit(SW event 7 in publicly available data sheet) is used to
  make RX CPU handle a firmware command and the bit is automatically
  cleared after RX CPU completed the command.
  Generally firmware command takes the following steps.
   1. Write BGE_SRAM_FW_CMD_MB with a command.
   2. Write BGE_SRAM_FW_CMD_LEN_MB with the length of the command in bytes.
   3. Write BGE_SRAM_FW_CMD_DATA_MB with actual command data.
   4. Generate BGE_RX_CPU_EVENT and let firmware handle the command.
   5. Wait for the ACK of the firmware command.

  No functional changes.

r226867:
  Define BGE_FW_HB_TIMEOUT_SEC and remove one more magic value.
  bge(4) sends BGE_FW_CMD_DRV_ALIVE command to firmware every 2
  seconds.  BGE_FW_CMD_DRV_ALIVE command requires 4 bytes data.  This
  data contains timeout value in seconds until the next
  BGE_FW_CMD_DRV_ALIVE command.
  Broadcom recommends driver set the value 3 times longer than the
  interval that it sends BGE_FW_CMD_DRV_ALIVE.  Currently bge(4) uses
  3 seconds so probably we have to increase it in future and use
  different ALIVE command(e.g. BGE_FW_CMD_DRV_ALIVE3).

  No functional changes.

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

12 years agoMFC r226749,226770,226804-226807:
yongari [Tue, 3 Jan 2012 00:10:30 +0000 (00:10 +0000)]
MFC r226749,226770,226804-226807:
r226749:
  Whitespace nits.

r226770:
  Fix long standing bge_sysctl_debug_info() issues.
   o Protect bge(4) status block access and register dump with driver lock.
   o Add missing bus_dmamap_sync() before dumping status block.
   o Use minimum status block size, 32 bytes, for status block dump on most
     controllers except BCM5700 AX/BX.
  While I'm here, make the handler show 5717 Plus in hardware flags.

r226804:
  Make CPMU handle GPHY power down control on controllers that have
  CPMU capability.

r226805:
  It is known that all Broadcom controllers have 4GB boundary DMA
  bug.  Apply workaround to all controllers.

r226806:
  Broadcom says BCM5755 or higher and BCM5906 have short DMA bug.
  Apply workaround to these controllers.

r226807:
  BCM5719 cannot handle DMA requests for DMA segments that have
  larger than 4KB in size.  However the maximum DMA segment size
  created in DMA tag is 4KB, so we wouldn't encounter the issue here.
  Just record this issue such that let developers not to create a DMA
  segment that is larger than 4KB for BCM5719. It's possible to split
  a DMA segment into multiple smaller ones in run time but I believe
  it's not worth to implement that.

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

12 years agoMFC r226745:
yongari [Mon, 2 Jan 2012 23:53:36 +0000 (23:53 +0000)]
MFC r226745:
  axe(4) got VLAN over-sized frame support.
  Add axe(4) to the list of interfaces that support VLAN over-sized frame.

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

12 years agoMFC r226744:
yongari [Mon, 2 Jan 2012 23:52:32 +0000 (23:52 +0000)]
MFC r226744:
  AX88178/AX88772A/AX88772B supports VLAN over-sized frame.
  Xr vlan.

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

12 years agoMFC r226743:
yongari [Mon, 2 Jan 2012 23:50:32 +0000 (23:50 +0000)]
MFC r226743:
  Implement TX/RX checksum offloading support for ASIX AX88772B
  controller.

  AX88772B data sheet does not show detailed information about
  checksum offloading related things. It seems the controller has
  lots of options to support checksum offloading but I failed to
  understand why this feature requires so much complex controller
  configuration and status bits.
  One of major difference between AX88772B and its predecessor is
  AX88772B uses a new RX header format when RX checksum offloading is
  enabled.  It also requires the received length of a frame should be
  multiple of 4.  Controller will pad necessary bytes to make the
  length of received frame to be multiple of 4.  It is driver's
  responsibility to offset this pad bytes.
  Note, AX88772B could be configured to get partial checksum value in
  in RX header. This mode uses different RX header format and
  currently we don't use that fature.

  This change makes axe(4) use driver specific MII attach handler to
  override uether(9)'s default MII attach and announce flow-control
  capability for AX88178/AX88772A/AX88772B to PHY drivers.  It seems
  original AX88772 also supports flow-control but I didn't enable it
  due to lack of test/access to the controller.  The flow-control
  threshold parameter is loaded from EEPROM and there is no way to
  override this value without reprogramming EEPROM. For AX88772B,
  TX/RX IP/TCP/UDP checksum offloading is announced to network stack.
  IPv6 and PPPoE checksum offloading is also supported by controller
  but we have no way to take advantage of these features.
  Driver already knows PHY address so make PHY driver know that
  information and remove unnecessary PHY address check used in
  miibus_readreg/miibus_writereg callbacks.  Also announce AX88178,
  AX88772A and AX88772B support VLAN over-sized frame.

  While I'm here clean up headers and remove axe_start() in
  axe_init() because the link wouldn't be available right after media
  change.

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

12 years agoMFC r226709:
yongari [Mon, 2 Jan 2012 23:47:51 +0000 (23:47 +0000)]
MFC r226709:
  This change makes it possible to define driver specific attach
  handler such that driver can announce interface capabilities and
  can do its own MII attach.  Currently all USB ethernet controllers
  have no way to establish a link with pause capabilities. Lack of
  checksum offloading support also was one of reason to bring this
  change in.

  This change adds a couple of wrappers to USB ethernet drivers
  (uether_ifmedia_upd, uether_init and uether_start). All exported
  functions in uether has prefix uether_ so I think it's more
  consistent to have wrappers that follow the convention.
  This change preserves ABI/KPI so it should be safe to merge this
  change to stable/8.

  While I'm here add missing __FBSDID and clean up headers.

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

12 years agoMFC r210993, r228356:
gjb [Mon, 2 Jan 2012 23:44:07 +0000 (23:44 +0000)]
MFC r210993, r228356:

r210933 (joel):
 - Fix typos and spelling mistakes

r228356: [3]
 - Update du(1):
   - Sort arguments alphabetically where appropriate
   - '-B blocksize' is not mutually exclusive of '-h|-k|-m'
   - Mention '-t' in synopsis
   - Other wording improvements
   - Update usage() output to reflect the new synopsis
   - Other miscellaneous improvements

PR:             162438 [3]

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

12 years agoMFC 226703-226704:
yongari [Mon, 2 Jan 2012 23:43:26 +0000 (23:43 +0000)]
MFC 226703-226704:
r226703:
  Add ALi/ULi M5261/M5263 to supported hardware chipets.

r226704:
  All dc(4) controllers support VLAN over-sized frame.
  Xr vlan

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

12 years agoMFC r226701:
yongari [Mon, 2 Jan 2012 23:38:03 +0000 (23:38 +0000)]
MFC r226701:
  Add support for ALi/ULi, now NVIDIA, M5261/M5263 PCI FastEthernet
  controller which is found on ULi M1563 South Bridge & M1689 Bridge.
  These controllers look like a tulip clone.
  M5263 controller does not support MII bitbang so use DC_ROM
  register to access MII registers.  Like other tulip variants, ULi
  controller uses a setup frame to configure RX filter and uses new
  setup frame format.  It's not clear to me whether the controller
  supports a hash based multicast filtering so this patch uses 14
  perfect multicast filter to filter multicast frames.  If number of
  multicast addresses is greater than 14, controller is put into a
  mode that receives all multicast frames.
  Due to lack of access to M5261, this change was not tested with
  M5261 but it probably works.  Many thanks to Marco who provided
  remote access to M5263.

  Tested by: Marco Steinbach <coco <> executive-computing dot de>,
Martin MATO <martin.mato <> orange dot fr>

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

12 years agoMFC r226699:
yongari [Mon, 2 Jan 2012 23:20:22 +0000 (23:20 +0000)]
MFC r226699:
  When driver is run for the first time there would be no established
  link such that calling dc_setcfg() right after media change would
  be meaningless unless controller in question is not Davicom DM9102.
  Ideally dc_setcfg() should be called when speed/duplex is resolved
  otherwise it would reprogram controller with wrong speed/duplex
  information.  Because MII status change callback already calls
  dc_setcfg() I think calling dc_setcfg() in dc_init_locked() is
  wrong.  For instance, it would take some time to establish a link
  after mii_mediachg(), so blindly calling dc_setcfg() right after
  mii_mediachg() will always yield wrong media configuration.

  Extend dc_ifmedia_upd() to handle media change and still allow
  21143 and Davidcom controllers program speed/duplex regardless of
  current resolved speed/duplex of link. In theory 21143 may not need
  to call dc_setcfg() right after media change, but leave it as it is
  because there are too many variants to test that change.  Probably
  dc(4) shall need a PHY reset in dc_ifmedia_upd() but it's hard to
  verify correctness of the change.

  This change reliably makes ULi M5263 establish a link.

  While I'm here correctly report media change result. Previously it
  always reported a success.

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

12 years agoMFC r228885:
gjb [Mon, 2 Jan 2012 22:25:54 +0000 (22:25 +0000)]
MFC r228885:

r228885:
 - Add missing opening and closing brackets in getopt_long.3 and
   getsubopt.3 to make the examples reflect reality more closely.

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

12 years agoMFC r228823, r228824:
gjb [Mon, 2 Jan 2012 22:22:19 +0000 (22:22 +0000)]
MFC r228823, r228824:

r228823:
 - Properly escape a special character
 - Enclose tabbed content in quotes

r228824:
 - Remove trailing whitespace

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