Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-07-16 | Implement pckbc_xt_translation() in gsckbc. Thus, we can attach pckbd instead of | Miod Vallat | |
gsckbd; the former will cause a proper translation page to be selected by the keyboard. Because of this, we no longer depend on the page the keyboard is left in by the PDC (page 2 for all machines but the PrecisionBook, which is in page 3), and there is no longer any need to use separate keyboard maps. | |||
2008-07-16 | Now that uvm_pglistalloc() does not lose on large memory gaps, do not | Miod Vallat | |
restrict the memory allocation range in _dmamem_alloc(). | |||
2008-07-16 | some archaic 'n = a(b), c(d)' use that confused lint | Martynas Venckus | |
ok millert@ | |||
2008-07-16 | install infnan.3 only for vax. pointed out by millert@ | Martynas Venckus | |
ok millert@ | |||
2008-07-16 | 'no subject' check is never triggered. check if it's actually empty | Martynas Venckus | |
ok millert@ | |||
2008-07-16 | add -E flag and 'skipempty' option to skip sending messages with | Martynas Venckus | |
empty bodies. useful for sending mails from crontabs. from rivo nurges <rix at estpak dot ee>, with missing 'skipempty' documentation and usage update from me ok millert@ | |||
2008-07-16 | ansify infnan example. sure millert@ | Martynas Venckus | |
2008-07-16 | relay_connect() may fail, close the session in the bindany callback | Reyk Floeter | |
if it does. | |||
2008-07-16 | infnan always returned wrong values, because compiler assumed it | Martynas Venckus | |
returns integer value, so add missing prototype ok millert@ | |||
2008-07-16 | better description for TMPDIR. from millert@ | Martynas Venckus | |
2008-07-16 | man page tweaks: | Martynas Venckus | |
- for argument of -f flag, name -> file - document TMPDIR, better description from millert@ ok millert@ | |||
2008-07-16 | - use strncmp/strncasecmp instead of comparing by character | Martynas Venckus | |
- simplify istrlcpy, no need to check for isupper - line[0] is redundant, because strcasecmp will take care of it ok millert@ | |||
2008-07-16 | use getsockname() to find out the local address of a connection before | Reyk Floeter | |
doing a nat lookup. this fixes nat lookups when the relay is listening to a wildcard IPv4/IPv6 address (like 0.0.0.0 or ::). | |||
2008-07-16 | - err with the pathbuf, if we know it | Martynas Venckus | |
- use tmpdir instead of /tmp ok millert@ | |||
2008-07-16 | fix nat lookup to use the correct pf_addr offset. now it also works | Reyk Floeter | |
with ipv6. | |||
2008-07-16 | this loop index should be automatic, not static | Damien Miller | |
2008-07-16 | rename variable first_gc -> last_gc (since it is actually the last | Damien Miller | |
in the list). | |||
2008-07-16 | Dynamically allocate fd_sets so we are not limited to FD_SETSIZE | Todd C. Miller | |
connections. With help from djm@. OK djm@ | |||
2008-07-16 | Cleanup #define maze leftover from pftop compatibility. | Can Erkin Acar | |
Pointed out by mcbride@, makes sense henning@ | |||
2008-07-16 | link udp pcbs to pf states, same as done for tcp already | Henning Brauer | |
ok markus, also tested david sthen | |||
2008-07-16 | Enable the read DMA engine's PCI read request burst length long burst | Brad Smith | |
mode (4KB) for PCIe chips. This resolves the poor TX performance for the PCIe chips. The result being a bit under double the TX performance on a Gig connection (roughly 495 Mb/s -> 940 Mb/s). Tested by reyk@, sthen@, brad@ and a few end users. | |||
2008-07-15 | Add a timecounter based on the $sys_tick register, and use it on machines | Mark Kettenis | |
that have it. Initial diff from art@. | |||
2008-07-15 | Use -Wa,-Av9b instead of -Wa,-Av9a such that I can use %sys_tick in an | Mark Kettenis | |
upcoming change. | |||
2008-07-15 | - chraise can be replaced with toupper; no need to check for islower | Martynas Venckus | |
- remove quite some code, use strcasestr instead of reimplementing it each time - use strncasecmp, instead of comparing through each character "looks fine" millert@ | |||
2008-07-15 | set cp to the value of PAGER, so that type1 doesn't try to use it | Martynas Venckus | |
uninitialized (page=1), or use wrong previously-set value of crt (page=0). ok millert@ | |||
2008-07-15 | Backout rev 1.162. This change made us muck with with pci config space at | Mark Kettenis | |
address 0x1a and 0x1e, and that's not where the PCIe capability stuff lives. Potentially it was mucking with an IO BAR (super dangerous). But probably it was achieving nothing at all. ok dlg@, marco@, brad@ | |||
2008-07-15 | Remove some debug code that i forgot to remove in a previous commit. | Owain Ainsworth | |
Pointed out by Chris Cappuccio, thanks! | |||
2008-07-15 | Adapt some code from the FreeBSD driver required to make | Jonathan Gray | |
newer PCI Express adapters (ie 8168C*/8102*) work. V2 Checksum offload format in RTL8102 devices not yet supported. No objections from brad@. Thanks to everyone who tested. | |||
2008-07-15 | theres no need too m_adj() the mbuf by 8bytes (u_int64_t) in | Thordur I. Bjornsson | |
sis_newbuf(), so remove the call. ok and lots of prodding dlg@, brad@ | |||
2008-07-15 | make the version number stuff mandatory. | Marc Espie | |
Restrict specifications to the parts that actually make sense (in particular, remove most wildcard support, it's no longer a good idea in true version number handling), explain about v*, and be more specific about default package specs (since the fuzzyness in the original description predates several changes to bsd.port.mk). Also add version numbers and wildcards where they make sense so the examples are more complete. | |||
2008-07-15 | deprecate package names without version numbers. | Marc Espie | |
2008-07-15 | sync | Peter Valchev | |
2008-07-15 | number of pipelined requests is not 64; prodded by Iain.Morgan AT nasa.gov | Damien Miller | |
2008-07-14 | Fix struct sysioreg layout after the struct iommureg layout change; | Miod Vallat | |
ok kettenis@ | |||
2008-07-14 | Make VIDIOC_ENUM_FMT list all available formats for the attached device. | Marcus Glocker | |
2008-07-14 | Regen | Miod Vallat | |
2008-07-14 | /dev/tuner description should point out to bktr(4), spotted by jmc. | Miod Vallat | |
2008-07-14 | Do not create /dev/joy* and /dev/{r,}mcd* nodes, these devices are not | Miod Vallat | |
available on amd64. | |||
2008-07-14 | Don't lock timeouts in db_show_callout. | Artur Grabowski | |
All cpus are stopped and this cpu blocks all interrupts. It doesn't make sense to grab locks that ddb can then jump past with longjmp. Noticed by Pierre Riteau. I just forgot about the bug until reminded today. | |||
2008-07-14 | Use uvm_km_valloc_prefer_wait() instead of uvm_km_valloc_wait() in vmapbuf(). | Miod Vallat | |
ok art@ | |||
2008-07-14 | Be sure to propagate PSL_O in psw on PCXU* processors to userland processes | Miod Vallat | |
and signal handlers. ok kettenis@ | |||
2008-07-14 | Be sure to propagate PSL_O in psw on PCXU* processors to userland processes | Miod Vallat | |
and signal handlers. ok kettenis@ | |||
2008-07-14 | m_copy can return NULL, so check for it | Henning Brauer | |
problem found by "Adrian M. Whatley" <amw> and "Stephan A. Rickauer" <stephan.rickauer>, both @ni.phys.ethz.ch fix by me, ok mpf | |||
2008-07-14 | Zap some dead commons that are no longer used. | Artur Grabowski | |
"Commitski!" miod@ | |||
2008-07-14 | another mange->manage | Stuart Henderson | |
2008-07-14 | mange -> manage | Marc Balmer | |
from Markus Bergkvist <markus.bergkvist@telia.com> | |||
2008-07-14 | Finish support for uncompressed payloads (UDESCSUB_VS_FORMAT_UNCOMPRESSED). | Marcus Glocker | |
2008-07-14 | mention requirement for /dev/log inside chroot when using sftp-server | Damien Miller | |
with ChrootDirectory | |||
2008-07-14 | code(4) doesnt exist. cmp(4) is probably a bit more relevant. | David Gwynne | |
2008-07-13 | increase number of piplelined requests so they properly fill the | Damien Miller | |
(recently increased) channel window. prompted by rapier AT psc.edu; ok markus@ |