dragonfly.git
11 years agoUpdate files for OpenSSH-6.1p1 import.
Peter Avalos [Sun, 28 Oct 2012 19:42:44 +0000 (12:42 -0700)]
Update files for OpenSSH-6.1p1 import.

11 years agoMerge branch 'vendor/OPENSSH'
Peter Avalos [Sun, 28 Oct 2012 18:41:45 +0000 (11:41 -0700)]
Merge branch 'vendor/OPENSSH'

11 years agoImport OpenSSH-6.1p1.
Peter Avalos [Sun, 28 Oct 2012 17:58:12 +0000 (10:58 -0700)]
Import OpenSSH-6.1p1.

Features:

 * ssh-keygen(1): Add optional checkpoints for moduli screening
 * ssh-add(1): new -k option to load plain keys (skipping certificates)
 * sshd(8): Add wildcard support to PermitOpen, allowing things like
   "PermitOpen localhost:*".  bz #1857
 * ssh(1): support for cancelling local and remote port forwards via the
   multiplex socket. Use ssh -O cancel -L xx:xx:xx -R yy:yy:yy user@host"
   to request the cancellation of the specified forwardings
 * support cancellation of local/dynamic forwardings from ~C commandline
 * sshd(8): This release turns on pre-auth sandboxing sshd by default for
   new installs, by setting UsePrivilegeSeparation=sandbox in sshd_config.
 * ssh-keygen(1): Add options to specify starting line number and number of
   lines to process when screening moduli candidates, allowing processing
   of different parts of a candidate moduli file in parallel
 * sshd(8): The Match directive now supports matching on the local (listen)
   address and port upon which the incoming connection was received via
   LocalAddress and LocalPort clauses.
 * sshd(8): Extend sshd_config Match directive to allow setting AcceptEnv
   and {Allow,Deny}{Users,Groups}
 * Add support for RFC6594 SSHFP DNS records for ECDSA key types. bz#1978
 * ssh-keygen(1): Allow conversion of RSA1 keys to public PEM and PKCS8
 * sshd(8): Allow the sshd_config PermitOpen directive to accept "none" as
   an argument to refuse all port-forwarding requests.
 * sshd(8): Support "none" as an argument for AuthorizedPrincipalsFile
 * ssh-keyscan(1): Look for ECDSA keys by default. bz#1971
 * sshd(8): Add "VersionAddendum" to sshd_config to allow server operators
   to append some arbitrary text to the server SSH protocol banner.

Bugfixes:

 * ssh(1): ensure that $DISPLAY contains only valid characters before
   using it to extract xauth data so that it can't be used to play local
   shell metacharacter games.
 * ssh(1): unbreak remote portforwarding with dynamic allocated listen ports
 * scp(1): uppress adding '--' to remote commandlines when the first
   argument does not start with '-'. saves breakage on some
   difficult-to-upgrade embedded/router platforms
 * ssh(1)/sshd(8): fix typo in IPQoS parsing: there is no "AF14" class,
   but there is an "AF21" class
 * ssh(1)/sshd(8): do not permit SSH2_MSG_SERVICE_REQUEST/ACCEPT during
   rekeying
 * ssh(1): skip attempting to create ~/.ssh when -F is passed
 * sshd(8): unbreak stdio forwarding when ControlPersist is in use; bz#1943
 * sshd(1): send tty break to pty master instead of (probably already
   closed) slave side; bz#1859
 * sftp(1): silence error spam for "ls */foo" in directory with files;
   bz#1683
 * Fixed a number of memory and file descriptor leaks
 * ssh(1)/sshd(8): Don't spin in accept() in situations of file
   descriptor exhaustion. Instead back off for a while.
 * ssh(1)/sshd(8): Remove hmac-sha2-256-96 and hmac-sha2-512-96 MACs as
   they were removed from the specification. bz#2023,
 * sshd(8): Handle long comments in config files better. bz#2025
 * ssh(1): Delay setting tty_flag so RequestTTY options are correctly
   picked up. bz#1995
 * sshd(8): Fix handling of /etc/nologin incorrectly being applied to root
   on platforms that use login_cap.

11 years agousr.bin/make: Remove legacy make files
John Marino [Sun, 28 Oct 2012 13:27:26 +0000 (14:27 +0100)]
usr.bin/make: Remove legacy make files

usr.bin/make has been replaced with usr.bin/bmake, retaining the program
name "make".  usr.bin/make was previously disconnected from the build,
so these files were not longer used.

11 years agoReplace legacy make with bmake
John Marino [Sun, 28 Oct 2012 12:38:32 +0000 (13:38 +0100)]
Replace legacy make with bmake

The proper way to detect which make is building the makefile is to check
for .PARSEDIR.  If present, bmake is processing the makefile.  For the
time being, both make will be supported for bootstrapping purposes, but
in time the check can be removed, say for the DragonFly 3.6 release.

The abundance of .ORDER commands in bsd.dep.mk caused a breakage when
building world in parallel with bmake.  Likely some order constraints
were impossible to achieve, and bmake just stopped while legacy did the
best it could.  In any case, the majority of the .ORDER commands were
replaced by a single .ORDER command which solved the problem.

The legacy make is disconnected in this commit set, but the source files
will be removed soon.

11 years agoRandom makefile cleanup prior to bmake import
John Marino [Sun, 28 Oct 2012 12:32:36 +0000 (13:32 +0100)]
Random makefile cleanup prior to bmake import

Bmake does not like to encounter "exit 0" or "exit 1".  It fails using the
exec command.  Replace instances of "exit 1" with /usr/bin/false.  There
was one instance of "exit 0" but it was at the end the target and thus
unnecessary.

The groff/tmac makefile was improved by providing a cd command for
every installed file.

Finally, one of the test makefiles was missing a single quote in one of
the targets.

11 years agoifpoll: Factor out code for devices which does not support multiple queues
Sepherosa Ziehau [Sun, 28 Oct 2012 13:11:43 +0000 (21:11 +0800)]
ifpoll: Factor out code for devices which does not support multiple queues

Mainly avoid code duplication.

While I'm here, fix a typo in em(4) which always enable interrupt during
interface initialization.

11 years agoem: Clear status polling count during interrupt disable handling
Sepherosa Ziehau [Sun, 28 Oct 2012 10:27:40 +0000 (18:27 +0800)]
em: Clear status polling count during interrupt disable handling

11 years agoem: Switch from device_polling to ifpoll
Sepherosa Ziehau [Sun, 28 Oct 2012 10:22:43 +0000 (18:22 +0800)]
em: Switch from device_polling to ifpoll

11 years agokernel/linprocfs: Add dependency on the linux module.
Sascha Wildner [Sun, 28 Oct 2012 01:13:07 +0000 (02:13 +0100)]
kernel/linprocfs: Add dependency on the linux module.

11 years agoRestore build parallelism
John Marino [Sat, 27 Oct 2012 22:55:14 +0000 (00:55 +0200)]
Restore build parallelism

The build parallelism was accidently disabled with recent commits.
First, relocate libobjc headers for gcc44 to /usr/libdata/gcc44/objc
and then remove all the strict ordering to maximize build parallelism.

Exception: the gcc47 library set requires libsupc++ to be built after
libstdc++ because they share object files built by libstdc++.

11 years agondiscvt(8): Check an fread()
Sascha Wildner [Sat, 27 Oct 2012 11:38:56 +0000 (13:38 +0200)]
ndiscvt(8): Check an fread()

Found-by: gcc47
11 years agosort(1): Remove an unused variable.
Sascha Wildner [Sat, 27 Oct 2012 11:30:57 +0000 (13:30 +0200)]
sort(1): Remove an unused variable.

Found-by: gcc47
11 years agoinstaller: Remove some unused variables.
Sascha Wildner [Sat, 27 Oct 2012 11:23:50 +0000 (13:23 +0200)]
installer: Remove some unused variables.

Found-by: gcc47
11 years agobtconfig(8): Move some unused code into the #if 0.
Sascha Wildner [Sat, 27 Oct 2012 11:17:49 +0000 (13:17 +0200)]
btconfig(8): Move some unused code into the #if 0.

11 years agobmake: rethink default mk search path again
John Marino [Sat, 27 Oct 2012 16:06:03 +0000 (18:06 +0200)]
bmake: rethink default mk search path again

Talking with swildner, we don't want the magic token to come before
/usr/share/mk because that would case the host make (after bootstrapping) to
seek files /usr/src/share/mk rather than the world mk files.

Also, it appears that the magic token won't even help with pkgsrc support
the mk files are in another branch (e.g. /usr/pkg/share/mk when the token
would look in /usr/pkgsrc/share/mk).  We really don't have a use for
.../share/mk, but putting it after /usr/share/mk won't hurt anything.

Leave .../share/mk in place just in case it becomes a useful capability later.

11 years agogcc4X: rework some makefiles
John Marino [Sat, 27 Oct 2012 15:42:36 +0000 (17:42 +0200)]
gcc4X: rework some makefiles

These are various tweaks to improve compatibility between legacy make and
bmake.  The biggest change was moving gnu/usr.bin dependencies outside to
Makefile.inc1 as part of _startup_lib* rather than fudge it with .PHONY
targets.  This kludge was causing some issues, as well as the double .USE
trick.

11 years agobsd.dep.mk: Remove AINC knob
John Marino [Sat, 27 Oct 2012 12:44:36 +0000 (14:44 +0200)]
bsd.dep.mk: Remove AINC knob

The AINC knob was removed from FreeBSD before DragonFly 1.0 was released.
It's not needed, so remove it to simplify bsd.dep.mk dependency makefile.
While here, convert SRCS and CLEANFILES to the new += method of augmenting
variables.

11 years agogcc41 removal: Part 3 of 2: library makefiles
John Marino [Sat, 27 Oct 2012 14:00:56 +0000 (16:00 +0200)]
gcc41 removal: Part 3 of 2: library makefiles

I forgot there were GCC 4.1 files in the gnu/lib/gcc41 directory.  These
should have been removed last night with the other makefiles.

11 years agonatd(8): Add exit_delay (daemon exit delay after signal), from FreeBSD.
Sascha Wildner [Fri, 26 Oct 2012 19:02:50 +0000 (21:02 +0200)]
natd(8): Add exit_delay (daemon exit delay after signal), from FreeBSD.

11 years agoTweak some makefiles to prepare for bmake
John Marino [Sat, 27 Oct 2012 09:13:14 +0000 (11:13 +0200)]
Tweak some makefiles to prepare for bmake

These makefiles build fine with legacy make but contain (or lack)
information that causes the build to fail when used with bmake.  Make
small tweaks to makefiles to ensure they are compatible with both make
programs.

11 years agobmake: Update mk directory search path
John Marino [Sat, 27 Oct 2012 09:01:53 +0000 (11:01 +0200)]
bmake: Update mk directory search path

Rather than hardcoding /usr/share/mk as the only source for bsd.*.mk files,
use the .../ magic token to cause bmake to search above it for a share/mk
in its tree as suggest by Simon Gerraty.

Also set up the bootstrap tool version of bmake to exclusively use
the src version of share/mk.

11 years agoSync zoneinfo database with tzdata2012h from ftp://ftp.iana.org/tz/releases
Sascha Wildner [Sat, 27 Oct 2012 09:15:46 +0000 (11:15 +0200)]
Sync zoneinfo database with tzdata2012h from ftp://ftp.iana.org/tz/releases

* asia:
    Israel has new DST rules next year (thanks to Ephraim Silverberg).
    Jordan stays on DST this winter (thanks to Steffen Thorsen).

* southamerica:
    Bahia no longer has DST (thanks to Kelley Cook).
    Tocantins has DST (thanks to Rodrigo Severo).

11 years agoChange pkgsrc make targets to use pkgsrc -head
François Tigeot [Fri, 26 Oct 2012 20:57:47 +0000 (22:57 +0200)]
Change pkgsrc make targets to use pkgsrc -head

11 years agomdoc: Fix .Os version.
Sascha Wildner [Fri, 26 Oct 2012 22:50:00 +0000 (00:50 +0200)]
mdoc: Fix .Os version.

11 years agomdoc: Add DragonFly 3.3.
Sascha Wildner [Fri, 26 Oct 2012 22:21:13 +0000 (00:21 +0200)]
mdoc: Add DragonFly 3.3.

11 years agogcc41 removal: Part 2 of 2: contrib files
John Marino [Fri, 26 Oct 2012 19:50:35 +0000 (21:50 +0200)]
gcc41 removal: Part 2 of 2: contrib files

Complete the removal of GCC 4.1 by removing the contrib directory.

11 years agogcc41 removal: Part 1 of 2: makefiles
John Marino [Fri, 26 Oct 2012 19:49:50 +0000 (21:49 +0200)]
gcc41 removal: Part 1 of 2: makefiles

GCC 4.1 had been disconnected from the base build after GCC 4.7 was
brought in.  The transition as gone relatively smoothly, so it's safe
to remove the rest of GCC 4.1 now, starting with the makefiles.

11 years agolibssp47, libobjc47: install headers
John Marino [Fri, 26 Oct 2012 14:35:25 +0000 (16:35 +0200)]
libssp47, libobjc47: install headers

Headers for both libssp and libobjc were not getting installed for the
gcc47 library set.  As an aside, the gcc44 libobjc is also missing these
headers.  There installation required an mtree change, but it can be
built with quickworld.

Additionally, CFLAGS were moved to above an include for libobjc which
should ensure the local config.h is included before a different version
and this in turn likely improves libobjc functionality.

11 years agolibgomp47: Install libgomp.spec and omp.h
John Marino [Fri, 26 Oct 2012 13:52:09 +0000 (15:52 +0200)]
libgomp47: Install libgomp.spec and omp.h

It was reported these files are needed by libgomp, so generate and
install them.

11 years agoMerge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly
Matthew Dillon [Fri, 26 Oct 2012 15:38:37 +0000 (08:38 -0700)]
Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly

11 years agobuild - Use _KERNEL_STRUCTURES for struct disk
Matthew Dillon [Fri, 26 Oct 2012 15:37:37 +0000 (08:37 -0700)]
build - Use _KERNEL_STRUCTURES for struct disk

* Use _KERNEL and _KERNEL_STRUCTURES around struct disk as well
  for correctness.

11 years agops.1: Adjust info regarding SMP systems.
Sascha Wildner [Fri, 26 Oct 2012 15:33:49 +0000 (17:33 +0200)]
ps.1: Adjust info regarding SMP systems.

11 years agoMerge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly
Matthew Dillon [Fri, 26 Oct 2012 15:08:02 +0000 (08:08 -0700)]
Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly

11 years ago<sys/dmsg.h>: Fix buildworld, ccdconfig(8) needs this (via <sys/disk.h>).
Sascha Wildner [Fri, 26 Oct 2012 09:20:21 +0000 (11:20 +0200)]
<sys/dmsg.h>: Fix buildworld, ccdconfig(8) needs this (via <sys/disk.h>).

Reported-by: Siju George <sgeorge.ml2@gmail.com>
11 years agohammer2 - dmsg blockdev work (cleanup)
Matthew Dillon [Fri, 26 Oct 2012 04:50:50 +0000 (21:50 -0700)]
hammer2 - dmsg blockdev work (cleanup)

* Cleanup

11 years agomptable.1: Small SMP related adjustment.
Sascha Wildner [Fri, 26 Oct 2012 04:50:26 +0000 (06:50 +0200)]
mptable.1: Small SMP related adjustment.

11 years agovkernel.7: Remove SMP related info.
Sascha Wildner [Fri, 26 Oct 2012 04:31:43 +0000 (06:31 +0200)]
vkernel.7: Remove SMP related info.

11 years agohammer2 - dmsg blockdev work
Matthew Dillon [Fri, 26 Oct 2012 02:57:12 +0000 (19:57 -0700)]
hammer2 - dmsg blockdev work

* Adjust the LNK_CONN and LNK_SPAN messages to provide a cluster label
  and a filesystem label instead of just a filesystem label.

* Change the cluster controller to index clusters based on the
  peer_type, pfs_clid, and cl_label instead of just the pfs_clid.

  HAMMER2 PFS's are primarily identified by pfs_clid and unique nodes
  are identified by pfs_fsid.  fs_label holds the HAMMER2 super-root
  name.

  BLOCK devices are primarily identified by cl_label and unique nodes
  are identified by pfs_fsid.  pfs_clid and fs_label are empty.

* Adjust the cluster controller's matching filters such that, e.g.
  BLOCK device clients only have visibility to the BLOCK device server
  for the cl_label in question, and do not have visibility to other
  BLOCK device clients.

* Flesh out the hammer2 service daemons disk monitoring, have it attach
  a pipe to the in-kernel disk via an ioctl().

* Continued work on the skeleton network disk exporter (kern/subr_disk*) and
  network disk importer (dev/disk/xdisk/*).  xdisk has not been added to the
  build yet.

* Move a few more definitions from HAMMER2 to DMSG.

11 years agovkernel.7: Add back some info I accidentally removed.
Sascha Wildner [Fri, 26 Oct 2012 01:48:46 +0000 (03:48 +0200)]
vkernel.7: Add back some info I accidentally removed.

11 years agoAdjust some manual pages for the recent SMP changes.
Sascha Wildner [Fri, 26 Oct 2012 01:46:47 +0000 (03:46 +0200)]
Adjust some manual pages for the recent SMP changes.

11 years agohammer2 - Add server-side disk advertisements
Matthew Dillon [Thu, 25 Oct 2012 23:00:47 +0000 (16:00 -0700)]
hammer2 - Add server-side disk advertisements

* The hammer2 service demon now tracks disks and connects the cluster
  controller to each one.

* Add a new ioctl to the subr_disk subsystem and add subr_diskiocom.c
  to implement it, associating a cluster controller messaging descriptor
  with a disk device.

* disk device initiates LNK_CONN and LNK_SPAN.  Disk block devices now
  advertised through the spanning tree.  Nothing else implemented yet.

11 years agokernel - cleanup subr_disk.c
Matthew Dillon [Thu, 25 Oct 2012 20:44:55 +0000 (13:44 -0700)]
kernel - cleanup subr_disk.c

* Formatting cleanup pass.

11 years agohammer2 - Messaging layer separation work part 5
Matthew Dillon [Thu, 25 Oct 2012 18:31:27 +0000 (11:31 -0700)]
hammer2 - Messaging layer separation work part 5

* Fix debug shell callback issue

11 years agohammer2 - Messaging layer separation work part 4
Matthew Dillon [Thu, 25 Oct 2012 18:09:16 +0000 (11:09 -0700)]
hammer2 - Messaging layer separation work part 4

* Cleanup, bug fixes, operations tests successful now.

11 years agohammer2 - Messaging layer separation work part 3
Matthew Dillon [Thu, 25 Oct 2012 17:46:36 +0000 (10:46 -0700)]
hammer2 - Messaging layer separation work part 3

* Move more hammer2 vfs message code into kern_dmsg.c, renaming and
  implementing callbacks as needed.

* Move hammer2_icrc.c (the iscsi crc support) to libkern/icrc32.c

11 years agohammer2 - Messaging layer separation work part 2
Matthew Dillon [Thu, 25 Oct 2012 06:26:40 +0000 (23:26 -0700)]
hammer2 - Messaging layer separation work part 2

* Move most of the low-level message handling from the hammer2 utility
  to a new library called libdmsg.

* Move additional message headers from the hammer2 vfs code to libdmsg,
  cleanup.

* Rename and reorganize a ton of stuff.

11 years agohammer2 - Messaging layer separation work part 1
Matthew Dillon [Thu, 25 Oct 2012 04:27:50 +0000 (21:27 -0700)]
hammer2 - Messaging layer separation work part 1

This work is to separate the network messaging format and various
lower layers out from hammer2 and into their own 'dmsg*' files.

* Factor low level messaging structures into sys/dmsg.h

* Rename HAMMER2 -> DMSG.

11 years agokernel - header file includes adjustment
Matthew Dillon [Thu, 25 Oct 2012 03:04:45 +0000 (20:04 -0700)]
kernel - header file includes adjustment

* sys/udev.h ensures that libprop/proplib.h is included.

11 years agokernel - Implement UDEVWAIT ioctl for /dev/udev
Matthew Dillon [Thu, 25 Oct 2012 02:53:08 +0000 (19:53 -0700)]
kernel - Implement UDEVWAIT ioctl for /dev/udev

* Implement an ioctl which interacts with a sequence number and waits for
  a new event, so callers can avoid polling for events.

11 years agokernel - Auto-initiate message stream for udev on read()
Matthew Dillon [Thu, 25 Oct 2012 02:12:50 +0000 (19:12 -0700)]
kernel - Auto-initiate message stream for udev on read()

* Ensure the device is initiated when read() is issued for /dev/udev,
  otherwise no events will be queued.

  This allows a simple cat /dev/udev to return the XML stream without
  having to issue any ioctls.

* Reorder the devfs scan and initiation to close a race where an event could
  be lost.

11 years agokernel - Allow multiple opens on /dev/udev
Matthew Dillon [Thu, 25 Oct 2012 01:31:53 +0000 (18:31 -0700)]
kernel - Allow multiple opens on /dev/udev

* Implement as an auto-clone device

* Refactor most of the code to use a new queueing mechanic.  There is a single
  queue and multiple markers pointing into the queue (one for each initiated
  open'd device).

* Events broadcast to all initiated readers.  We use a single-queue /
  multiple-marker model.  The event structure is only deleted once all markers
  have iterated past it.

11 years agodevattr - Add monitoring mode (-M).
Matthew Dillon [Thu, 25 Oct 2012 00:05:29 +0000 (17:05 -0700)]
devattr - Add monitoring mode (-M).

* Add a new option, -M, which will monitor for events after doing the
  initial iteration.

11 years agotest - Adjust vnodeinfo
Matthew Dillon [Wed, 24 Oct 2012 22:59:03 +0000 (15:59 -0700)]
test - Adjust vnodeinfo

* Adjust vnodeinfo to provide more information about the
  buffer cache.

11 years agoMerge branches 'hammer2' and 'master' of ssh://crater.dragonflybsd.org/repository... origin/hammer2
Matthew Dillon [Wed, 24 Oct 2012 22:48:05 +0000 (15:48 -0700)]
Merge branches 'hammer2' and 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into hammer2

11 years agoUPDATING: Mention SMP is a no-op for now.
Sascha Wildner [Wed, 24 Oct 2012 17:13:59 +0000 (19:13 +0200)]
UPDATING: Mention SMP is a no-op for now.

11 years agokernel: Add back 'options SMP' as a no-op.
Sascha Wildner [Wed, 24 Oct 2012 17:05:48 +0000 (19:05 +0200)]
kernel: Add back 'options SMP' as a no-op.

This is to prevent people working with both 3.2 and master from needing
different kernel configs.

Pointed-out-by: dillon
11 years agoMerge branches 'hammer2' and 'master' of ssh://crater.dragonflybsd.org/repository...
Matthew Dillon [Wed, 24 Oct 2012 16:54:30 +0000 (09:54 -0700)]
Merge branches 'hammer2' and 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into hammer2

11 years agoixgbe/netrate: Remove -DSMP from the Makefiles (no longer needed).
Sascha Wildner [Wed, 24 Oct 2012 16:11:13 +0000 (18:11 +0200)]
ixgbe/netrate: Remove -DSMP from the Makefiles (no longer needed).

11 years agokernel: Make SMP support default (and non-optional).
Sascha Wildner [Wed, 24 Oct 2012 16:04:05 +0000 (18:04 +0200)]
kernel: Make SMP support default (and non-optional).

The 'SMP' kernel option gets removed with this commit, so it has to
be removed from everybody's configs.

Reviewed-by: sjg
Approved-by: many
11 years agoidr.9: Clean up a bit.
Sascha Wildner [Wed, 24 Oct 2012 14:19:31 +0000 (16:19 +0200)]
idr.9: Clean up a bit.

11 years agoMerge branches 'hammer2' and 'master' of ssh://crater.dragonflybsd.org/repository...
Matthew Dillon [Wed, 24 Oct 2012 03:29:25 +0000 (20:29 -0700)]
Merge branches 'hammer2' and 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into hammer2

11 years agoidr: Integer ID management library
Vishesh Yadav [Thu, 23 Aug 2012 19:28:27 +0000 (00:58 +0530)]
idr: Integer ID management library

Derived from fd code. Almost compatible with Linux. Differences
mentioned in man page.

11 years agobsd-family-tree: Sync with FreeBSD (adds NetBSD 6.0).
Sascha Wildner [Tue, 23 Oct 2012 09:10:28 +0000 (11:10 +0200)]
bsd-family-tree: Sync with FreeBSD (adds NetBSD 6.0).

11 years agoLINT64: Remove comment. fe(4) is i386 specific.
Sascha Wildner [Tue, 23 Oct 2012 09:04:57 +0000 (11:04 +0200)]
LINT64: Remove comment. fe(4) is i386 specific.

11 years agoRemove CAPS.
Sascha Wildner [Mon, 22 Oct 2012 18:06:05 +0000 (20:06 +0200)]
Remove CAPS.

OK'd-by: dillon

11 years agocondvar.9: Remove trailing whitespace.
Sascha Wildner [Mon, 22 Oct 2012 16:30:12 +0000 (18:30 +0200)]
condvar.9: Remove trailing whitespace.

11 years agokernel/kinfo: Don't use 'SMP' alone to check for userland compilation.
Sascha Wildner [Mon, 22 Oct 2012 09:07:13 +0000 (11:07 +0200)]
kernel/kinfo: Don't use 'SMP' alone to check for userland compilation.

The code is used by both kernel and userland.

This is in preparation for removing UP code.

11 years agousched_set.2: Add BUGS section and improve formatting
Thomas Nikolajsen [Sun, 21 Oct 2012 21:44:32 +0000 (23:44 +0200)]
usched_set.2: Add BUGS section and improve formatting

11 years agoloader(8): Add documentation on kern.user_scheduler
Thomas Nikolajsen [Sun, 21 Oct 2012 18:55:51 +0000 (20:55 +0200)]
loader(8): Add documentation on kern.user_scheduler

11 years agousched(8): Add cpumask
Thomas Nikolajsen [Sun, 21 Oct 2012 18:51:37 +0000 (20:51 +0200)]
usched(8): Add cpumask

11 years agovkernel64: Add a missing 'break'.
Sascha Wildner [Sun, 21 Oct 2012 20:09:15 +0000 (22:09 +0200)]
vkernel64: Add a missing 'break'.

11 years agobmake: Add world Makefile but don't tie in it yet
John Marino [Sun, 21 Oct 2012 19:13:08 +0000 (21:13 +0200)]
bmake: Add world Makefile but don't tie in it yet

11 years agobmake: Add DragonFly READMEs
John Marino [Sun, 21 Oct 2012 19:10:59 +0000 (21:10 +0200)]
bmake: Add DragonFly READMEs

Add DragonFly README files to contrib/bmake and also add __unused
to the single argument of two empty functions.

11 years agoMerge branch 'vendor/BMAKE'
John Marino [Sun, 21 Oct 2012 19:06:35 +0000 (21:06 +0200)]
Merge branch 'vendor/BMAKE'

11 years agoImport bmake-20121010 to new vendor branch
John Marino [Sun, 21 Oct 2012 19:05:53 +0000 (21:05 +0200)]
Import bmake-20121010 to new vendor branch

11 years agoUPDATING: Fix a typo and mention that for usb4bsd, w&k need rebuilding.
Sascha Wildner [Sun, 21 Oct 2012 16:45:32 +0000 (18:45 +0200)]
UPDATING: Fix a typo and mention that for usb4bsd, w&k need rebuilding.

Sigh, I had written 'loader.conf' instead of 'make.conf'. It will need
a mention on the release page/errata.

11 years agoUPDATING: Add some words about usb4bsd.
Sascha Wildner [Sun, 21 Oct 2012 13:52:36 +0000 (15:52 +0200)]
UPDATING: Add some words about usb4bsd.

11 years agoobjcache: Make sure magazines are cache line aligned
Sepherosa Ziehau [Sun, 21 Oct 2012 12:23:04 +0000 (20:23 +0800)]
objcache: Make sure magazines are cache line aligned

This also makes magazines' size multiple cache line size.

11 years agoobjcache: Make sure that percpu_objcache and depot are cache line aligned
Sepherosa Ziehau [Sun, 21 Oct 2012 10:42:05 +0000 (18:42 +0800)]
objcache: Make sure that percpu_objcache and depot are cache line aligned

Since percpu_objcache and depot are embedded in the objcache, so objcache
itself must be cache line aligned.

11 years agogcc4X man pages: Introduce generic MLINK handling
John Marino [Sun, 21 Oct 2012 09:08:28 +0000 (11:08 +0200)]
gcc4X man pages: Introduce generic MLINK handling

A few months ago, the MLINK handling for binutils was updated to make
it easier to switch the primary version.  For binutils, every manpage
has a suffix based on the binutils version and the "real" man page is
linked to the primary version.

The two base compilers had the same organization, but the manual system
was not converted when binutils system was.  When gcc47 was brought in,
the manual organization wasn't implemented correctly and the gcc47 pages
ended up getting linked to the "real" man page instead of the primary
compiler gcc44.

While fixing this, bring in the binutils MLINK handling to prepare for
switching gcc47 to the primary compiler in the future.

11 years agoobjcache: objcache_create on longer changes cluster_limit
Sepherosa Ziehau [Sun, 21 Oct 2012 09:00:54 +0000 (17:00 +0800)]
objcache: objcache_create on longer changes cluster_limit

It is no longer needed to pass the pointer to cluster_limit.

11 years agoobjcache: Cache align magazinedepot and percpu_objcache
Sepherosa Ziehau [Sun, 21 Oct 2012 08:36:37 +0000 (16:36 +0800)]
objcache: Cache align magazinedepot and percpu_objcache

11 years agocondvar(9): adjust manpage to reflect reality
Markus Pfeiffer [Sat, 20 Oct 2012 20:50:17 +0000 (20:50 +0000)]
condvar(9): adjust manpage to reflect reality

also fix a typo while I am here

11 years agonetif: Enable ifpoll in module building
Sepherosa Ziehau [Sat, 20 Oct 2012 13:33:06 +0000 (21:33 +0800)]
netif: Enable ifpoll in module building

11 years agolibgomp47: link pthread library
John Marino [Sat, 20 Oct 2012 13:19:06 +0000 (15:19 +0200)]
libgomp47: link pthread library

11 years agoconfig: Enable ifpoll (IFPOLL_ENABLE) by default
Sepherosa Ziehau [Sat, 20 Oct 2012 12:17:24 +0000 (20:17 +0800)]
config: Enable ifpoll (IFPOLL_ENABLE) by default

11 years agoifpoll: Make status fraction and TX fraction easier to read
Sepherosa Ziehau [Sat, 20 Oct 2012 12:12:38 +0000 (20:12 +0800)]
ifpoll: Make status fraction and TX fraction easier to read

11 years agogcc47: Add libgomp
John Marino [Sat, 20 Oct 2012 06:37:48 +0000 (08:37 +0200)]
gcc47: Add libgomp

This library was not part of the gcc 4.7 system compiler set.
By request for the purpose of supporting OpenMP with system compiler,
libgomp is being added to the gcc 4.7 library set.

11 years agoMerge branch 'vendor/GCC47'
Charlie [Sat, 20 Oct 2012 10:10:13 +0000 (12:10 +0200)]
Merge branch 'vendor/GCC47'

11 years agoAdd libgomp source files to gcc 4.7 vendor branch
John Marino [Sat, 20 Oct 2012 06:35:34 +0000 (08:35 +0200)]
Add libgomp source files to gcc 4.7 vendor branch

11 years agoudevd(8): Reduce the scope of a yet unused variable.
Sascha Wildner [Sat, 20 Oct 2012 08:49:14 +0000 (10:49 +0200)]
udevd(8): Reduce the scope of a yet unused variable.

11 years agonewfs(8): Remove an unused variable.
Sascha Wildner [Sat, 20 Oct 2012 08:39:26 +0000 (10:39 +0200)]
newfs(8): Remove an unused variable.

Found-by: gcc47
11 years agomount{,_ufs}(8): Check for mountctl() error before printing buf.
Sascha Wildner [Sat, 20 Oct 2012 08:18:27 +0000 (10:18 +0200)]
mount{,_ufs}(8): Check for mountctl() error before printing buf.

11 years agogcc47: Add libssp and libssp_noshared
John Marino [Fri, 19 Oct 2012 15:43:21 +0000 (17:43 +0200)]
gcc47: Add libssp and libssp_noshared

These libraries were not part of the gcc 4.4 system compiler set.
Some pkgsrc packages assume the ssp libraries come with the compiler,
so add them to the gcc 4.7 library set.

11 years agoMerge branch 'vendor/GCC47'
Charlie [Sat, 20 Oct 2012 02:37:26 +0000 (04:37 +0200)]
Merge branch 'vendor/GCC47'

11 years agogcc47: Add __stack_chk_fail_local hack from gcc44
John Marino [Sat, 20 Oct 2012 00:06:27 +0000 (02:06 +0200)]
gcc47: Add __stack_chk_fail_local hack from gcc44

Like gcc44 before it, gcc47 is complaining about the hidden symbol of
__stack_chk_fail_local.  This patch swildner added to gcc44 will fix the
issue, but it is a bit of a hack.  A true fix may end up touching libc,
rtld, and other bits.  The original code is supposd to conserve a PIC
register.

Note that vendor-built GCCs on FreeBSD exhibit the same behavior and as
a consequence only the patched base compiler can be used to build certain
ports.

This hack should be fixed properly as soon as convenient.

11 years agoAdd libssp source files to gcc 4.7 vendor branch
John Marino [Fri, 19 Oct 2012 15:27:07 +0000 (17:27 +0200)]
Add libssp source files to gcc 4.7 vendor branch

11 years agokernel - Fix UP build for usched_dfly
Matthew Dillon [Fri, 19 Oct 2012 20:26:45 +0000 (13:26 -0700)]
kernel - Fix UP build for usched_dfly

* Fix UP build for usched_dfly (primarily for the 3.2 release, UP is being
  removed post-release).

11 years agorshd(8): Add an error check for getnameinfo().
Sascha Wildner [Fri, 19 Oct 2012 19:22:23 +0000 (21:22 +0200)]
rshd(8): Add an error check for getnameinfo().