]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
12 years agoFix a case of "mis-located braces".
Adrian Chadd [Wed, 1 Aug 2012 00:18:02 +0000 (00:18 +0000)]
Fix a case of "mis-located braces".

PR: kern/170302

12 years agoAllow 802.11n hardware to support multi-rate retry when RTS/CTS is
Adrian Chadd [Tue, 31 Jul 2012 23:54:15 +0000 (23:54 +0000)]
Allow 802.11n hardware to support multi-rate retry when RTS/CTS is
enabled.

The legacy (pre-802.11n) hardware doesn't support this - although
the AR5212 era hardware supports MRR, it doesn't have all the bits
needed to support MRR + RTS/CTS.  The AR5416 and later support
a packet duration and RTS/CTS flags per rate scenario, so we should
support it.

Tested:

* AR9280, STA

PR: kern/170302

12 years agoIn case of IPsec he have to do delayed checksum calculations before
Bjoern A. Zeeb [Tue, 31 Jul 2012 23:34:06 +0000 (23:34 +0000)]
In case of IPsec he have to do delayed checksum calculations before
adding any extension header, or rather before calling into IPsec
processing as we may send the packet and not return to IPv6 output
processing here.

PR: kern/170116
MFC After: 3 days

12 years agoPrefer ate over macb. macb doesn't work anymore, and ate has more
Warner Losh [Tue, 31 Jul 2012 19:41:12 +0000 (19:41 +0000)]
Prefer ate over macb.  macb doesn't work anymore, and ate has more
errata workarounds in it.

12 years agoNote about where we can boot this.
Warner Losh [Tue, 31 Jul 2012 19:39:21 +0000 (19:39 +0000)]
Note about where we can boot this.

12 years agoAllow chip selects other than 0. The SAM9260EK board
Warner Losh [Tue, 31 Jul 2012 19:14:22 +0000 (19:14 +0000)]
Allow chip selects other than 0.  The SAM9260EK board
has its dataflash on CS1.

12 years agoRestore the PCI bridge configuration upon resume.
Adrian Chadd [Tue, 31 Jul 2012 18:47:17 +0000 (18:47 +0000)]
Restore the PCI bridge configuration upon resume.

This allows my TI1510 cardbus/PCI bridge to work after a suspend/resume,
without having to unload/reload the cbb driver.

I've also tested this on stable/9.  I'll MFC it shortly.

PR: kern/170058
Reviewed by: jhb
MFC after: 1 day

12 years agoClean up some unused leftover code from em
Jack F Vogel [Tue, 31 Jul 2012 18:44:10 +0000 (18:44 +0000)]
Clean up some unused leftover code from em
Make IRQ style a tuneable
Fix lock handling in the interrupt handler

MFC after:3 days

12 years agoReorder the managament of advisory locks on open files so that the advisory
John Baldwin [Tue, 31 Jul 2012 18:25:00 +0000 (18:25 +0000)]
Reorder the managament of advisory locks on open files so that the advisory
lock is obtained before the write count is increased during open() and the
lock is released after the write count is decreased during close().

The first change closes a race where an open() that will block with O_SHLOCK
or O_EXLOCK can increase the write count while it waits.  If the process
holding the current lock on the file then tries to call exec() on the file
it has locked, it can fail with ETXTBUSY even though the advisory lock is
preventing other threads from succesfully completeing a writable open().

The second change closes a race where a read-only open() with O_SHLOCK or
O_EXLOCK may return successfully while the write count is non-zero due to
another descriptor that had the advisory lock and was blocking the open()
still being in the process of closing.  If the process that completed the
open() then attempts to call exec() on the file it locked, it can fail with
ETXTBUSY even though the other process that held a write lock has closed
the file and released the lock.

Reviewed by: kib
MFC after: 1 month

12 years agoFix wrong indent according to style(9)
Martin Matuska [Tue, 31 Jul 2012 17:32:28 +0000 (17:32 +0000)]
Fix wrong indent according to style(9)

MFC after: 2 weeks

12 years agoFix reporting of root pool upgrade notice.
Martin Matuska [Tue, 31 Jul 2012 17:28:28 +0000 (17:28 +0000)]
Fix reporting of root pool upgrade notice.

MFC after: 2 weeks

12 years agoShuffle the call to ath_hal_setuplasttxdesc() to _after_ the rate control
Adrian Chadd [Tue, 31 Jul 2012 17:08:29 +0000 (17:08 +0000)]
Shuffle the call to ath_hal_setuplasttxdesc() to _after_ the rate control
code is called and remove it from ath_buf_set_rate().

For the legacy (non-11n API) TX routines, ath_hal_filltxdesc() takes care
of setting up the intermediary and final descriptors right, complete
with copying the rate control info into the final descriptor so the
rate modules can grab it.

The 11n version doesn't do this - ath_hal_chaintxdesc() doesn't
copy the rate control bits over, nor does it clear isaggr/moreaggr/
pad delimiters.  So the call to setuplasttxdesc() is needed here.

So:

* legacy NICs - never call the 11n rate control stuff, so filltxdesc
  copies the rate control info right;
* 11n NICs transmitting legacy or 11n non-aggregate frames -
  ath_hal_set11nratescenario() is called to setup rate control and
  then ath_hal_filltxdesc() chains them together - so the rate control
  info is right;
* 11n aggregate frames - set11nratescenario() is called, then
  ath_hal_chaintxdesc() is called to chain a list of aggregate and subframes
  together. This requires a call to ath_hal_setuplasttxdesc() to complete
  things.

Tested:

* AR9280 in station mode

TODO:

* I really should make sure that the descriptor contents get blanked
  out correctly or garbage left over from aggregate frames may show
  up in non-aggregate frames, leading to badness.

12 years agofind: Remove unnecessary and inconsistent initialization.
Jilles Tjoelker [Tue, 31 Jul 2012 16:55:41 +0000 (16:55 +0000)]
find: Remove unnecessary and inconsistent initialization.

Submitted by: jhb

12 years agoPush the rate control and descriptor chaining into the descriptor "set"
Adrian Chadd [Tue, 31 Jul 2012 16:41:09 +0000 (16:41 +0000)]
Push the rate control and descriptor chaining into the descriptor "set"
functions, for both legacy and 802.11n.

This will simplify supporting the EDMA chipsets as these two descriptor
setup functions can just be overridden in their entirety, hiding all of
the subtle differences in setting things up.

It's not a permanent solution, as eventually the AR5416 HAL should grow
similar versions of the 11n descriptor functions and then those can be
used.

TODO:

* Push the "clr11naggr" call into the legacy setds, just to ensure
  that retried frames don't end up with the aggregate bits set
  inappropriately;
* Remove the "setlasttxdesc" call from the 11n TX path and push it
  into setds_11n.
* Ensure that setds_11n will work correctly for non-aggregate frames;
* .. and then when it does, just unconditionally call "setds_11n" for
  11n NICs and "setds" for non-11n NICs.

12 years agoSome style(9) and whitespace changes.
Gleb Smirnoff [Tue, 31 Jul 2012 11:31:12 +0000 (11:31 +0000)]
Some style(9) and whitespace changes.

Together with: Andrey Zonov <andrey zonov.org>

12 years agoAdd several performance optimizations to acpi_cpu_idle().
Alexander Motin [Tue, 31 Jul 2012 10:58:50 +0000 (10:58 +0000)]
Add several performance optimizations to acpi_cpu_idle().

For C1 and C2 states use cpu_ticks() to measure sleep time instead of much
slower ACPI timer. We can't do it for C3, as TSC may stop there. But it is
less important there as wake up latency is high any way.

For C1 and C2 states do not check/clear bus mastering activity status, as
it is important only for C3. As side effect it can make CPU enter C2 instead
of C3 if last BM activity was two sleeps back (unlike one before), but
that may be even good because of collecting more statistics. Premature BM
wakeup from C3, entered because of overestimation, can easily be worse then
entering C2 from both performance and power consumption points of view.

Together on dual Xeon E5645 system on sequential 512 bytes read test this
change makes cpu_idle_acpi() as fast as simplest cpu_idle_hlt() and only
few percents slower then cpu_idle_mwait(), while deeper states are still
actively used during idle periods.

To help with diagnostics, add C-state type into dev.cpu.X.cx_supported.

Sponsored by: iXsystems, Inc.

12 years agoFixed some debug output in hwmp_recv_prep.
Monthadar Al Jaberi [Tue, 31 Jul 2012 08:05:40 +0000 (08:05 +0000)]
Fixed some debug output in hwmp_recv_prep.

12 years agonobody uses this file except the userspace ipfw code, but the cast
Luigi Rizzo [Tue, 31 Jul 2012 08:04:49 +0000 (08:04 +0000)]
nobody uses this file except the userspace ipfw code, but the cast
of a pointer to an integer needs a cast to prevent a warning for
size mismatch.

MFC after: 1 week

12 years agoFix a PREQ comparison error in 11s HWMP.
Monthadar Al Jaberi [Tue, 31 Jul 2012 07:36:27 +0000 (07:36 +0000)]
Fix a PREQ comparison error in 11s HWMP.

* Earlier we compared two not equal metrics, one was what we recevied
in the 'new PREQ' while the other was what we already have saved which
was 'old PREQ' + link metric for the last hop;
* Fixed by adding 'new PREQ' + link metric for the last hop in a
temporary variable;

12 years agoFix bugs in net80211s found with wtap simulator.
Monthadar Al Jaberi [Tue, 31 Jul 2012 07:31:47 +0000 (07:31 +0000)]
Fix bugs in net80211s found with wtap simulator.

For description of the test scripts refer to projects/net80211_testsuite/wtap.

* Test 007 showed a bug in intermediate PREP for a proxy entry. Resolved;
* Test 002 showed a bug in the Addressing Mode flag for a PREQ. Resolved;

12 years agoFix wtap to not panic in wtap_beacon_intrp.
Monthadar Al Jaberi [Tue, 31 Jul 2012 07:22:50 +0000 (07:22 +0000)]
Fix wtap to not panic in wtap_beacon_intrp.

* Changed KASSERT to be debug printf (DWTAP_PRINTF). If state is not
IEEE80211_S_RUN we return without scheduling a new callout;
* When net80211 stack changes state to IEEE802_11_INIT we stop the
beacon callout task;

12 years agoremove a redundant MALLOC_DECLARE
Luigi Rizzo [Tue, 31 Jul 2012 05:51:48 +0000 (05:51 +0000)]
remove a redundant MALLOC_DECLARE

12 years agoI am comparing current pipe code with the one in 8.3-STABLE r236165,
David Xu [Tue, 31 Jul 2012 05:48:35 +0000 (05:48 +0000)]
I am comparing current pipe code with the one in 8.3-STABLE r236165,
I found 8.3 is a history BSD version using socket to implement FIFO
pipe, it uses per-file seqcount to compare with writer generation
stored in per-pipe object. The concept is after all writers are gone,
the pipe enters next generation, all old readers have not closed the
pipe should get the indication that the pipe is disconnected, result
is they should get EPIPE, SIGPIPE or get POLLHUP in poll().
But newcomer should not know that previous writters were gone, it
should treat it as a fresh session.
I am trying to bring back FIFO pipe to history behavior. It is still
unclear that if single EOF flag can represent SBS_CANTSENDMORE and
SBS_CANTRCVMORE which socket-based version is using, but I have run
the poll regression test in tool directory, output is same as the one
on 8.3-STABLE now.
I think the output "not ok 18 FIFO state 6b: poll result 0 expected 1.
expected POLLHUP; got 0" might be bogus, because newcomer should not
know that old writers were gone. I got the same behavior on Linux.
Our implementation always return POLLIN for disconnected pipe even it
should return POLLHUP, but I think it is not wise to remove POLLIN for
compatible reason, this is our history behavior.

Regression test: /usr/src/tools/regression/poll

12 years agoProperly apply #ifdef INET and leave a comment that we are (will) apply
Bjoern A. Zeeb [Tue, 31 Jul 2012 05:44:03 +0000 (05:44 +0000)]
Properly apply #ifdef INET and leave a comment that we are (will) apply
delayed IPv6 checksum processing in ip6_output.c when doing IPsec.

PR: kern/170116
MFC after: 3 days

12 years agoImprove the should-never-hit printf to ease debugging in case we'd ever hit
Bjoern A. Zeeb [Tue, 31 Jul 2012 05:34:54 +0000 (05:34 +0000)]
Improve the should-never-hit printf to ease debugging in case we'd ever hit
it again when doing the delayed IPv6 checksum calculations.

MFC after: 3 days

12 years ago- Change back "d_ofs" to int8_t to not pessimize padding and size of "struct puc_cfg".
Max Khon [Tue, 31 Jul 2012 05:23:23 +0000 (05:23 +0000)]
- Change back "d_ofs" to int8_t to not pessimize padding and size of "struct puc_cfg".
- Use "puc_config_moxa" for Moxa boards that need d_ofs greater than 0x7f

Prodded by: marcel@, gavin@
MFC after: 3 days

12 years agomacb doesn't work, switch to ate.
Warner Losh [Tue, 31 Jul 2012 04:09:27 +0000 (04:09 +0000)]
macb doesn't work, switch to ate.

12 years agoMigrate some more TX side setup routines to be methods.
Adrian Chadd [Tue, 31 Jul 2012 03:09:48 +0000 (03:09 +0000)]
Migrate some more TX side setup routines to be methods.

12 years agoBreak out the hardware handoff and TX DMA restart code into methods.
Adrian Chadd [Tue, 31 Jul 2012 02:28:32 +0000 (02:28 +0000)]
Break out the hardware handoff and TX DMA restart code into methods.

These (and a few others) will differ based on the underlying DMA
implementation.

For the EDMA NICs, simply stub them out in a fashion which will let
me focus on implementing the necessary descriptor API changes.

12 years agoPlaceholder ioctl for an upcoming rate control statistics API change.
Adrian Chadd [Tue, 31 Jul 2012 02:18:10 +0000 (02:18 +0000)]
Placeholder ioctl for an upcoming rate control statistics API change.

12 years agoWhen a thread is blocked in direct write state, it only sets PIPE_DIRECTW
David Xu [Tue, 31 Jul 2012 02:00:37 +0000 (02:00 +0000)]
When a thread is blocked in direct write state, it only sets PIPE_DIRECTW
flag but not PIPE_WANTW, but FIFO pipe code does not understand this internal
state, when a FIFO peer reader closes the pipe, it wants to notify the writer,
it checks PIPE_WANTW, if not set, it skips calling wakeup(), so blocked writer
never noticed the case, but in general, the writer should return from the
syscall with EPIPE error code and may get SIGPIPE signal. Setting the
PIPE_WANTW fixed problem, or you can turn off direct write, it should fix the
problem too. This bug is found by PR/170203.

Another bug in FIFO pipe code is when peer closes the pipe, another end which
is being blocked in select() or poll() is not notified, it missed to call
pipeselwakeup().

Third problem is found in poll regression test, the existing code can not
pass 6b,6c,6d tests, but FreeBSD-4 works. This commit does not fix the
problem, I still need to study more to find the cause.

PR: 170203
Tested by: Garrett Copper &lt; yanegomi at gmail dot com &gt;

12 years agoPartial MFV (illumos-gate 13753:2aba784c276b)
Martin Matuska [Mon, 30 Jul 2012 23:14:24 +0000 (23:14 +0000)]
Partial MFV (illumos-gate 13753:2aba784c276b)
2762 zpool command should have better support for feature flags

References:
https://www.illumos.org/issues/2762

MFC after: 2 weeks

12 years agoUntil now KTR_ENTRIES, which defines the size of circular buffer used in
Davide Italiano [Mon, 30 Jul 2012 22:46:42 +0000 (22:46 +0000)]
Until now KTR_ENTRIES, which defines the size of circular buffer used in
ktr(4), was constrained to be a power of two. Remove this constraint and
update sys/conf/NOTES accordingly.

Reviewed by: jhb
Approved by: gnn (mentor)
Sponsored by: Google Summer of Code 2012

12 years agoieeefp.h is only needed on i386 class hardware.
Steve Kargl [Mon, 30 Jul 2012 21:58:28 +0000 (21:58 +0000)]
ieeefp.h is only needed on i386 class hardware.

Submitted by: bde
Approved by: das (pre-approved)

12 years agoWhitespace.
Steve Kargl [Mon, 30 Jul 2012 21:55:49 +0000 (21:55 +0000)]
Whitespace.

Submitted by: bde
Approved by: das (pre-approved)

12 years agoThese files will support the whole at91sam9x5 family when done,
Warner Losh [Mon, 30 Jul 2012 21:30:43 +0000 (21:30 +0000)]
These files will support the whole at91sam9x5 family when done,
so rename them now before they get copied further afield...

12 years agoList the members of the AT91SAM9G45 family.
Warner Losh [Mon, 30 Jul 2012 21:19:19 +0000 (21:19 +0000)]
List the members of the AT91SAM9G45 family.

12 years agoRemove trailing whitespace.
Joel Dahl [Mon, 30 Jul 2012 21:02:44 +0000 (21:02 +0000)]
Remove trailing whitespace.

12 years agoAdd more locale-specific functions to the relevant man pages and Makefile:
Isabell Long [Mon, 30 Jul 2012 20:56:19 +0000 (20:56 +0000)]
Add more locale-specific functions to the relevant man pages and Makefile:
  - lib/libc/locale/islower.3
  - lib/libc/locale/ispunct.3
  - lib/libc/locale/nl_langinfo.3
  - lib/libc/locale/isgraph.3
  - lib/libc/locale/isspace.3

Reviewed by: bz
Approved by: theraven
MFC after: 5 days

12 years agoRegen.
John Baldwin [Mon, 30 Jul 2012 20:45:17 +0000 (20:45 +0000)]
Regen.

12 years agoThe linux_lstat() system call accepts a pointer to a 'struct l_stat', not a
John Baldwin [Mon, 30 Jul 2012 20:44:45 +0000 (20:44 +0000)]
The linux_lstat() system call accepts a pointer to a 'struct l_stat', not a
'struct ostat'.

12 years agoEliminate an unneeded declaration. (I should have removed this as part
Alan Cox [Mon, 30 Jul 2012 20:38:37 +0000 (20:38 +0000)]
Eliminate an unneeded declaration.  (I should have removed this as part
of r227568.)

12 years agoChange (unused) prototype for stmxcsr() to match reality.
Konstantin Belousov [Mon, 30 Jul 2012 19:26:02 +0000 (19:26 +0000)]
Change (unused) prototype for stmxcsr() to match reality.

Noted by: jhb
MFC after: 1 week

12 years ago- move the inclusion of netmap headers to the common part of the code;
Luigi Rizzo [Mon, 30 Jul 2012 18:21:48 +0000 (18:21 +0000)]
- move the inclusion of netmap headers to the common part of the code;
- more portable annotations for unused arguments;

12 years agoBackport NFSv4 ACL fix from libarchive master branch.
Martin Matuska [Mon, 30 Jul 2012 14:47:35 +0000 (14:47 +0000)]
Backport NFSv4 ACL fix from libarchive master branch.

Source:
https://github.com/libarchive/libarchive/commit/f67370d5

Obtained from: libarchive (master branch)

12 years agoremove the last __unused instance in sbin/ipfw.
Luigi Rizzo [Mon, 30 Jul 2012 11:02:22 +0000 (11:02 +0000)]
remove the last __unused instance in sbin/ipfw.
This particular function (show_prerequisites() ) we should actually
remove the argument from the callers as well, but i'll do it at a
later time.

12 years agoFix some compile errors at high WARNS, including one
Luigi Rizzo [Mon, 30 Jul 2012 10:55:23 +0000 (10:55 +0000)]
Fix some compile errors at high WARNS, including one
for an uninitialized variable.

unused parameters and variables are annotated with
(void)foo; /* UNUSED */
instead of __unused, because this code needs to build
also on linux and windows.

12 years agoRemove trailing whitespace.
Joel Dahl [Mon, 30 Jul 2012 10:14:37 +0000 (10:14 +0000)]
Remove trailing whitespace.

12 years agoReturn back double spacing.
Gleb Smirnoff [Mon, 30 Jul 2012 08:56:56 +0000 (08:56 +0000)]
Return back double spacing.

12 years agoMention when -d, -p and -r first hit FreeBSD.
Brian Somers [Mon, 30 Jul 2012 08:06:00 +0000 (08:06 +0000)]
Mention when -d, -p and -r first hit FreeBSD.

Bump the document date to when the change was made (rather than when the PR
was submitted).

Suggested by: pluknet

12 years agoAdd d, p and r switches for recording script sessions with timing data
Brian Somers [Mon, 30 Jul 2012 07:13:06 +0000 (07:13 +0000)]
Add d, p and r switches for recording script sessions with timing data
and playing sessions back with or without time delays.

PR: 114465
Submitted by: ighighi at gmail dot com
MFC after: 3 weeks

12 years agoFix a couple of comments about the rm9200, and fix a couple of indentation
Warner Losh [Mon, 30 Jul 2012 06:00:31 +0000 (06:00 +0000)]
Fix a couple of comments about the rm9200, and fix a couple of indentation
issues.  Add note that we need to implement at91sam9260 erratum workaround.

12 years agoRemove opt_enc.h from files committed with r235911. enc(4) is the
Bjoern A. Zeeb [Mon, 30 Jul 2012 03:00:58 +0000 (03:00 +0000)]
Remove opt_enc.h from files committed with r235911.  enc(4) is the
'encapsulating interface' used with IPsec and has nothing to do with
storage 'enclosure' services.

MFC after: 3 days
Noticed while: debugging why enc(4) is no longer automatically created

12 years agoBreak out the parsing code from main() and modularise things a little.
Adrian Chadd [Mon, 30 Jul 2012 01:42:22 +0000 (01:42 +0000)]
Break out the parsing code from main() and modularise things a little.

The eventual aim will be to support listing "one" and "all" stations for
the given ath device.

12 years agoPartially revert r238886 in part of GEOM_VFS spoiling.
Alexander Motin [Sun, 29 Jul 2012 20:04:09 +0000 (20:04 +0000)]
Partially revert r238886 in part of GEOM_VFS spoiling.

This change triggered interesting foot shooting condition in GEOM when
RW access to root partition by fsck spoils VFS geom there, which has it
opened RO at the same time.  Seems spoiling concept needs some rework.

12 years agoShave off a few more cycles from pmap_enter()'s critical section. In
Alan Cox [Sun, 29 Jul 2012 18:20:49 +0000 (18:20 +0000)]
Shave off a few more cycles from pmap_enter()'s critical section.  In
particular, do a little less work with the PV list lock held.

12 years agosh: Fix EINTR race condition in "wait" and "set -T" using sigsuspend().
Jilles Tjoelker [Sun, 29 Jul 2012 18:04:38 +0000 (18:04 +0000)]
sh: Fix EINTR race condition in "wait" and "set -T" using sigsuspend().

When waiting for child processes using "wait" or if "set -T" is in effect, a
signal interrupts the wait. Make sure there is no window where the signal
handler may be invoked (setting a flag) just before going to sleep.

There is a similar race condition in the shell language, but scripts can
avoid it by exiting from the trap handler or enforcing synchronization using
a fifo.

If SIGCHLD is not trapped, a signal handler must be installed for it. Only
install this handler for the duration of the wait to avoid triggering
unexpected [EINTR] errors elsewhere.

Note that for some reason only SIGINT and SIGQUIT interrupt a "wait"
command. This remains the case.

12 years agoGrr.!$()!$$ I missed checking this in even though I *did* run
Matt Jacob [Sun, 29 Jul 2012 14:21:42 +0000 (14:21 +0000)]
Grr.!$()!$$ I missed checking this in even though I *did* run
a tinderbox myself and caught the error.

Change to isp_send_cmd needs a final ecmd argument.

Sponsored by: Spectralogic
MFC after: 1 month
X-MFC: 238869

12 years agoImplement media change notification for DA and CD removable media devices.
Alexander Motin [Sun, 29 Jul 2012 11:51:48 +0000 (11:51 +0000)]
Implement media change notification for DA and CD removable media devices.
It includes three parts:
 1) Modifications to CAM to detect media media changes and report them to
disk(9) layer. For modern SATA (and potentially UAS) devices it utilizes
Asynchronous Notification mechanism to receive events from hardware.
Active polling with TEST UNIT READY commands with 3 seconds period is used
for incapable hardware. After that both CD and DA drivers work the same way,
detecting two conditions: "NOT READY: Medium not present" after medium was
detected previously, and "UNIT ATTENTION: Not ready to ready change, medium
may have changed". First one reported to disk(9) as media removal, second
as media insert/change. To reliably receive second event new
AC_UNIT_ATTENTION async added to make UAs broadcasted to all periphs by
generic error handling code in cam_periph_error().
 2) Modifications to GEOM core to handle media remove and change events.
Media removal handled by spoiling all consumers attached to the provider.
Media change event also schedules provider retaste after spoiling to probe
new media. New flag G_CF_ORPHAN was added to consumers to reflect that
consumer is in process of destruction. It allows retaste to create new
geom instance of the same class, while previous one is still dying.
 3) Modifications to some GEOM classes: DEV -- to report media change
events to devd; VFS -- to handle spoiling same as orphan to prevent
accessing replaced media. PART class already handles spoiling alike to
orphan.

Reviewed by: silence on geom@ and scsi@
Tested by: avg
Sponsored by: iXsystems, Inc. / PC-BSD
MFC after: 2 months

12 years agoShuffle the rate control call to be consistent with non-aggregate TX.
Adrian Chadd [Sun, 29 Jul 2012 09:23:32 +0000 (09:23 +0000)]
Shuffle the rate control call to be consistent with non-aggregate TX.

The correct ordering for non-aggregate TX is:

* call ath_hal_setuptxdesc() to setup the first TX descriptor complete
  with the first TX rate/try count;
* call ath_hal_setupxtxdesc() to setup the multi-rate retry;
* .. or for 802.11n NICs, call ath_hal_set11nratescenario() for MRR and
  802.11n flags;
* then call ath_hal_filltxdesc() to setup intermediary descriptors
  in a multi-descriptor single frame.

The call to ath_hal_filltxdesc() routines seem to correctly (consistently?)
handle the intermediary descriptor flags, including copying the rate
control information to the final descriptor in the frame.  That's used
by the rate control module rather than the hardware.

Tested:

* Only on AR9280 STA mode, however it should work on other chips in
  both STA and AP mode.

12 years agoFix breakage introduced in r238824 - correctly calculate the descriptor
Adrian Chadd [Sun, 29 Jul 2012 08:52:32 +0000 (08:52 +0000)]
Fix breakage introduced in r238824 - correctly calculate the descriptor
wrapping.

The previous code was only wrapping descriptor "block" boundaries rather
than individual descriptors.  It sounds equivalent but it isn't.

r238824 changed the descriptor allocation to enforce that an individual
descriptor doesn't wrap a 4KiB boundary rather than the whole block
of descriptors.  Eg, for TX descriptors, they're allocated in blocks
of 10 descriptors for each ath_buf (for scatter/gather DMA.)

12 years agoCatch up config_freebsd.h with libarchive 3.0.4
Martin Matuska [Sun, 29 Jul 2012 06:34:45 +0000 (06:34 +0000)]
Catch up config_freebsd.h with libarchive 3.0.4

12 years agoFix endless loop if reading unsupported ACL type.
Martin Matuska [Sun, 29 Jul 2012 06:33:27 +0000 (06:33 +0000)]
Fix endless loop if reading unsupported ACL type.
Apply fix from vendor's master branch.

References:
https://github.com/libarchive/libarchive/commit/d8b9dbd

Reported on: freebsd-current@
Obtained from: libarchive

12 years agoCommit the dci (gadget) support to the one ATMEL kernel config where
Warner Losh [Sun, 29 Jul 2012 04:28:29 +0000 (04:28 +0000)]
Commit the dci (gadget) support to the one ATMEL kernel config where
it might actually work.

12 years agoAdd usb_template for the gadget support. Even though this isn't a
Warner Losh [Sun, 29 Jul 2012 04:26:24 +0000 (04:26 +0000)]
Add usb_template for the gadget support.  Even though this isn't a
bootable kernel, its config will likely be copied to places that are.

Submitted by: Hans Petter Selasky

12 years agoAdd a couple of nice quotes from Edward Everett Hale
Doug Barton [Sun, 29 Jul 2012 01:01:35 +0000 (01:01 +0000)]
Add a couple of nice quotes from Edward Everett Hale

12 years agoFor consistency put the IPsec comment iside the #fidef section.
Bjoern A. Zeeb [Sun, 29 Jul 2012 00:45:24 +0000 (00:45 +0000)]
For consistency put the IPsec comment iside the #fidef section.

MFC after: 3 days

12 years agoFix a comment that we do not have an SA yet but need to acquire one.
Bjoern A. Zeeb [Sun, 29 Jul 2012 00:44:41 +0000 (00:44 +0000)]
Fix a comment that we do not have an SA yet but need to acquire one.

MFC after: 3 days

12 years agoAdd support for 88E1116R.
Hiroki Sato [Sat, 28 Jul 2012 21:59:12 +0000 (21:59 +0000)]
Add support for 88E1116R.

Sponsored by: Plat'Home, Co.,Ltd.

12 years agoAdd support for Marvell 88F6282.
Hiroki Sato [Sat, 28 Jul 2012 21:56:24 +0000 (21:56 +0000)]
Add support for Marvell 88F6282.

Sponsored by: Plat'Home, Co.,Ltd.

12 years agoHardcode the loopback rx/tx checkum options for IPv6 to on without
Bjoern A. Zeeb [Sat, 28 Jul 2012 20:31:39 +0000 (20:31 +0000)]
Hardcode the loopback rx/tx checkum options for IPv6 to on without
checking. This allows the FreeBSD 9.1 release process to move forward.
Work around the problem that loopback connections to local addresses
not on loopback interfaces and not on interfaces w/ IPv6 checksum offloading
enabled would not work.
A proper fix to allow us to disable the "checksum offload" on loopback
for testing, measurements, ... as we allow for IPv4 needs to put in
place later.

Reported by: tuexen, Matthew Seaman (m.seaman infracaninophile.co.uk)
Reported by: Mike Andrews (mandrews bit0.com), kib, ...
PR: kern/170070
MFC after: 1 day
X-MFC after: re approval

12 years agoHandle a case where we had an SRR that pushed back the
Matt Jacob [Sat, 28 Jul 2012 20:08:14 +0000 (20:08 +0000)]
Handle a case where we had an SRR that pushed back the
data pointer. This is a temp fix that resubmits the
command, adjusted, so that the backend can fetch the
data again.

Sponsored by: Spectralogic
MFC after: 1 month

12 years ago-----------
Matt Jacob [Sat, 28 Jul 2012 20:06:29 +0000 (20:06 +0000)]
-----------
MISC CHANGES

Add a new async event- ISP_TARGET_NOTIFY_ACK, that will guarantee
eventual delivery of a NOTIFY ACK. This is tons better than just
ignoring the return from isp_notify_ack and hoping for the best.

Clean up the lower level lun enable code to be a bit more sensible.

Fix a botch in isp_endcmd which was messing up the sense data.

Fix notify ack for SRR to use a sensible error code in the case
of a reject.

Clean up and make clear what kind of firmware we've loaded and
what capabilities it has.
-----------
FULL (252 byte) SENSE DATA

In CTIOs for the ISP, there's only a limimted amount of space
to load SENSE DATA for associated CHECK CONDITIONS (24 or 26
bytes). This makes it difficult to send full SENSE DATA that can
be up to 252 bytes.

Implement MODE 2 responses which have us build the FCP Response
in system memory which the ISP will put onto the wire directly.

On the initiator side, the same problem occurs in that a command
status response only has a limited amount of space for SENSE DATA.
This data is supplemented by status continuation responses that
the ISP pushes onto the response queue after the status response.
We now pull them all together so that full sense data can be
returned to the periph driver.

This is supported on 23XX, 24XX and 25XX cards.

This is also preparation for doing >16 byte CDBs.

-----------
FC TAPE

Implement full FC-TAPE on both initiator and target mode side.  This
capability is driven by firmware loaded, board type, board NVRAM
settings, or hint configuration options to enable or disable. This
is supported for 23XX, 24XX and 25XX cards.

On the initiator side, we pretty much just have to generate a command
reference number for each command we send out. This is FCP-4 compliant
in that we do this per ITL nexus to generate the allowed 1 thru 255
CRN.

In order to support the target side of FC-TAPE, we now pay attention
to more of the PRLI word 3 parameters which will tell us whether
an initiator wants confirmed responses. While we're at it, we'll
pay attention to the initiator view too and report it.

On sending back CTIOs, we will notice whether the initiator wants
confirmed responses and we'll set up flags to do so.

If a response or data frame is lost the initiator sends us an SRR
(Sequence Retransmit Request) ELS which shows up as an SRR notify
and all outstanding CTIOs are nuked with SRR Received status. The
SRR notify contains the offset that the initiator wants us to restart
the data transfer from or to retransmit the response frame.

If the ISP driver still has the CCB around for which the data segment
or response applies, it will retransmit.

However, we typically don't know about a lost data frame until we
send the FCP Response and the initiator totes up counters for data
moved and notices missing segments. In this case we've already
completed the data CCBs already and sent themn back up to the periph
driver.  Because there's no really clean mechanism yet in CAM to
handle this, a hack has been put into place to complete the CTIO
CCB with the CAM_MESSAGE_RECV status which will have a MODIFY DATA
POINTER extended message in it. The internal ISP target groks this
and ctl(8) will be modified to deal with this as well.

At any rate, the data is retransmitted and an an FCP response is
sent. The whole point here is to successfully complete a command
so that you don't have to depend on ULP (SCSI) to have to recover,
which in the case of tape is not really possible (hence the name
FC-TAPE).

Sponsored by: Spectralogic
MFC after: 1 month

12 years agoReorder things in g_gate_create() so at the moment when g_new_geomf()
Mikolaj Golub [Sat, 28 Jul 2012 16:30:50 +0000 (16:30 +0000)]
Reorder things in g_gate_create() so at the moment when g_new_geomf()
is called name is properly initialized.

Discussed with: pjd
MFC after: 2 weeks

12 years agosh: Do not ask for stopped/continued processes if we do not need them
Jilles Tjoelker [Sat, 28 Jul 2012 15:13:48 +0000 (15:13 +0000)]
sh: Do not ask for stopped/continued processes if we do not need them
rather than retrying wait3 if they happen.

12 years agosh: Inline waitproc() into its only caller.
Jilles Tjoelker [Sat, 28 Jul 2012 14:56:50 +0000 (14:56 +0000)]
sh: Inline waitproc() into its only caller.

12 years agosh: Track continued jobs (even if not continued by bg or fg).
Jilles Tjoelker [Sat, 28 Jul 2012 14:32:55 +0000 (14:32 +0000)]
sh: Track continued jobs (even if not continued by bg or fg).

This uses wait3's WCONTINUED flag.

There is no message for this. The change is visible in "jobs" or if the job
stops again.

12 years agoSimilar to what is already done for Linux, make clang not complain about
Dimitry Andric [Sat, 28 Jul 2012 13:12:57 +0000 (13:12 +0000)]
Similar to what is already done for Linux, make clang not complain about
unused -g, -emit-llvm or -w arguments when doing linking.  E.g. invoking
"clang -g foo.o -o foo" will now be silent.

Reported by: Jakub Lach <jakub_lach@mailplus.pl>
MFC after: 1 week

12 years agoSimilar to r238472, let clang pass --enable-new-dtags to the linker
Dimitry Andric [Sat, 28 Jul 2012 12:50:25 +0000 (12:50 +0000)]
Similar to r238472, let clang pass --enable-new-dtags to the linker
invocation by default.  Also make sure --hash-style=both is passed for
the same arches as gcc, e.g. arm, sparc and x86.

X-MFC-with: r238472

12 years agoMerge FreeBSD/beri Perforce change @211945 to head:
Robert Watson [Sat, 28 Jul 2012 11:09:03 +0000 (11:09 +0000)]
Merge FreeBSD/beri Perforce change @211945 to head:

Modify MIPS page table entry (PTE) initialisation so that cachability
bits are set only once, using is_cacheable_mem() to determine what
caching properties are required, rather than also unconditionally
setting PTE_C_CACHE in init_pte_prot().  As PTE_C_CACHE |
PTE_C_UNCACHED == PTE_C_CACHE, this meant that all userspace memory
mappings of device memory (incorrectly) used caching TLB entries.

This is arguably not quite what we want, even though it is (more)
consistent with the MIPS pmap design: PTE caching properties should
be derived from machine-independent page table attributes, but this
is a substantially more complex change as the MIPS pmap doesn't yet
know about page attributes, causing it to ignore requests by device
drivers that want uncached userspace memory mappings as they
describe memory-mapped FIFOs or shared memory with a device not
participating in the cache coherence scheme.

This fixes cacheability issues (specifically, undesired and
unrequested caching) seen in userspace memory mappings of Avalon SoC
bus device memory on BERI MIPS.

Discussed with: jmallett, alc
Sponsored by: DARPA, AFRL
MFC after: 3 days

12 years agoFlesh out the multi-rate retry capability.
Adrian Chadd [Sat, 28 Jul 2012 07:28:08 +0000 (07:28 +0000)]
Flesh out the multi-rate retry capability.

The existing method for testing for MRR is to call the "SetupXTXDesc"
HAL method and see if it returns AH_TRUE or AH_FALSE.  This capability
explicitly lists what number of multi-rate attempts are possible.

"1" means "one rate attempt supported".

12 years agoCommit missing #define from a previous check-in.
Adrian Chadd [Sat, 28 Jul 2012 07:25:00 +0000 (07:25 +0000)]
Commit missing #define from a previous check-in.

The AR9300 and later have an 8-deep TX FIFO for each hardware queue.

12 years agoUpdate libarchive to 3.0.4
Martin Matuska [Sat, 28 Jul 2012 06:38:44 +0000 (06:38 +0000)]
Update libarchive to 3.0.4

12 years agoFlesh out the initial TX FIFO storage for each hardware TX queue.
Adrian Chadd [Sat, 28 Jul 2012 04:42:05 +0000 (04:42 +0000)]
Flesh out the initial TX FIFO storage for each hardware TX queue.

12 years agoAdd a missing call to ath_txdma_teardown().
Adrian Chadd [Sat, 28 Jul 2012 04:40:52 +0000 (04:40 +0000)]
Add a missing call to ath_txdma_teardown().

12 years agoCorrect BUGS description of static buffer use
Ed Maste [Fri, 27 Jul 2012 21:38:14 +0000 (21:38 +0000)]
Correct BUGS description of static buffer use

Since r142667 strerror has unconditionally returned a pointer to a
static buffer.

MFC after: 1 week

12 years agoPull the tier-2 card and change the sparc64 ZFS loader to no longer probe
Marius Strobl [Fri, 27 Jul 2012 18:23:11 +0000 (18:23 +0000)]
Pull the tier-2 card and change the sparc64 ZFS loader to no longer probe
all diskN aliases for providers (which more or less corresponds to how the
x86 version behaves) but instead probe only those listed in the boot-device
OFW environment variable. This has the following advantages:
- avoids otherwise unavoidable OFW warnings about failures to open disks
  for which aliases exist but no actual hardware is connected
- avoids issues due to different diskN naming schemes
- aligns us with Solaris

MFC after: 3 days

12 years agoAdd gadget devices. Not yet added to the child lists, but here to
Warner Losh [Fri, 27 Jul 2012 17:32:01 +0000 (17:32 +0000)]
Add gadget devices.  Not yet added to the child lists, but here to
keep things from bit-rotting.

12 years agoAdd the usb device (gadget) side of things. Also add ehci bindings
Warner Losh [Fri, 27 Jul 2012 17:31:19 +0000 (17:31 +0000)]
Add the usb device (gadget) side of things.  Also add ehci bindings
while I'm here in anticipation of usb2 support for newer SoCs.

Requested by: Hans Petter Selasky

12 years agoMake this compile again. Also note that it is AT91RM9200+KB9202B
Warner Losh [Fri, 27 Jul 2012 17:28:11 +0000 (17:28 +0000)]
Make this compile again.  Also note that it is AT91RM9200+KB9202B
specific still and needs some love to make it work on anything else.

12 years agoNeither of these systems has PCI, but they do have ohci interface, so
Warner Losh [Fri, 27 Jul 2012 17:07:54 +0000 (17:07 +0000)]
Neither of these systems has PCI, but they do have ohci interface, so
fix comments.

12 years agoAdd new at91sam9g45 support and sn9g45 board to the ATMEL kernel.
Warner Losh [Fri, 27 Jul 2012 16:38:02 +0000 (16:38 +0000)]
Add new at91sam9g45 support and sn9g45 board to the ATMEL kernel.
Adapt SN9G45 board support to cope with multi-board.

12 years agoAdd version so others can depend on this module
Ed Maste [Fri, 27 Jul 2012 13:57:28 +0000 (13:57 +0000)]
Add version so others can depend on this module

12 years agoTidy up the TX status fields a little and add a couple new flags.
Adrian Chadd [Fri, 27 Jul 2012 12:08:49 +0000 (12:08 +0000)]
Tidy up the TX status fields a little and add a couple new flags.

* shuffle things around so things fall on natural padding boundaries;
* add a couple of new flags to specify LDPC and whether to switch to the
  low power RX chain configuration after this TX has completed.

Obtained from: Qualcomm Atheros

12 years agoAdd STBC TX support for AR5416 HAL chips.
Adrian Chadd [Fri, 27 Jul 2012 11:54:05 +0000 (11:54 +0000)]
Add STBC TX support for AR5416 HAL chips.

Specifically, however:

* AR9280 and later support 1-stream STBC RX;
* AR9280 and AR9287 support 1-stream STBC TX.

The STBC support isn't announced (yet) via net80211 and it isn't at all
chosen by the rate control code, so there's no real consumer of this
yet.

Obtained from: Qualcomm Atheros

12 years agoAdd a STBC TX flag.
Adrian Chadd [Fri, 27 Jul 2012 11:45:57 +0000 (11:45 +0000)]
Add a STBC TX flag.

Obtained from: Qualcomm Atheros

12 years agoAdd some comments about what the two fields mean.
Adrian Chadd [Fri, 27 Jul 2012 11:44:48 +0000 (11:44 +0000)]
Add some comments about what the two fields mean.

12 years agoIntroduce a couple more fields in the rate scenario setup as part of
Adrian Chadd [Fri, 27 Jul 2012 11:43:10 +0000 (11:43 +0000)]
Introduce a couple more fields in the rate scenario setup as part of
(future) TPC support in the AR9300 HAL.

This is effectively a no-op for the moment as (a) TPC isn't really
supported, (b) the AR9300 HAL isn't yet public, and (c) the existing
HAL code doesn't use these fields.

Obtained from: Qualcomm Atheros

12 years agoBring this API in line with what the reference driver and Linux ath9k
Adrian Chadd [Fri, 27 Jul 2012 11:23:24 +0000 (11:23 +0000)]
Bring this API in line with what the reference driver and Linux ath9k
was doing.

Obtained from: Qualcomm Atheros, Linux ath9k

12 years agouse __builtin_prefetch() for prefetch.
Luigi Rizzo [Fri, 27 Jul 2012 10:52:21 +0000 (10:52 +0000)]
use __builtin_prefetch() for prefetch.

merge in the remaining part of the linux-specific glue so i do not need
to maintain two different distributions.