summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Link with -ledit instead of -lreadline.fjoe2011-11-292-4/+4
|
* -lreadline is not required anymore.fjoe2011-11-291-1/+1
|
* Merge ACPICA 20111123.jkim2011-11-28128-1564/+10482
|\
| * Import ACPICA 20111123.jkim2011-11-23131-1470/+10951
| |
| * Import ACPICA 20110922.jkim2011-09-2656-3288/+1672
| |
| * Import ACPICA 20110623.jkim2011-06-2349-2066/+4665
| |
| * Import ACPICA 20110527.jkim2011-05-3118-96/+698
| |
| * Redo r220658. More extensive patch was committed by Intel:jkim2011-04-156-78/+93
| | | | | | | | | | | | http://git.moblin.org/cgit.cgi/acpica/commit/?id=16c9bbd6a3d8da88664d769ceec2f1757964fc7a Obtained from: ACPICA
* | test: Add more testcases.jilles2011-11-281-4/+38
| | | | | | | | | | | | | | The new testcases pass even on old stable/7, but some other implementations manage to get them wrong. Also remove a few duplicate testcases.
* | Fix typo in copyright notice.mm2011-11-281-1/+1
| | | | | | | | MFC after: 1 month
* | Merge new ZFS features from illumos:mm2011-11-2839-1374/+2530
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1644 add ZFS "clones" property https://www.illumos.org/issues/1644 1645 add ZFS "written" and "written@..." properties https://www.illumos.org/issues/1645 1646 "zfs send" should estimate size of stream https://www.illumos.org/issues/1646 1647 "zfs destroy" should determine space reclaimed by destroying multiple snapshots https://www.illumos.org/issues/1647 1693 persistent 'comment' field for a zpool https://www.illumos.org/issues/1693 1708 adjust size of zpool history data https://www.illumos.org/issues/1708 1748 desire support for reguid in zfs https://www.illumos.org/issues/1748 Obtained from: illumos (changesets 13514, 13524, 13525) MFC after: 1 month
* | Remove debug code.tuexen2011-11-281-7/+0
| | | | | | | | MFC after: 1 month.
* | - Create links to the xz and lzma versions even if BSD grep is not thegabor2011-11-281-7/+8
| | | | | | | | | | | | | | default. Nor GNU nor liblzma in base provides such functionality so it may be useful. MFC after: 3 days
* | - Call warnx() instead of errx() if a directory is not readable when usinggabor2011-11-281-1/+3
| | | | | | | | | | | | | | | | a recursive search. This is the expected behavior instead of aborting. PR: bin/162907 Submitted by: Jan Beich <jbeich@tormail.net> MFC after: 3 days
* | - Fix behavior of --null to match GNU grepgabor2011-11-281-5/+5
| | | | | | | | | | | | PR: bin/162906 Submitted by: Jan Beich <jbeich@tormail.net> MFC after: 3 days
* | - Fix backtrace for MIPS64 platformgonzo2011-11-281-2/+5
| |
* | Update SYNOPSIS to include the flags added recently.trociny2011-11-281-2/+2
| | | | | | | | Spotted by: jhb
* | Change the if_vlan driver to use if_transmit for forwarding packets to thejhb2011-11-281-83/+79
| | | | | | | | | | | | | | | | | | parent interface. This avoids the overhead of queueing a packet to an IFQ only to immediately dequeue it again. Suggested by: np Reviewed by: brooks MFC after: 1 month
* | - Copy base MAC address from bootinfo descriptor to sysinfo structgonzo2011-11-281-0/+2
| | | | | | | | Reviewed by: Andrew Duane
* | Announce flow control capability to PHY drivers and enable flowyongari2011-11-282-11/+43
| | | | | | | | | | | | | | | | | | | | control for all vr(4) controllers that support it. It's known that old vr(4) controllers(Rhine II) does not support TX pause but Rhine III supports both TX and RX pause. Make TX pause really work on Rhine III by letting controller know available RX buffers. While here, adjust XON/XOFF parameters to get better performance with flow control.
* | Limit building sfxge(4) in-kernel to amd64 for the time being. We can put itphilip2011-11-283-31/+33
| | | | | | | | | | | | | | back after I fix the breakages on some of our more exotic platforms. While here, add the driver to the amd64 NOTES, so it can be picked up in LINT builds.
* | Reuse flag variable to represent driver internal states rather thanyongari2011-11-282-19/+19
| | | | | | | | | | | | | | using member variables in softc. While I'm here change media after setting IFF_DRV_RUNNING. This will remove unnecessary link state handling in vr_tick() if controller established a link immediately.
* | Regenerate src.conf.5.dim2011-11-281-7/+10
| |
* | Add WITH_LIBCPLUSPLUS under tools/build/options; the knob itself wasdim2011-11-281-0/+2
| | | | | | | | already added in a previous revision.
* | Under tools/build/options, add missing svn:keywords properties todim2011-11-280-0/+0
| | | | | | | | WITH_OFED and WITHOUT_GPIO.
* | sfxge: Add $FreeBSD$ tags to common code files.philip2011-11-2834-7/+96
| | | | | | | | Requested by: bz
* | Only install the sfxge(4) manpage on amd64, while the driver is amd64-only.philip2011-11-281-1/+2
| | | | | | | | Pointed out by: bz
* | Add an ability to increase number of allocated APM entries when weae2011-11-281-30/+47
| | | | | | | | | | | | | | | | have reserved free space in the APM area. Also instead of one write request per each APM entry, use MAXPHY sized writes when we are updating APM. MFC after: 1 month
* | -lpthread is required by -lzfs so should be later in LIBS list.fjoe2011-11-281-1/+1
| | | | | | | | | | | | There were no "undefined symbol pthread_xxx" errors during the link before this fix only because of STATIC_LIB_REQUIRE() declarations in lib/libthr/thread/thr_init.c.
* | - Use generic alloc_unr(9) allocator for if_clone, insteadglebius2011-11-282-78/+47
| | | | | | | | | | | | | | | | | | | | of hand-made. - When registering new cloner, check whether a cloner with same name already exist. - When allocating unit, also check with help of ifunit() whether such interface already exist or not. [1] PR: kern/162789 [1]
* | Reimport .texi and .texinfo necessary to build the info documentation.bapt2011-11-283-2/+1768
| | | | | | | | | | Reported by: flo Approved by: cognet
* | Add a comment that shows how to limit the build to the specific list of arches.fjoe2011-11-281-0/+2
| |
* | .include <bsd.init.mk> instead of <bsd.own.mk>fjoe2011-11-281-3/+1
| | | | | | | | The former allows common settings from ../Makefile.inc to be used.
* | Simplify arge_flush_ddr to use updated ar71xx_device_flush_ddr_ge(unit).ray2011-11-281-4/+2
| | | | | | | | Approved by: adrian (mentor)
* | Synchronize with laster version of m4 from OpenBSD and NetBSDbapt2011-11-2830-1631/+2481
| | | | | | | | | | | | | | | | This bring better compatibility with gnum4 Reviewed by: cognet Approved by: cognet Obtained from: OpenBSD, NetBSD
* | Fix one more fallout from r227791: do not overwrite trimmed sa_lenglebius2011-11-281-1/+2
| | | | | | | | | | | | | | on the ia_sockmask when doing SIOCSIFNETMASK. Reported by: Stefan Bethke <stb lassitu.de>, gonzo Pointy hat to: glebius
* | The size of APM could be bigger than number of already allocated entries.ae2011-11-281-1/+1
| | | | | | | | | | | | And the first usable sector should not start from the inside of APM area. MFC after: 1 month
* | upgrade gperf to the last GPLv2 version (3.0.3)bapt2011-11-28110-19006/+23174
| | | | | | | | | | Reviewed by: cognet Approved by: cognet
* | Change the Makefile in cddl/lib/drti to use bsd.lib.mk instead ofrwatson2011-11-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | bsd.prog.mk -- we need to compile PIC, which requires a library build. With this change, USDT (userspace DTrace probes) work from within shared libraries. PR: kern/159046 Submitted by: Alex Samorukov <samm at os2.kiev.ua> Comments by: Scott Lystig Fritchie <slfritchie at snookles.com> MFC after: 3 days
* | This commit marks the beginning of a new internal USBhselasky2011-11-281-0/+114
| | | | | | | | | | | | | | | | | | | | transfer statemachine. This work is about using a single state variable instead of multiple state bits as input for the USB statemachine to determine what to do in the various parts of the code. No APIs towards USB device drivers or USB host controller drivers will be changed. MFC after: 1 month
* | Use singular form for zfs destroy snapshot in zfs(8).mm2011-11-281-2/+2
| | | | | | | | MFC after: 6 days
* | Add missing warning to zfs(8) for using "zfs destroy" with -r and -R flags.mm2011-11-281-0/+14
| | | | | | | | | | Obtained from: illumos MFC after: 6 days
* | Fix build, fininshing r228018.glebius2011-11-281-2/+2
| |
* | Cast a_val on printing. This fixes build on mips.trociny2011-11-281-14/+14
| |
* | Plug memory leaks and fix open(2) error check.kevlo2011-11-283-1/+3
| | | | | | | | | | Reviewed by: nwhitehorn MFC after: 3 days
* | This should have been committed in r228030.trociny2011-11-271-0/+1
| | | | | | | | MFC after: 2 weeks
* | Add missing -n flag to "zpool import" description.mm2011-11-271-1/+1
| | | | | | | | MFC after: 1 week
* | Cross-reference capsicum.4 from cap_enter.2 and cap_new.2.rwatson2011-11-272-1/+3
| | | | | | | | | | MFC after: 3 days Sponsored by: Google, Inc.
* | Add an introductory Capsicum man page providing a high-level description ofrwatson2011-11-272-0/+121
| | | | | | | | | | | | | | | | its mechanisms, pointing at other pertinent man pages, and cautioning about the experimental status of Capsicum in FreeBSD. MFC after: 3 days Sponsored by: Google, Inc.
* | Fix a warning reported by arundel@.tuexen2011-11-272-7/+6
| | | | | | | | | | | | | | | | Fix a bug where the parameter length of a supported address types parameter is set to a wrong value if the kernel is built with with either INET or INET6, but not both. MFC after: 3 days.
OpenPOWER on IntegriCloud