]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/log
FreeBSD/stable/9.git
10 years agoMFC r262501:
delphij [Thu, 27 Mar 2014 00:24:48 +0000 (00:24 +0000)]
MFC r262501:

Refresh our implementation of OpenBSD's Blowfish password format.

Notable changes:

 - Support of $2b$ password format to address a problem where very
   long passwords (more than 256 characters, when an integer
   overflow would happen and cause the length to wrap at 256).
 - Updated pseudo code in comments to reflect the reality.
 - Removed our local shortcut of processing magic string and rely
   on the centralized and tigntened validation.
 - Diff reduction from upstream.

For now we are still generating the older $2a$ format of password
but we will migrate to the new format once the format is formally
finalized.

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

10 years agoMFC r262991:
delphij [Wed, 26 Mar 2014 23:58:17 +0000 (23:58 +0000)]
MFC r262991:

Correct a typo in nlm_find_host_by_addr(): the intention of the
code is to give "<unknown>" rather than comparing the buffer
against it.

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

10 years agoMFC r263349:
kib [Wed, 26 Mar 2014 17:00:37 +0000 (17:00 +0000)]
MFC r263349:
Make the array pointed to by AT_PAGESIZES auxv properly aligned.

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

10 years agoMFC r263312:
dim [Wed, 26 Mar 2014 07:42:43 +0000 (07:42 +0000)]
MFC r263312:

Pull in r196939 from upstream llvm trunk (by Reid Kleckner):

  Reland "Fix miscompile of MS inline assembly with stack realignment"

  This re-lands commit r196876, which was reverted in r196879.

  The tests have been fixed to pass on platforms with a stack alignment
  larger than 4.

  Update to clang side tests will land shortly.

Pull in r196986 from upstream llvm trunk (by Reid Kleckner):

  Revert the backend fatal error from r196939

  The combination of inline asm, stack realignment, and dynamic allocas
  turns out to be too common to reject out of hand.

  ASan inserts empy inline asm fragments and uses aligned allocas.
  Compiling any trivial function containing a dynamic alloca with ASan is
  enough to trigger the check.

  XFAIL the test cases that would be miscompiled and add one that uses the
  relevant functionality.

Pull in r202930 from upstream llvm trunk (by Hans Wennborg):

  Check for dynamic allocas and inline asm that clobbers sp before building
  selection dag (PR19012)

  In X86SelectionDagInfo::EmitTargetCodeForMemcpy we check with MachineFrameInfo
  to make sure that ESI isn't used as a base pointer register before we choose to
  emit rep movs (which clobbers esi).

  The problem is that MachineFrameInfo wouldn't know about dynamic allocas or
  inline asm that clobbers the stack pointer until SelectionDAGBuilder has
  encountered them.

  This patch fixes the problem by checking for such things when building the
  FunctionLoweringInfo.

  Differential Revision: http://llvm-reviews.chandlerc.com/D2954

Together, these commits fix the problem encountered in the devel/emacs
port on the i386 architecture, where a combination of stack realignment,
alloca() and memcpy() could incidentally clobber the %esi register,
leading to segfaults in the temacs build-time utility.

See also: http://llvm.org/PR18171 and http://llvm.org/PR19012

Reported by: ashish
PR: ports/183064

MFC r263313:

Pull in r203311 from upstream llvm trunk (by Arnold Schwaighofer):

  ISel: Make VSELECT selection terminate in cases where the condition type has to
  be split and the result type widened.

  When the condition of a vselect has to be split it makes no sense widening the
  vselect and thereby widening the condition. We end up in an endless loop of
  widening (vselect result type) and splitting (condition mask type) doing this.
  Instead, split both the condition and the vselect and widen the result.

  I ran this over the test suite with i686 and mattr=+sse and saw no regressions.

  Fixes PR18036.

With this fix the original problem case from the graphics/rawtherapee
port (posted in http://llvm.org/PR18036 ) now compiles within ~97MB RSS.

Reported by: mandree

MFC r263320:

Add separate patch files for all the customizations we have currently
applied to our copy of llvm/clang.  These can be applied in alphabetical
order to a pristine llvm/clang 3.4 release source tree, to result in the
same version used in FreeBSD.

This is intended to clearly document all the changes until now, which
mostly consist of cherry pickings from the respective upstream trunks,
plus a number of hand-written FreeBSD-specific ones.  Hopefully those
can eventually be cleaned up and sent upstream too.

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

10 years agoMFC r262613:
dim [Wed, 26 Mar 2014 07:35:24 +0000 (07:35 +0000)]
MFC r262613:

Merge the projects/clang-sparc64 branch back to head.  This brings in
several updates from the llvm and clang trunks to make the sparc64
backend fully functional.

Apart from one patch to sys/sparc64/include/pcpu.h which is still under
discussion, this makes it possible to let clang fully build world and
kernel for sparc64.

Any assistance with testing this on actual sparc64 hardware is greatly
appreciated, as there will unavoidably be bugs left.

Many thanks go to Roman Divacky for his upstream work on getting the
sparc64 backend into shape.

MFC r262985:

Repair a few minor mismerges from r262261 in the clang-sparc64 project
branch.  This is also to minimize differences with upstream.

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

10 years agoMFC r243322 (by marcel):
dim [Tue, 25 Mar 2014 22:43:34 +0000 (22:43 +0000)]
MFC r243322 (by marcel):

Unbreak amd64 cross-build where amd64 is the target. While clang
may be installed as cc and we don't need to build gcc as a
cross-tools, we still build gcc and thus need cc_tools built
as a build tool. Not doing this results in building gengenrtl with
the target compiler while we need to run it on the build machine.

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

10 years agoMFH (r256768): don't report an error for no-op add / remove
des [Tue, 25 Mar 2014 15:35:33 +0000 (15:35 +0000)]
MFH (r256768): don't report an error for no-op add / remove

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

10 years agoMFC r257824,257826-257830,258411: Updates to sysrc(8)
dteske [Tue, 25 Mar 2014 04:40:41 +0000 (04:40 +0000)]
MFC r257824,257826-257830,258411: Updates to sysrc(8)
257824: Fix a bug with `-d' form working as documented
257826: Add `--version' long option
257827: Add a `-c' option for `check only'
257828: Comments and whitespace
257829: Fix a bug with `-e' introduced by above 257828
257830: Document SYSRC_VERBOSE enviroment variable in the manual
258411: Revert the above 257830 (both merged to get .Dd bump in man-page)

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

10 years agoMerge missing mergeinfo.
dteske [Tue, 25 Mar 2014 04:29:57 +0000 (04:29 +0000)]
Merge missing mergeinfo.

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

10 years agoMFC r258270:
dteske [Tue, 25 Mar 2014 03:30:44 +0000 (03:30 +0000)]
MFC r258270:

Add a try-include word (which acts the same as "include") and use it to
conditionally include (but ignore failures) /boot/loader.rc.local and
/boot/menu.rc.local -- to make customizing the menu easier.

Reviewed by: alfred
Discussed on: -hackers

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

10 years agoMFC r258269: Refactor draw-beastie function.
dteske [Tue, 25 Mar 2014 03:25:30 +0000 (03:25 +0000)]
MFC r258269: Refactor draw-beastie function.

Discussed on: -hackers

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

10 years agoMFC r257821:
dteske [Tue, 25 Mar 2014 03:23:06 +0000 (03:23 +0000)]
MFC r257821:

Extend loader_delay as-documented in beastie.4th(8) and delay.4th(8),
making it available to architectures that do not use or load the beastie
menu. This is reported to save headaches on some PPC systems where unload
followed by load does not produce the desired results wherein if-given
the opportunity to abort the initial loading sequence, you can customize
the first load.

Reviewed by: nwhitehorn, kan
Discussed on: -current

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

10 years agoMFC r257650:
dteske [Tue, 25 Mar 2014 03:19:03 +0000 (03:19 +0000)]
MFC r257650:

Defer loading of kernel and modules if the beastie menu is enabled. Add a
kernel selection menu to the beastie menu. List of kernels is taken from
`kernels' in loader.conf(5) as a space (or comma) separated list of names
to display (up to 9). If not set, default value is "kernel kernel.old".
Does not validate that kernels exist because the next enhancement will be
to allow selection of the root device.

Discussed on: -current

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

10 years agoMFC r263289: Update NetBSD Foundation copyrights to 2-clause BSD
emaste [Mon, 24 Mar 2014 13:50:11 +0000 (13:50 +0000)]
MFC r263289: Update NetBSD Foundation copyrights to 2-clause BSD

  The NetBSD Foundation states "Third parties are encouraged to change the
  license on any files which have a 4-clause license contributed to the
  NetBSD Foundation to a 2-clause license."

  This change removes clauses 3 and 4 from copyright / license blocks that
  list The NetBSD Foundation as the only copyright holder.

Sponsored by: The FreeBSD Foundation

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

10 years agoMFC r263471:
kib [Mon, 24 Mar 2014 12:41:00 +0000 (12:41 +0000)]
MFC r263471:
Initialize vm_map_entry member wiring_thread on the map entry creation.

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

10 years agoTurn off the tribute branding, now that we will soon be entering the
gjb [Mon, 24 Mar 2014 00:50:12 +0000 (00:50 +0000)]
Turn off the tribute branding, now that we will soon be entering the
9.3-RELEASE cycle.

This is a direct commit to stable/9.

Sponsored by: The FreeBSD Foundation

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

10 years agoMFC: r263441:
pfg [Sun, 23 Mar 2014 19:50:36 +0000 (19:50 +0000)]
MFC: r263441:

msdosfs: minor format fix - spaces vs tab

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

10 years agoTurn off warnings for building aicasm. Various versions of yacc exist,
dim [Sun, 23 Mar 2014 14:18:40 +0000 (14:18 +0000)]
Turn off warnings for building aicasm.  Various versions of yacc exist,
which can result in different warnings-as-errors in this tool, but these
are all completely harmless.

This is a direct commit to stable/7, stable/8, stable/9 and stable/10,
since this kernel build tool has already been removed in head.

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

10 years agoMFC: r262273
brueffer [Sun, 23 Mar 2014 13:03:46 +0000 (13:03 +0000)]
MFC: r262273

Further refine the auth fail regex to catch more auth failures and
reduce false positives.

The committed patch was provided by Christian Marg.

PR: 91732
Submitted by: Daniel O'Connor <doconnor at gsoft.com.au>
     Skye Poier <spoier at gmail.com>
     Alan Amesbury <amesbury at umn.edu>
     Christian Marg <marg at rz.tu-clausthal.de>

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

10 years agoMFC r263159:
hselasky [Sat, 22 Mar 2014 17:20:10 +0000 (17:20 +0000)]
MFC r263159:
Workaround for USB MIDI adapters which use non-supported values of
wMaxPacketSize for BULK endpoints.

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

10 years agoMFC r263155:
hselasky [Sat, 22 Mar 2014 17:12:06 +0000 (17:12 +0000)]
MFC r263155:
Add support for more sample rates to USB audio driver.

PR: usb/171254

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

10 years agoMFC: r255425
nyan [Sat, 22 Mar 2014 13:58:06 +0000 (13:58 +0000)]
MFC: r255425

  The correct variable is apparently MACHINE_ARCH, not TARGET_ARCH.

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

10 years agoMFC of 263062:
mckusick [Sat, 22 Mar 2014 11:49:44 +0000 (11:49 +0000)]
MFC of 263062:

Avoid segment fault when attempting to clean up cylinder group
buffer cache.

PR:             187221
Submitted by:   Petr Lampa <lampa@fit.vutbr.cz>
Obtained from:  Petr Lampa <lampa@fit.vutbr.cz>
MFC after:      1 week

MFC of 262488:

Arguments for malloc and calloc should be size_t, not int.
Use proper bounds check when trying to free cached memory.

Spotted by: Xin Li
Tested by:  Dmitry Sivachenko
MFC after:  2 weeks

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

10 years agoMFC r263181:
bdrewery [Sat, 22 Mar 2014 10:54:02 +0000 (10:54 +0000)]
MFC r263181:

  Fix ASSUME_ALWAYS_YES not being parsed properly from config after UCL conversion.

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

10 years agoRevert r263625 to fix commit msg for blame
bdrewery [Sat, 22 Mar 2014 10:53:30 +0000 (10:53 +0000)]
Revert r263625 to fix commit msg for blame

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

10 years agoMFC r263180:
bdrewery [Sat, 22 Mar 2014 10:48:07 +0000 (10:48 +0000)]
MFC r263180:

  Fix ABI from /usr/local/etc/pkg.conf not being respected.

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

10 years agoMFC r263180:
bdrewery [Sat, 22 Mar 2014 10:44:42 +0000 (10:44 +0000)]
MFC r263180:

  Fix ABI from /usr/local/etc/pkg.conf not being respected.

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

10 years agoGratuitous copyright bump for files that will be changed for
gjb [Sat, 22 Mar 2014 02:30:38 +0000 (02:30 +0000)]
Gratuitous copyright bump for files that will be changed for
the 9.3-RELEASE cycle.

Sponsored by: The FreeBSD Foundation

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

10 years agoReplace 'FreeBSD' with &os; macro.
gjb [Sat, 22 Mar 2014 02:15:34 +0000 (02:15 +0000)]
Replace 'FreeBSD' with &os; macro.

Sponsored by: The FreeBSD Foundation

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

10 years agoWrap long lines.
gjb [Sat, 22 Mar 2014 02:15:32 +0000 (02:15 +0000)]
Wrap long lines.
Fix case in titles.

Sponsored by: The FreeBSD Foundation

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

10 years agoWrap long lines.
gjb [Sat, 22 Mar 2014 02:15:30 +0000 (02:15 +0000)]
Wrap long lines.

Sponsored by: The FreeBSD Foundation

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

10 years agoFix a typo.
gjb [Sat, 22 Mar 2014 02:06:13 +0000 (02:06 +0000)]
Fix a typo.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r255934.
gjb [Sat, 22 Mar 2014 02:06:11 +0000 (02:06 +0000)]
Document r255934.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r256033.
gjb [Sat, 22 Mar 2014 02:01:33 +0000 (02:01 +0000)]
Document r256033.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r256054.
gjb [Sat, 22 Mar 2014 02:01:31 +0000 (02:01 +0000)]
Document r256054.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r256437.
gjb [Sat, 22 Mar 2014 02:01:29 +0000 (02:01 +0000)]
Document r256437.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r256759.
gjb [Sat, 22 Mar 2014 02:01:27 +0000 (02:01 +0000)]
Document r256759.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r256917.
gjb [Sat, 22 Mar 2014 02:01:25 +0000 (02:01 +0000)]
Document r256917.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r256924.
gjb [Sat, 22 Mar 2014 02:01:22 +0000 (02:01 +0000)]
Document r256924.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r257119.
gjb [Sat, 22 Mar 2014 01:30:31 +0000 (01:30 +0000)]
Document r257119.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r257125.
gjb [Sat, 22 Mar 2014 01:30:29 +0000 (01:30 +0000)]
Document r257125.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r257126.
gjb [Sat, 22 Mar 2014 01:30:27 +0000 (01:30 +0000)]
Document r257126.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r257253.
gjb [Sat, 22 Mar 2014 01:30:24 +0000 (01:30 +0000)]
Document r257253.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r257373.
gjb [Sat, 22 Mar 2014 01:20:51 +0000 (01:20 +0000)]
Document r257373.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r257496.
gjb [Sat, 22 Mar 2014 01:20:49 +0000 (01:20 +0000)]
Document r257496.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r257611.
gjb [Sat, 22 Mar 2014 01:20:47 +0000 (01:20 +0000)]
Document r257611.

Sponsored by: The FreeBSD Foundation

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

10 years agoAdd r257614 to note about previous commit.
gjb [Sat, 22 Mar 2014 01:20:45 +0000 (01:20 +0000)]
Add r257614 to note about previous commit.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r257616.
gjb [Sat, 22 Mar 2014 01:20:42 +0000 (01:20 +0000)]
Document r257616.

Sponsored by: The FreeBSD Foundation

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

10 years agoNote that r257618 is preliminary support.
gjb [Sat, 22 Mar 2014 01:20:40 +0000 (01:20 +0000)]
Note that r257618 is preliminary support.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r257618.
gjb [Sat, 22 Mar 2014 01:20:38 +0000 (01:20 +0000)]
Document r257618.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258183.
gjb [Sat, 22 Mar 2014 01:02:53 +0000 (01:02 +0000)]
Document r258183.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258214.
gjb [Sat, 22 Mar 2014 01:02:51 +0000 (01:02 +0000)]
Document r258214.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258215.
gjb [Sat, 22 Mar 2014 01:02:48 +0000 (01:02 +0000)]
Document r258215.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258217.
gjb [Sat, 22 Mar 2014 01:02:46 +0000 (01:02 +0000)]
Document r258217.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258586.
gjb [Sat, 22 Mar 2014 00:47:09 +0000 (00:47 +0000)]
Document r258586.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258635.
gjb [Sat, 22 Mar 2014 00:47:07 +0000 (00:47 +0000)]
Document r258635.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258818.
gjb [Sat, 22 Mar 2014 00:47:05 +0000 (00:47 +0000)]
Document r258818.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258818.
gjb [Sat, 22 Mar 2014 00:20:51 +0000 (00:20 +0000)]
Document r258818.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258844.
gjb [Sat, 22 Mar 2014 00:20:49 +0000 (00:20 +0000)]
Document r258844.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r263582.
gjb [Sat, 22 Mar 2014 00:20:47 +0000 (00:20 +0000)]
Document r263582.

Sponsored by: The FreeBSD Foundation

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

10 years agoMFC 262999
edavis [Fri, 21 Mar 2014 23:09:02 +0000 (23:09 +0000)]
MFC 262999
Fixed MSI interrupt allocation and handling.
Fixed a DMA mapping leak that occurs when defragmenting packet chains.

Approved by:    davidch (mentor)

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

10 years agoDocument r258870.
gjb [Fri, 21 Mar 2014 22:57:15 +0000 (22:57 +0000)]
Document r258870.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258898.
gjb [Fri, 21 Mar 2014 22:57:13 +0000 (22:57 +0000)]
Document r258898.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258898.
gjb [Fri, 21 Mar 2014 22:57:11 +0000 (22:57 +0000)]
Document r258898.

Sponsored by: The FreeBSD Foundation

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

10 years agoReword r258962 entry to specify the affected driver.
gjb [Fri, 21 Mar 2014 22:57:09 +0000 (22:57 +0000)]
Reword r258962 entry to specify the affected driver.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258962.
gjb [Fri, 21 Mar 2014 22:57:07 +0000 (22:57 +0000)]
Document r258962.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258965.
gjb [Fri, 21 Mar 2014 22:57:05 +0000 (22:57 +0000)]
Document r258965.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r258967.
gjb [Fri, 21 Mar 2014 22:57:04 +0000 (22:57 +0000)]
Document r258967.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r259002.
gjb [Fri, 21 Mar 2014 22:57:02 +0000 (22:57 +0000)]
Document r259002.

Sponsored by: The FreeBSD Foundation

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

10 years agoFix the wording of the gss_pseudo_random() note.
gjb [Fri, 21 Mar 2014 22:40:16 +0000 (22:40 +0000)]
Fix the wording of the gss_pseudo_random() note.

Sponsored by: The FreeBSD Foundation

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

10 years agoUpdate the URL for the installation.html page.
gjb [Fri, 21 Mar 2014 22:38:25 +0000 (22:38 +0000)]
Update the URL for the installation.html page.
Since this does not exist yet, comment the reference for now.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r259243.
gjb [Fri, 21 Mar 2014 22:32:16 +0000 (22:32 +0000)]
Document r259243.

Sponsored by: The FreeBSD Foundation

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

10 years agoReference r259269 in the gcc(1) note.
gjb [Fri, 21 Mar 2014 22:32:14 +0000 (22:32 +0000)]
Reference r259269 in the gcc(1) note.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r259406.
gjb [Fri, 21 Mar 2014 22:32:12 +0000 (22:32 +0000)]
Document r259406.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r259448.
gjb [Fri, 21 Mar 2014 22:32:10 +0000 (22:32 +0000)]
Document r259448.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r259457.
gjb [Fri, 21 Mar 2014 22:32:08 +0000 (22:32 +0000)]
Document r259457.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r259460.
gjb [Fri, 21 Mar 2014 22:32:06 +0000 (22:32 +0000)]
Document r259460.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r259466.
gjb [Fri, 21 Mar 2014 22:32:04 +0000 (22:32 +0000)]
Document r259466.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r259519.
gjb [Fri, 21 Mar 2014 22:32:02 +0000 (22:32 +0000)]
Document r259519.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260007.
gjb [Fri, 21 Mar 2014 22:32:00 +0000 (22:32 +0000)]
Document r260007.

Sponsored by: The FreeBSD Foundation

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

10 years agoMFC 239138 (by andrew):
dim [Fri, 21 Mar 2014 21:59:11 +0000 (21:59 +0000)]
MFC 239138 (by andrew):

Import compiler-rt r160957.

This is mostly a no-op other than for ARM where it adds missing
__aeabi_mem* and __aeabi_*divmod functions. Even on ARM these will remain
unused until the rest of the ARM EABI code is merged.

MFC 245628 (by andrew):

Import compiler-rt r172839.

This brings in __aeabi_lcmp and __aeabi_ulcmp. It also fixes the spelling
of __aeabi_f2lz. Both changes originated on the arm_eabi project branch.

MFC 245641:

Add a newline at the end of the file to stop gcc from complaining

MFC 245642 (by andrew):

Don't use the pcs attribute on compilers that don't support it. We can
revert this when we stop supporting old versions of gcc.

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

10 years agoDocument r260082.
gjb [Fri, 21 Mar 2014 21:50:23 +0000 (21:50 +0000)]
Document r260082.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260119.
gjb [Fri, 21 Mar 2014 21:50:21 +0000 (21:50 +0000)]
Document r260119.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260134.
gjb [Fri, 21 Mar 2014 21:50:20 +0000 (21:50 +0000)]
Document r260134.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260197.
gjb [Fri, 21 Mar 2014 21:50:18 +0000 (21:50 +0000)]
Document r260197.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260208.
gjb [Fri, 21 Mar 2014 21:50:16 +0000 (21:50 +0000)]
Document r260208.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260252.
gjb [Fri, 21 Mar 2014 21:50:14 +0000 (21:50 +0000)]
Document r260252.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260432.
gjb [Fri, 21 Mar 2014 21:50:12 +0000 (21:50 +0000)]
Document r260432.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260433.
gjb [Fri, 21 Mar 2014 21:23:07 +0000 (21:23 +0000)]
Document r260433.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260507.
gjb [Fri, 21 Mar 2014 21:23:05 +0000 (21:23 +0000)]
Document r260507.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260642, FreeBSD-SA-14:01.bsnmpd.
gjb [Fri, 21 Mar 2014 21:23:03 +0000 (21:23 +0000)]
Document r260642, FreeBSD-SA-14:01.bsnmpd.

Sponsored by: The FreeBSD Foundation

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

10 years agoFix SA sorting.
gjb [Fri, 21 Mar 2014 21:23:02 +0000 (21:23 +0000)]
Fix SA sorting.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260643, FreeBSD-SA-14:02.ntpd.
gjb [Fri, 21 Mar 2014 21:23:00 +0000 (21:23 +0000)]
Document r260643, FreeBSD-SA-14:02.ntpd.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260644.
gjb [Fri, 21 Mar 2014 21:22:58 +0000 (21:22 +0000)]
Document r260644.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260646, FreeBSD-SA-14:04.bind.
gjb [Fri, 21 Mar 2014 21:05:46 +0000 (21:05 +0000)]
Document r260646, FreeBSD-SA-14:04.bind.
Prune the SA list from stale entries.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260650.
gjb [Fri, 21 Mar 2014 21:05:45 +0000 (21:05 +0000)]
Document r260650.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260651.
gjb [Fri, 21 Mar 2014 21:05:43 +0000 (21:05 +0000)]
Document r260651.

Sponsored by: The FreeBSD Foundation

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

10 years agoMFC r232491 by tijl:
emaste [Fri, 21 Mar 2014 20:21:23 +0000 (20:21 +0000)]
MFC r232491 by tijl:

  Copy amd64 float.h to x86 and merge with i386 float.h. Replace
  amd64/i386/pc98 float.h with stubs.

MFC (part of) r235939 by obrien:

  Consitently use "__LP64__".
  [there are 33 __LP64__'s in the kernel (minus cddl/ and contrib/),
  and 11 _LP64's]

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260868, r260869.
gjb [Fri, 21 Mar 2014 20:09:30 +0000 (20:09 +0000)]
Document r260868, r260869.

Sponsored by: The FreeBSD Foundation

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

10 years agoDocument r260891.
gjb [Fri, 21 Mar 2014 20:09:28 +0000 (20:09 +0000)]
Document r260891.

Sponsored by: The FreeBSD Foundation

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