Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-08-03 | enable oce(4) | Mike Belopuhov | |
2012-08-03 | add oce.4 | Mike Belopuhov | |
2012-08-03 | update for HUAWEI E392, from Alexei Malinin | Jonathan Gray | |
2012-08-03 | add HUAWEI E392, tested by Alexei Malinin | Jonathan Gray | |
2012-08-03 | regen | Jonathan Gray | |
2012-08-03 | HUAWEI E392 | Jonathan Gray | |
2012-08-03 | add a handful of linux signatures from p0fv2 and some other | Jonathan Gray | |
signatures from observation. ok mikeb@ jsing@ henning@ deraadt@ | |||
2012-08-03 | tell people target update-patches actually invokes script update-patches(1) | Marc Espie | |
which is documented. prompted by aja@ | |||
2012-08-03 | don't capitalize "base" in 10GbaseXX | Mike Belopuhov | |
2012-08-03 | Manual page for the Emulex 10Gb Ethernet driver | Mike Belopuhov | |
2012-08-02 | get rid of some "capabilities" leftovers | Mike Belopuhov | |
2012-08-02 | we use a central pci database; no reason to keep duplicates around | Mike Belopuhov | |
2012-08-02 | Add a driver for Emulex OneConnect 10Gb Ethernet obtained from FreeBSD | Mike Belopuhov | |
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 | |||
2012-08-02 | regen | Mike Belopuhov | |
2012-08-02 | Emulex Lancer (XE201) | Mike Belopuhov | |
2012-08-02 | remove leftover NOLINT, WANTLINT, LINTFLAGS, LOBJ vars and lint targets. | Okan Demirmen | |
ok guenther@ | |||
2012-08-02 | Apply profiling to all threads instead of just the thread that called | Philip Guenthe | |
profil() by moving P_PROFIL from proc->p_flag to process->ps_flags with matching adjustment in fork1() and exit1() ok matthew@ | |||
2012-08-01 | Use mtrrmask instead of hardcoded values to accommodate newer CPUs | Mike Belopuhov | |
with a large physical address size (greater than 36 bit). Fixes a major performance hit seen on newer servers where an incorrectly programmed memory region length affects the PCI device mappings. While here, make sure to invalidate the TLB after programming MSRs and fix an incorrect behavior found by deraadt@ where MTRRdefType was updated outside of the protected region. The fix was partly obtained from FreeBSD, tested by many. With and OK deraadt | |||
2012-07-30 | Revert previous change, and don't set IFM_AVALID | IFM_ACTIVE in ifm_status | Miod Vallat | |
to appease dhcpd, as dhcpd has now been fixed to not require this. repeated prodding and special ok deraadt@ | |||
2012-07-29 | must be zero'd (found by regress) | Eric Faurot | |
2012-07-29 | reset the session if no RCPT was accepted for the batch. | Eric Faurot | |
ok gilles@ | |||
2012-07-29 | add a flag to choose between gethostbyname and gethostbyaddr | Eric Faurot | |
2012-07-29 | fix bogus permfail when no MX is defined on a valid domain. | Eric Faurot | |
ok gilles@ | |||
2012-07-29 | - introduce xlowercase() and allow lowercase() to fail gracefully | Gilles Chehade | |
- replace all calls to lowercase() with calls to xlowercase() - in the format string expansion, lowercase() all formats we will have to reassess all calls to xlowercase() even though it has never triggered as far as I know, we can probably gracefully fail some of them. right now we're just keeping former behaviour. this commit fixes issue reported by Hugo Osvaldo Barrera where a %u format could lead to a delivery failure (ie: GILLES@openbsd.org should be expanded to gilles, not GILLES ... only for local deliveries). ok chl@ on the idea, ok eric@ on the diff | |||
2012-07-29 | get rid of A_INVALID. | Eric Faurot | |
little code cleanup while here. ok gilles@ | |||
2012-07-29 | Disable hyphenation and, for nroff, disable justification which is | Todd C. Miller | |
consistent with how mdoc behaves (and produces more readable manuals). OK schwarze@ | |||
2012-07-29 | The '-' before the flags needs to be quoted to prevent nroff | Todd C. Miller | |
from putting a line break between the '-' and the flag character. OK schwarze@ | |||
2012-07-29 | Use "\\ " not "\\~" as the non-breaking space as historic nroff | Todd C. Miller | |
doesn't support the latter. OK schwarze@ | |||
2012-07-29 | in addition to backslash-tilda, | Ingo Schwarze | |
test the more portable backslash-space as well | |||
2012-07-29 | remove the session tree from the global env and move it to mta_session.c, | Eric Faurot | |
along with mta_relay and mta_session definition. ok gilles@ | |||
2012-07-29 | whitespace cleanup, no binary change | Mike Belopuhov | |
2012-07-29 | document .PD; related to man_term.c rev. 1.88 | Ingo Schwarze | |
2012-07-29 | Two improvements from kristaps@: | Ingo Schwarze | |
Document .cc (bsd.lv rev. 1.39) and fix a typo (bsd.lv rev. 1.38). | |||
2012-07-29 | Implement .PD for -Tascii. | Ingo Schwarze | |
Reminded about the missing feature by millert@. This reduces mandoc/groff differences in base by 25%. ok millert@ | |||
2012-07-28 | zap a misleading comment | Philip Guenthe | |
2012-07-28 | lint is with us no more; remove regress tests | Philip Guenthe | |
2012-07-28 | sync struct pfloghdr with reality, pt out Johan Ryberg <johan at securit.se> | Henning Brauer | |
2012-07-28 | fix uninitialized field type in scheduler_info struct. | Charles Longeau | |
found with valgrind on -portable. ok gilles@ | |||
2012-07-28 | Return a proper error message when we end up needed to parse | Jasper Lievisse Adriaanse | |
packages, but none were provided. Similar to what fd.o does. | |||
2012-07-27 | Fix initializer botch introduced in r1.20 when 'oldval' field was | Kenneth R Westerback | |
added into middle of struct field (sic), without adding appropriate initializer values. Move field to end of struct and let 0 be it's value. Spotted and diff from David Julio. | |||
2012-07-26 | Make interface_status() assume that a link is up when IFM_AVALID | Kenneth R Westerback | |
is not set. This is what the late interface_link_status() did. Allows drivers who cannot tell what the link state is to get dhcp leases. Prodding by henning@. ok deraadt@ miod@ | |||
2012-07-26 | remove reference to no longer existing description of nonexistent devices; | Christian Weisgerber | |
ok deraadt@ tedu@, wording tweaks jmc@ | |||
2012-07-26 | now that we are current again, enable POOL_DEBUG | Otto Moerbeek | |
2012-07-26 | move to -current | Otto Moerbeek | |
2012-07-26 | rename all_state_flags to state_flags to finish the transition | Mike Belopuhov | |
to the 16 bit flags; reminded by claudio, ok henning | |||
2012-07-26 | load os passive fingerprints when testing the ruleset; ok henning | Mike Belopuhov | |
2012-07-25 | do not check ns here, we're supposed to compute it; ok krw@ deraadt@ | Otto Moerbeek | |
2012-07-25 | When reporting media state, be sure to set IFM_AVALID and IFM_ACTIVE in | Miod Vallat | |
ifm_status, for dhclient's sake. Current dhclient interface_status() considers interfaces able to report media information but not returning IFM_AVALID as down. Note that these interfaces usually have mii(4) or have specific code reporting correct values; sparc le(4) is an exception. Found the hard way by sebastia@; joint work with krw@, ok deraadt@ | |||
2012-07-24 | decls before code | Theo de Raadt | |
2012-07-23 | workaround: link this static for a release, because the upgrade script | Theo de Raadt | |
is doing something unbelievably stupid by running dynamic binaries. In about 4-5 months, someone remind me to undo this change. |