summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Constify where appropriate.eadler2013-04-231-2/+2
| | | | | | Reported by: emaste Approved by: cperciva (mentor) MFC After: 3 days
* Cleanups to touch.ceadler2013-04-231-20/+22
| | | | | | | | | | - use const where appropriate - use static where appropriate - use explicit checks checks for error conditions Reviewed by: sbruno Approved by: cperciva (mentor) Obtained by: DragonFlyBSD
* - Add the __dead2 attribute since it is a function that never returnseadler2013-04-231-1/+2
| | | | | | | | - Add an empty line in usage() according to style(9) PR: bin/177076 Submitted by: Fernando <fernando.apesteguia@gmail.com> Approved by: cperciva (mentor)
* Add support for Intel C600/X79 Series Chipset KT Controller.eadler2013-04-231-0/+1
| | | | | PR: kern/177072 Submitted by: Kurt Lidl <lidl@pix.net>
* - sl_find does not modify 'name'eadler2013-04-233-3/+3
| | | | | | | | - make the prototype of sl_find match NetBSD Reviewed by: jilles Approved by: cperciva (mentor) MFC After: 3 days
* Switch from K&R prototypes to modern Ceadler2013-04-231-10/+4
| | | | | | Reviewed by: jilles Approved by: cperciva (mentor) MFC After: 3 days
* Avoid warning about uninitalized variableeadler2013-04-231-0/+1
| | | | | | PR: kern/176712 Submitted by: Hiren Panchasara <hiren.panchasara@gmail.com> (earlier vesion) Approved by: cperciva (mentor)
* Remove always-true conditions from if statement.eadler2013-04-231-2/+2
| | | | | | PR: kern/176712 Submitted by: Hiren Panchasara <hiren.panchasara@gmail.com> Approved by: cperciva (mentor)
* Make temp, temp1 the same type that they will later be used for.eadler2013-04-231-1/+1
| | | | | | | PR: kern/176712 Submitted by: Hiren Panchasara <hiren.panchasara@gmail.com> Reviewed by: jmg (earlier version) Approved by: cperciva (mentor)
* Remove tautological compare.eadler2013-04-231-4/+4
| | | | | | PR: kern/176712 Submitted by: Hiren Panchasara <hiren.panchasara@gmail.com> Approved by: cperciva (mentor)
* Add support for runtime switching of sample rate forhselasky2013-04-231-250/+431
| | | | | | | USB audio devices. Previously the highest sample rate was unconditionally selected. Requested by: Craig Leres <leres@ee.lbl.gov>
* Add convenience wrapper functions to run callbacks in the context of thehselasky2013-04-232-0/+31
| | | | USB explore thread.
* Add an option for the GE FES based packet engines. Its board IDsimp2013-04-231-0/+1
| | | | | overlap with the standard ones, so kernels for this family of boards need the option OCTEON_VENDOR_GEFES.
* Update trapframe to be consistent with the changes made to regnum.h. Thisimp2013-04-235-14/+62
| | | | should fix the booting problems people have been seeing.
* Fix error check.mckusick2013-04-231-1/+1
| | | | | Submitted by: Andrey Chernov (ache@) MFC after: 3 days
* The zfs synctask code restructuring introduced a new bug that makes itmm2013-04-232-14/+24
| | | | | | | | | | | | impossible to set quota and reservation on pools lower than version 22. Problem has been reported and a solution discussed with vendor. Illumos ZFS issues: 3739 cannot set zfs quota or reservation on pool version < 22 Reviewed by: Matthew Ahrens <mahrens@delphix.com> Reported by: Steve Wills <swills@FreeBSD.org> MFC after: 3 days
* Add descriptive comment.hselasky2013-04-231-0/+6
|
* Prevent device.subr from auto-loading in the nameservers module.dteske2013-04-231-0/+3
| | | | | This module doesn't need device support (but device.subr is loaded indirectly through media/tcpip.subr which contains resolv stuff).
* Preserve debugFile preference across the exec boundary.dteske2013-04-221-0/+1
|
* Partially uncommit r249779. The changes to share/common.subr were gooddteske2013-04-223-54/+12
| | | | | while the remaining changes were part of a much larger ``secret sauce'' involved in an up-coming commit that I'm still laboring on.
* Fix "-D file" to automagically enable debugging if not explicitly disabled.dteske2013-04-224-29/+69
|
* Update description of process status output.joel2013-04-221-3/+4
| | | | | PR: 143850 Submitted by: Slaven Rezic <slaven@rezic.de>
* MFP4 223084, 227821:brooks2013-04-222-0/+77
| | | | | | | | | | | | Partially implement generic_bs_*_8() for MIPS platforms. This is known to work with TARGET_ARCH=mips64 with FreeBSD/BERI. Assuming that other definitions in cpufunc.h are correct it will work on non-o64 ABI systems except sibyte. On sibyte and o32 systems generic_bs_*_8() will remain panic() implementations. Sponsored by: DARPA, AFRL Reviewed by: imp, jmallett (older versions)
* Update arswitch to the new API.adrian2013-04-221-1/+1
|
* Split BeagleBone DTS to generic AM335x part and Beagle-bone specificgonzo2013-04-222-194/+230
|
* Minor update about rc.conf.joel2013-04-221-1/+1
|
* Pass more variables to bsd.prog.mk andsjg2013-04-221-2/+5
| | | | | | only append to already defined variables. Submitted by: Garrett Cooper
* Point users towards nisdomainname and rc.conf.joel2013-04-221-6/+8
| | | | | | PR: 144630 Submitted by: Stefan Krueger <stadtkind2@gmx.de>, Fel <wtfcrap@mail.ru>
* Minor clarificiation.joel2013-04-221-2/+2
| | | | PR: 177455
* - Some BIOSes use an Extended IRQ resource descriptor in _PRS for a linkjhb2013-04-222-2/+12
| | | | | | | | | | that uses non-ISA IRQs but use a plain IRQ resource in _CRS. However, a non-ISA IRQ can't fit into a plain IRQ resource. If we encounter a link like this, build the resource buffer from _PRS instead of _CRS. - Set the correct size of the end tag in a resource buffer. Tested by: Benjamin Lee <ben@b1c1l1.com> MFC after: 2 weeks
* Use a higher TTL (128) for DHCP packets. This matches the ISC DHCP client.jhb2013-04-221-1/+1
| | | | | PR: bin/170279 MFC after: 1 week
* Build uart_dev_lpc.c on arm only. This fixes pc98 build.nyan2013-04-222-1/+7
|
* Keep up with negative addrlen check removal in r249649.pluknet2013-04-221-5/+1
|
* Panic if UMA_ZONE_PCPU is created at early stages of boot, when mp_ncpusglebius2013-04-221-0/+1
| | | | | | isn't yet initialized. Otherwise we will panic at first allocation later. Sponsored by: Nginx, Inc.
* Initialize GIC_PMRR register on ARM GIC.dmarion2013-04-221-0/+6
| | | | Provided by: Thomas Skibo
* Clarify to the user the amount of time required to load the menus fordteske2013-04-221-4/+4
| | | | each view in the details dialog.
* New helper functions for common widgets.dteske2013-04-221-0/+136
|
* Proper fix for copy/paste error (first attempt r249756).dteske2013-04-221-2/+2
|
* Fix a copy/paste error.dteske2013-04-221-2/+2
|
* Update comment for accuracy.dteske2013-04-221-3/+3
|
* Style nit (to be consistent across project).dteske2013-04-221-2/+2
|
* Fix two bugs when setting up a plip interface. First, dhcp status was notdteske2013-04-221-1/+2
| | | | | being properly cleared each iteration of the loop. Second, values weren't properly quoted when sent to the editor function.
* Convert over the etherswitch framework to use VLAN IDs per port, ratheradrian2013-04-224-19/+34
| | | | | | | | | | | | | | | | | | | | | than VLAN groups. Some chips (eg this rtl8366rb) has a VLAN group per port - you first define a set of VLANs in a vlan group, then you assign a VLAN group to a port. Other chips (eg the AR8xxx switch chips) have a VLAN ID array per port - there's no group per se, just a list of vlans that can be configured. So for now, the switch API will use the latter and rely on drivers doing the heavy lifting if one wishes to use the VLAN group method. Maybe later on both can be supported. PR: kern/177878 PR: kern/177873 Submitted by: Luiz Otavio O Souza <loos.br@gmail.com> Reviewed by: ray
* UI improvements. First, implement --default-item whenever and whereverdteske2013-04-2242-343/+845
| | | | | | | | possible to save keystrokes. Second, overhaul startup/rcdelete for much improved performance. Last, but not least, kill-off useage of --clear and implement --keep-tite in harmony to minimize jarring transitions. Also, fix local variable names where necessary while we're here with other minor comment-enhancements/typo-corrections.
* Use new f_getvar for clarity and general code follow-up to r249746.dteske2013-04-221-2/+5
|
* etherswitchcfg(8) crashes when you don't set vlangroup members.adrian2013-04-221-2/+5
| | | | | | | Fix this to require an argument. PR: kern/177872 Submitted by: Luiz Otavio O Souza <loos.br@gmail.com>
* Initialise this to zero before using it to configure the vlangroupadrian2013-04-221-0/+1
| | | | | | | information. PR: kern/177871 Submitted by: Luiz Otavio O Souza <loos.br@gmail.com>
* Add new flags `-d' (sets debug=1) and `-D file' (sets debugFile) anddteske2013-04-2256-129/+228
| | | | | | improve debugging initialization. Also fixup USAGE statements while we're here. Also, change initialization of main program to _not_ change working directory, allowing the debugFile to be relative without confusion.
* Simplify vm_radix_{add,dec}lev().alc2013-04-221-8/+13
| | | | Sponsored by: EMC / Isilon Storage Division
* Add missing static keyword, to make the code build with WARNS=6.ed2013-04-211-1/+1
|
OpenPOWER on IntegriCloud