Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Make this compile again. | 2012-08-08 | 2 | -5/+4 | ||
| | ||||||
* | Convert from K&R to ISO function signatures. | 2012-08-08 | 1 | -107/+40 | ||
| | | | | From Brad; no binary change on amd64. | |||||
* | Mention RFC 6106; from brad@, content ok lteo@. | 2012-08-08 | 1 | -8/+17 | ||
| | | | | While here, use .Rs for references; ok jmc@. | |||||
* | Make all *_device_*_start() functions (e.g. ohci_device_intr_start()) | 2012-08-07 | 3 | -4/+22 | ||
| | | | | | | | | | | wait for an interrupt when the bus is in polling mode. Otherwise some devices like my YE-Data USB Floppy take a short sharp trip to ddb> at 'halt -p'. Most of the functions were already doing the wait. ok miod@. With modification that printf's become DPRINTF's. | |||||
* | Fix compilation when !defined(KTRACE) by hiding the then-unused 'code' | 2012-08-07 | 1 | -1/+3 | ||
| | | | | | | variable Pointed out by Amit Kulkarni (amitkulz at gmail.com) | |||||
* | Implement a set of tree_* functions for storing arbitrary pointers in splay | 2012-08-07 | 4 | -4/+277 | ||
| | | | | | | trees with uint64_t keys. Also add x{m,c}alloc and xstrdup helpers. ok gilles@ | |||||
* | allow to choose an alternate regress script | 2012-08-07 | 1 | -2/+3 | ||
| | ||||||
* | fix evpid parsing on 32bit archs | 2012-08-07 | 1 | -2/+2 | ||
| | | | | ok gilles@ | |||||
* | Handle __syscall as syscall, since these are identical on 64-bit platforms, | 2012-08-07 | 1 | -28/+2 | ||
| | | | | | fixing an old n32-inherited bug in the process. Spotted during guenther@'s syscall factorization work. | |||||
* | Store the data used to generate an ICMP error message on a stack | 2012-08-07 | 1 | -12/+21 | ||
| | | | | | | | | | | | | | | | | | instead of allocating a new mbuf. This is a third or fourth attempt to incorporate a change like this meaning a handful of people have lost their hair trying to make it work, namely dlg@, henning@, deraadt@, and thib@. Unfortunately the fixed version was never put back which is exceptionally unfortunate since the impact on performance is huge: it nearly doubles the forwarding performance on selected hardware in simple setups. So after being beaten in test and production environments on several architectures it's ready to be put back again. We're doing it early in the release cycle so that it will receive a good test exposure. ok derradt, henning | |||||
* | Factor out a _dl_randombuf() method from _dl_random(). | 2012-08-07 | 2 | -12/+11 | ||
| | ||||||
* | <sys/ktrace.h> is now pulled in via <sys/syscall_mi.h>, so drop it from here | 2012-08-07 | 4 | -8/+4 | ||
| | ||||||
* | a bit of cleanup and a tx delay tweak | 2012-08-07 | 2 | -10/+7 | ||
| | ||||||
* | Don't include <sys/ktrace.h>; makes this file compile again. | 2012-08-07 | 1 | -2/+1 | ||
| | ||||||
* | don't forget to set IFF_ALLMULTI; from brad | 2012-08-07 | 1 | -3/+4 | ||
| | ||||||
* | Move the common bits of syscall invocation and return handling into | 2012-08-07 | 20 | -913/+366 | ||
| | | | | | | | | | | an MI file, <sys/syscall_mi.h>, correcting inconsistencies and the handling when copyin() of arguments fails. Tested on i386, amd64, sparc64, and alpha (thanks naddy@) Any issues with other platforms will be fixed in tree. header name from millert@; ok miod@ | |||||
* | kill sc->promisc | 2012-08-06 | 2 | -15/+11 | ||
| | ||||||
* | add x540 | 2012-08-06 | 1 | -5/+9 | ||
| | ||||||
* | Add support for 10Gb ethernet cards based on the Intel X540 chipset. | 2012-08-06 | 8 | -60/+1055 | ||
| | | | | | | | The code was obtained from FreeBSD and tested on the hardware kindly donated by Tony Sarendal <tony () polarcap ! org>. Thanks a lot! ok jsg | |||||
* | Adapt after recent move from pkill(1) to pgrep(1) in rc_check. | 2012-08-06 | 1 | -8/+14 | ||
| | | | | | from robert at peichaer dot org ok jmc@ | |||||
* | kill pkg(1) for good. with help from espie. | 2012-08-06 | 3 | -63/+5 | ||
| | | | | espie@ ok. | |||||
* | We typedef intmax_t/uintmax_t to be long long/unsigned long long, | 2012-08-05 | 1 | -0/+6 | ||
| | | | | | | | | so override gcc's default of long/unsigned long on amd64 like we do the other LP64 platforms. This lets format checking of %jd/%ju work correctly there. ok matthew@ millert@ | |||||
* | Remove a self-assignment, from Brad | 2012-08-05 | 1 | -2/+1 | ||
| | ||||||
* | expand documentation of SUBST_CMD to explain the subpackage-dependent nits | 2012-08-05 | 1 | -3/+16 | ||
| | ||||||
* | Fix caching of stacks allocated with the default attributes. | 2012-08-04 | 1 | -6/+8 | ||
| | | | | based on a diff from Christian Schulte (cs at schulte.it) | |||||
* | Add a test for caching of stacks with the default attributes | 2012-08-04 | 1 | -1/+30 | ||
| | ||||||
* | PCI_PRODUCT_ATI_RADEON_X1250 -> PCI_PRODUCT_ATI_RADEON_X1250_{1,2} | 2012-08-04 | 1 | -2/+4 | ||
| | | | | prodded by matthieu@ | |||||
* | Regen. | 2012-08-04 | 2 | -4/+9 | ||
| | ||||||
* | 0x7942 is also a Radeon Xpress 1500 | 2012-08-04 | 1 | -2/+3 | ||
| | | | | ok matthieu@ | |||||
* | Document rc_usercheck. | 2012-08-04 | 1 | -2/+10 | ||
| | | | | ok todd@ | |||||
* | Add a new rc_usercheck variable (default to YES). When set to no, root | 2012-08-04 | 1 | -4/+6 | ||
| | | | | | | | | | privilege is needed to run rc_check. In effect this means /etc/rc.d/foobar check can now be run as a regular user. Discussed with robert@ during g2k12. ok todd@ | |||||
* | Set rc_usercheck to NO. | 2012-08-04 | 1 | -1/+2 | ||
| | ||||||
* | MDTM and SIZE have been in RFC 3659 for over five years. Also, mention both | 2012-08-04 | 1 | -4/+13 | ||
| | | | | | | RFCs in "SEE ALSO". ok jmc@ | |||||
* | zap nonsense code | 2012-08-04 | 1 | -4/+1 | ||
| | ||||||
* | Also log the file(s) we manually merged/installed as it's important | 2012-08-04 | 1 | -4/+12 | ||
| | | | | | | information. ok sthen@ | |||||
* | Factorize common warn, error and report outputs into functions. | 2012-08-04 | 1 | -30/+42 | ||
| | | | | | | | | | Remove bogus echo -n "foobar\n", leftover from display output tests. No functional change but makes the code more readable. from robert ar peichaer dor org ok sthen@ | |||||
* | enable oce(4) | 2012-08-03 | 2 | -2/+4 | ||
| | ||||||
* | add oce.4 | 2012-08-03 | 1 | -2/+2 | ||
| | ||||||
* | update for HUAWEI E392, from Alexei Malinin | 2012-08-03 | 1 | -3/+4 | ||
| | ||||||
* | add HUAWEI E392, tested by Alexei Malinin | 2012-08-03 | 1 | -1/+2 | ||
| | ||||||
* | regen | 2012-08-03 | 2 | -4/+9 | ||
| | ||||||
* | HUAWEI E392 | 2012-08-03 | 1 | -1/+2 | ||
| | ||||||
* | add a handful of linux signatures from p0fv2 and some other | 2012-08-03 | 1 | -2/+10 | ||
| | | | | | signatures from observation. ok mikeb@ jsing@ henning@ deraadt@ | |||||
* | tell people target update-patches actually invokes script update-patches(1) | 2012-08-03 | 1 | -2/+4 | ||
| | | | | | | which is documented. prompted by aja@ | |||||
* | don't capitalize "base" in 10GbaseXX | 2012-08-03 | 1 | -3/+3 | ||
| | ||||||
* | Manual page for the Emulex 10Gb Ethernet driver | 2012-08-03 | 1 | -0/+71 | ||
| | ||||||
* | get rid of some "capabilities" leftovers | 2012-08-02 | 2 | -6/+3 | ||
| | ||||||
* | we use a central pci database; no reason to keep duplicates around | 2012-08-02 | 1 | -11/+1 | ||
| | ||||||
* | Add a driver for Emulex OneConnect 10Gb Ethernet obtained from FreeBSD | 2012-08-02 | 5 | -1/+9218 | ||
| | | | | | | | | | but heavily massaged to look like other BSD network drivers. Support is provided for cards based on the following controllers: o ServerEngines BladeEngine 2 o ServerEngines BladeEngine 3 o Emulex Lancer | |||||
* | regen | 2012-08-02 | 2 | -2/+12 | ||
| |