]> CyberLeo.Net >> Repos - FreeBSD/releng/10.1.git/log
FreeBSD/releng/10.1.git
9 years agoMFS10 r272883
smh [Thu, 16 Oct 2014 08:39:44 +0000 (08:39 +0000)]
MFS10 r272883
MFC r272474
Fix ZFS ZVOL deadlock and rename issues

Approved by: re@ (delphij)
Sponsored by: Multiplay

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273162 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFC r273109:
mjg [Wed, 15 Oct 2014 16:54:18 +0000 (16:54 +0000)]
MFC r273109:

fget_unlocked currently reads 'fde' which is a structure consisting of
serveral fields. In effect the read is inatomic and may result in
obtaining file pointer with stale or incorrect capabilities.

Example race is with dup2.

Side effect is that capability checks can be circumvented.

Fix the problem with introduction of sequence counters.

MFC r269023,r272503,r272505,r272523,r272567,r272569,r272574:

Prepare fget_unlocked for reading fd table only once.

Some capsicum functions accept fdp + fd and lookup fde based on that.
Add variants which accept fde.

===============================

Add sequence counters with memory barriers.

Current implementation is somewhat simplistic and hackish,
will be improved later after possible memory barrier overhaul.

===============================

Plug capability races.

fp and appropriate capability lookups were not atomic, which could result in
improper capabilities being checked.

This could result either in protection bypass or in a spurious ENOTCAPABLE.

Make fp + capability check atomic with the help of sequence counters.

===============================

Put and #ifdef _KERNEL around the #include for opt_capsicum.h to
hopefully allow the build to finish after r272505.

===============================

filedesc: fix up breakage introduced in 272505

Include sequence counter supports incoditionally [1]. This fixes reprted build
problems with e.g. nvidia driver due to missing opt_capsicum.h.

Replace fishy looking sizeof with offsetof. Make fde_seq the last member in
order to simplify calculations.

===============================

Keep struct filedescent comments within 80-char limit.

===============================

seq_t needs to be visible to userspace

Approved by: re (kib)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273137 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMake external NFS clients know when files have their attributes changed and
araujo [Wed, 15 Oct 2014 06:31:08 +0000 (06:31 +0000)]
Make external NFS clients know when files have their attributes changed and
avoid cache the file's state indefinitely. The va_filerev is what is sent
to the client as the "change" attribute, the client is periodically fetching
the attributes and without this option the attribute remains as some garbage
value.

Reported by: Kevin Buhr <buhr@asaurus.net>
Reviewed by: delphij
Approved by: re (gjb), delphij
Obtained from: r272467

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273122 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoUpdate the pkg(8) repository configuration file for the
gjb [Wed, 15 Oct 2014 05:24:43 +0000 (05:24 +0000)]
Update the pkg(8) repository configuration file for the
dvd package set 10.1-RELEASE to use the release packages.

This is a direct commit to releng/10.1.

Approved by: re (rodrigc)
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273120 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMF10 r273000 (r272750 in head)
tuexen [Tue, 14 Oct 2014 19:38:31 +0000 (19:38 +0000)]
MF10 r273000 (r272750 in head)
Ensure that the number of stream reported in srs_number_streams is
consistent with the amount of data provided in the SCTP_RESET_STREAMS
socket option.
Thanks to Peter Bostroem from Google for drawing my attention to
this part of the code.

MF10 r273001 (r272751 in head):
Ensure that the list of streams sent in a stream reset parameter fits
in an mbuf-cluster.
Thanks to Peter Bostroem for drawing my attention to this part of the code.

MF10 r273002 (r272841 in head):
Ensure that the flags field of sctp_tmit_chunks is initialized.
Thanks to Peter Bostroem from Google for reporting the issue.

Approved by: re (marius)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273106 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agovt(4): Don't recalculate buffer size if we don't know screen size
dumbbell [Tue, 14 Oct 2014 19:10:00 +0000 (19:10 +0000)]
vt(4): Don't recalculate buffer size if we don't know screen size

MF10: r273037
MFC: r272537

When the screen size is unknown, it's set to 0x0. We can't use that as
the buffer size, otherwise, functions such as vtbuf_fill() will fail.

This fixes a panic on RaspberryPi, where there's no vt(4) backend
configured early in boot.

PR: 193981
Tested by: danilo@
Approved by: re (marius)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273104 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agovt(4): Save/restore keyboard mode & LED states when switching window
dumbbell [Tue, 14 Oct 2014 19:01:11 +0000 (19:01 +0000)]
vt(4): Save/restore keyboard mode & LED states when switching window

MF10: r273036
MFC: r272416

Add new functions to manipulate these mode & state, instead of calling
kbdd_ioctl() everyhere.

This fixes at least two bugs:

    1. The state of the Scroll Lock LED and the state of scroll mode
       could be out-of-sync. For instance, if one enables scroll mode on
       window #1 and switches to window #2, the LED would remain on, but
       the window wouldn't be in scroll mode.

       Similarily, when switching between a console and an X.Org
       session, the LED states could be inconsistent with the real
       state.

    2. When exiting from an X.Org session, the user could be unable to
       type anything. The workaround was to switch to another console
       window and come back.

Differential Revision: https://reviews.freebsd.org/D821
Reviewed by: ray@
Approved by: re (marius), ray@
Tested by: kwm@

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273103 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFstable10 r273080:
gjb [Tue, 14 Oct 2014 17:13:47 +0000 (17:13 +0000)]
MFstable10 r273080:

MFC r272414:
  Merge the following revisions from ^/projects/release-vmimage:

  r272234, r272236, r272262, r272264, r272269, r272271, r272272,
  r272277, r272279, r272376, r272380, r272381, r272392, r272234,
  r272412:

  r272234:
    Initial commit to include virtual machine images as part
    of the FreeBSD release builds.

    This adds a make(1) environment variable requirement,
    WITH_VMIMAGES, which triggers the virtual machine image
    targets when not defined to an empty value.

    Relevant user-driven variables include:

     o VMFORMATS: The virtual machine image formats to create.
       Valid formats are provided by running 'mkimg --formats'

     o VMSIZE: The size of the resulting virtual machine
       image.  Typical compression is roughly 140Mb, regardless
       of the target size (10GB, 15GB, 20GB, 40GB sizes have been
       tested with the same result).

     o VMBASE: The prefix of the virtual machine disk images.
       The VMBASE make(1) environment variable is suffixed with
       each format in VMFORMATS for each individual disk image, as
       well as '.img' for the source UFS filesystem passed to
       mkimg(1).

    This also includes a new script, mk-vmimage.sh, based on how
    the VM images for 10.0-RELEASE, 9.3-RELEASE, and 10.1-RELEASE
    were created (mk-vmimage.sh in ^/user/gjb/thermite/).

    With the order in which the stages need to occur, as well as
    sanity-checking error cases, it makes much more sense to
    execute a shell script called from make(1), using env(1) to
    set specific parameters for the target image than it does to
    do this in make(1) directly.

  r272236:
    Use VMBASE in place of a hard-coded filename in the CLEANFILES
    list.

  r272262:
    Remove a 'set -x' that snuck in during testing.

  r272264:
    release/Makefile:
      Connect the virtual machine image build to the release
      target if WITH_VMIMAGES is set to a non-empty value.

    release/release.sh:
      Add WITH_VMIMAGES to RELEASE_RMAKEFLAGS.

    release/release.conf.sample:
      Add commented entries for tuning the release build if the
      WITH_VMIMAGES make(1) environment variable is set to
      a non-empty value.

  r272269:
    release/Makefile:
      Include .OBJDIR in DESTDIR in the vm-base target.

    release/release.sh:
      Provide the full path to mddev.

  r272271:
    Fix UFS label for the root filesystem.

  r272272:
    Remove comments left in accidentally while testing, so the
    VM /etc/fstab is actually created.

  r272277:
    Remove the UFS label from the root filesystem since it is added
    by mkimg(1) as a gpt label, consistent with the fstab(5) entry.

  r272279:
    Comment cleanup in panic() message when mkimg(1) does not support
    the requested disk image format.

  r272376:
    Separate release/scripts/mk-vmimage.sh to machine-specific
    scripts, making it possible to mimic the functionality for
    non-x86 targets.

    Move echo output if MAKEFLAGS is empty outside of usage().

    Remove TARGET/TARGET_ARCH evaluation.

  r272380:
    Avoid using env(1) to set values passed to mk-vmimage.sh,
    and instead pass the values as arguments to the script,
    making it easier to run this by hand, without 'make release'.

    Add usage_vm_base() and usage_vm_image() usage helpers.

  r272381:
    After evaluating WITH_VMIMAGES is non-empty, ensure
    the mk-vmimage.sh script exists before running it.

  r272392:
    Add WITH_COMPRESSED_VMIMAGES variable, which when set enables
    xz(1) compression of the virtual machine images.

    This is intentionally separate to allow more fine-grained
    tuning over which images are compressed, especially in cases
    where compressing 20GB sparse images can take hours.

  r272412:
    Document the new 'vm-image' target, and associated release.conf
    variables.

  r272413:
    Remove two stray comments added during the initial iterations
    of testing, no longer needed.

Approved by: re (marius)
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273101 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFC r272907:
kib [Tue, 14 Oct 2014 16:28:37 +0000 (16:28 +0000)]
MFC r272907:
Make MAP_NOSYNC handling in the vm_fault() read-locked object path
compatible with write-locked path.

Approved by: re (marius)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273099 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMF10 r272774:
marcel [Tue, 14 Oct 2014 16:11:23 +0000 (16:11 +0000)]
MF10 r272774:
Add 3 long options (--version, --formats & --schemes) for getting
information about mkimg itself.

mkimg version: 20140927

Requested by: gjb
Approved by: re (marius)
Relnotes: yes

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273098 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoFix rendering of a URL.
gjb [Tue, 14 Oct 2014 12:49:49 +0000 (12:49 +0000)]
Fix rendering of a URL.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273083 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years ago- Correct the FreeBSD release displayed on the 10.1-R errata
gjb [Tue, 14 Oct 2014 12:40:52 +0000 (12:40 +0000)]
- Correct the FreeBSD release displayed on the 10.1-R errata
  page.
- Trim stale errata items from 10.0-RELEASE, but keep the
  entry regarding FreeBSD/i386 on VirtualBox, as I am unsure
  if the underlying cause was identified and/or corrected.
- Fix a few occurances of 'release.prev' macros that should
  be 'release.current'. [1]
- Switch release.ent entities to reflect a release, and update
  versions where appropriate.

Submitted by: pluknet [1]
Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273082 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFS r272577,r272577:
bdrewery [Mon, 13 Oct 2014 14:52:54 +0000 (14:52 +0000)]
MFS r272577,r272577:

- Add $netif_ipexpand_max to specify the upper limit for the number of
  addresses generated by an address range specification.  The default value
  is 2048.  This can be increased by setting $netif_ipexpand_max in rc.conf.

PR: 186841
Approved by: re (hrs)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273039 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFS: r272543 (r271351 on HEAD)
alc [Sun, 12 Oct 2014 18:53:45 +0000 (18:53 +0000)]
MFS: r272543 (r271351 on HEAD)
  Fix a boundary case error in vm_reserv_alloc_contig().

Approved by: re (kib)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@273007 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFC r272627:
tuexen [Sun, 12 Oct 2014 17:07:15 +0000 (17:07 +0000)]
MFC r272627:
Checksum coverage values larger than 65535 for UDPLite are invalid.
Check for this when the user calls setsockopt using UDPLITE_{SEND,RECV}CSCOV.

MFC r272628:
When plen != ulen, it should only be checked when this is UDP.

MFC r272645:
If the checksum coverage field in the UDPLITE header is the length
of the complete UDPLITE packet, the packet has full checksum coverage.
So fix the condition.

MFC r272660:
UDPLite requires a checksum. Therefore, discard a received packet if
the checksum is 0.

MFC r272661:
The default for UDPLITE_RECV_CSCOV is zero. RFC 3828 recommend
that this means full checksum coverage for received packets.
If an application is willing to accept packets with partial
coverage, it is expected to use the socket option and provide
the minimum coverage it accepts.

MFC r272662:
Fix the checksum computation for UDPLite/IPv6. This requires the
usage of a function computing the checksum only over a part of the function.
Therefore introduce in6_cksum_partial() and implement in6_cksum() based
on that.
While there, ensure that the UDPLite packet contains at least enough bytes
to contain the header.

MFC r272663:
Check for UDP/IPv6 packets that the length in the UDP header is at least
the minimum. Make the check similar to the one for UDPLite/IPv6.

MFC r272664:
UDP/IPv6 and UDPLite/IPv6 require a checksum. So check for it.

MFC r272754:
Fix a bug introduced in
https://svnweb.freebsd.org/base?view=revision&revision=272347

Approved by: re (gjb)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272991 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFS r272892 (r272713 in head):
bz [Sun, 12 Oct 2014 10:39:59 +0000 (10:39 +0000)]
MFS r272892 (r272713 in head):

 Since introducing the extra mapping in r250103 (head) for architectural performance
 events we have actually counted 'Branch Instruction Retired' when people
 asked for 'Unhalted core cycles' using the 'unhalted-core-cycles' event mask
 mnemonic.

 Reviewed by: jimharris
 Discussed with: gnn, rwatson
Sponsored by: DARPA/AFRL
Approved by: re (gjb)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272981 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFS r272922: Correct scale factor for T terabyte suffix
emaste [Sun, 12 Oct 2014 00:34:18 +0000 (00:34 +0000)]
MFS r272922: Correct scale factor for T terabyte suffix

PR: 194250
Approved by: re

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272975 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoUpdate releng/10.1 to -RC2 as part of the 10.1-RELEASE cycle.
gjb [Fri, 10 Oct 2014 00:24:45 +0000 (00:24 +0000)]
Update releng/10.1 to -RC2 as part of the 10.1-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272876 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMF10 r272773: Add QCOW v1 & v2 support
marcel [Thu, 9 Oct 2014 13:36:37 +0000 (13:36 +0000)]
MF10 r272773: Add QCOW v1 & v2 support

Requested by: gjb@
Approved by: re (marius)
Relnotes: yes

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272819 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFC r272270:
neel [Wed, 8 Oct 2014 15:39:24 +0000 (15:39 +0000)]
MFC r272270:

tty_rel_free() can be called more than once for the same tty so make sure
that the tty is dequeued from 'tty_list' only the first time.

Approved by: re (glebius)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272752 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFC r272224: Fix page length reported for Block Limits VPD page.
mav [Tue, 7 Oct 2014 10:36:06 +0000 (10:36 +0000)]
MFC r272224:  Fix page length reported for Block Limits VPD page.

Approved by: re (marius)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272684 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFC r272549:
rodrigc [Tue, 7 Oct 2014 08:23:37 +0000 (08:23 +0000)]
MFC r272549:

Fix pkill unit test

Approved by: re (gjb)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272682 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFC r272308: Fix old iSCSI initiator to work with new CAM locking.
mav [Mon, 6 Oct 2014 20:38:55 +0000 (20:38 +0000)]
MFC r272308: Fix old iSCSI initiator to work with new CAM locking.

This switches code to using xpt_rescan() routine, irrelevant to locking.
Using xpt_action() directly requires knowledge about higher level locks,
that SIM does not need to have.

This code is obsolete, but that is not a reason to crash.

Approved by: re (marius)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272669 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFC r272480:
hselasky [Mon, 6 Oct 2014 12:08:47 +0000 (12:08 +0000)]
MFC r272480:
When we fail to get a USB reference we should just return, because
there are no more references held.

Approved by: re, marius

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272612 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFC: r272398
bapt [Mon, 6 Oct 2014 12:08:14 +0000 (12:08 +0000)]
MFC: r272398

Make sure to not skip any argument when converting from deprecated
+POS1, -POS2 to -kPOS1,POS2, so that sort +0n gets translated to sort -k1,1n
as it is expected

PR: 193994
Submitted by: rodrigo
Approved by: re (marius)

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272611 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoMFC r272349, r272422 and r272479:
hselasky [Mon, 6 Oct 2014 11:05:56 +0000 (11:05 +0000)]
MFC r272349, r272422 and r272479:
- Fix XHCI driver for devices which have more than 15 physical root HUB
  ports. The current bitmap array was too small to hold more than 16
  bits and would at some point toggle the context size, which then would
  trigger an enumeration fault and cause a fallback to the EHCI
  companion controller, if any.
- Make sure we always set the maximum number of valid contexts.
- Set default cycle state in case of early interrupts.

Approved by: re, marius

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272608 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoBump __FreeBSD_version after releng/10.1 branch.
gjb [Fri, 3 Oct 2014 00:58:34 +0000 (00:58 +0000)]
Bump __FreeBSD_version after releng/10.1 branch.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272463 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoClean vestigial svn:mergeinfo from stable/10 -> releng/10.1
gjb [Fri, 3 Oct 2014 00:52:20 +0000 (00:52 +0000)]
Clean vestigial svn:mergeinfo from stable/10 -> releng/10.1
branch.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272462 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

9 years agoCopy stable/10@r272459 to releng/10.1 as part of
gjb [Fri, 3 Oct 2014 00:49:11 +0000 (00:49 +0000)]
Copy stable/10@r272459 to releng/10.1 as part of
the 10.1-RELEASE process.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/releng/10.1@272461 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f