Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-01 | Add RX path and enable monitor mode. | Marcus Glocker | |
2007-06-01 | ufs1_daddr_t cleanup, okay otto@ | Pedro Martelletto | |
2007-06-01 | Uninline bio_doread(), okay art@ | Pedro Martelletto | |
2007-06-01 | remove strings from sensor.desc which are now present in sysctl variable ↵ | Constantine A. Murenin | |
names; ok grange@ | |||
2007-06-01 | remove ofw devices which we don't use; that way of mixing devices is crazy | Theo de Raadt | |
(means i also don not have to fix the daddr_t problems) ok miod | |||
2007-06-01 | daddr64_t changes; not fssize is still an int; ok pedro@ | Otto Moerbeek | |
2007-06-01 | backout r1.33: temperature sensor description was removed on purpose, | Constantine A. Murenin | |
because it started to be part of the sysctl variable name ok deanna@, dlg@ | |||
2007-06-01 | Revert INTEL_82915GM part of tedu's commit as it hung my T43 | Bjorn Sandell | |
ok tedu@ | |||
2007-06-01 | Convert sensorsd to use two-level data-structures. This makes sensorsd be | Constantine A. Murenin | |
more consistent with the current sensors framework, conserves some memory, and will make it easier to implement hotplugging and other nifty features in the future. This does not change any other functionality ATM. OK henning@, beck@. | |||
2007-06-01 | Infrastructure to allow root on wd0. | Miod Vallat | |
2007-06-01 | very small clean-up of dependencies list handling. | Marc Espie | |
2007-06-01 | FIBMAP is used by nothing; checked by miod and pvalchev | Theo de Raadt | |
2007-06-01 | some pentium 4 machines are 64-bit and have EST, but a different msr to | Ted Unangst | |
get bus clock. copy in some more code from i386 to deal with both families, and be more watchful for unknown models. fixes a panic reported by johan lindman. ok gwk | |||
2007-06-01 | check return value of findblkmajor; this fixes a crash on vax during boot. | Marco Peereboom | |
add check for failed geteblk. exclude rx during boot probe. help miod todd ok todd | |||
2007-06-01 | apply the same checks on extraction that are done during pkg_create | Marc Espie | |
(modes and owners without annotation WILL be refused). Somewhat pedantic: skip archive entry during extraction of links/symlinks. Doesn't change a thing, except in the very rare case where a package would end with a link in the packing-list. Now we're able to detect a premature end of the tarball. (okay, it's an obscure bug, I haven't even met it for real. So what ?) | |||
2007-06-01 | Replace comment in Swedish. -moj | Mats O Jansson | |
2007-06-01 | paranoid snprintf length calculation to avoid a possible buffer | Peter Valchev | |
overflow in SSL session id parsing (by reaching a negative size arg) ok henning | |||
2007-06-01 | add RAID to the list of partition types for which we do not prompt for a | Todd T. Fries | |
filesystem ok krw@ | |||
2007-06-01 | don't store stuff in the plist, use the handle which is there for that. | Marc Espie | |
so loop directly over $set->older for replacements. | |||
2007-06-01 | avoid potentially bad snprintf construct; ok henning millert otto | Peter Valchev | |
2007-06-01 | compute real list. | Marc Espie | |
2007-06-01 | remove strings from sensor.desc which are now present in sysctl variable ↵ | Constantine A. Murenin | |
names; ok grange@ | |||
2007-06-01 | wipe tablet.h that was used by tb(4) that was | Robert Nagy | |
removed months ago; ok deraadt@ | |||
2007-06-01 | Sync return value section with reality. | Moritz Jodeit | |
ok jmc@, "love it" deraadt@ | |||
2007-06-01 | Instead of reexporting PAGE_SIZE from assym.h which causes warnings | Artur Grabowski | |
for locore, just include machine/param.h in vector.S | |||
2007-06-01 | Fix snprintf(9) truncation check and skip the check for -1 because | Moritz Jodeit | |
only the libc snprintf(3) could return this. ok krw@ | |||
2007-06-01 | micro-optimizations | Marc Espie | |
2007-06-01 | Set BTF_UP before hci_enable() to make hci_unit_lookup() work; ok gwk | Uwe Stuehler | |
2007-06-01 | Nuke 'ufs_lbn_t', okay otto@ deraadt@ krw@ beck@ | Pedro Martelletto | |
2007-06-01 | set hiwat mark for some of the more popular pools to reduce bouncing | Ted Unangst | |
ok art bob | |||
2007-06-01 | workq_add_task() flags argument position changed | Uwe Stuehler | |
2007-06-01 | s/endianess/endianness/ | Alexandre Anriot | |
ok jmc@ | |||
2007-06-01 | ufs_daddr_t is a dead type. growfs is the only program that uses it, yet | Theo de Raadt | |
it is ffs1-aware only. therefore all the types are on disk, and thus, they are actually int32_t. ok pedro | |||
2007-06-01 | some architectures called setroot() from cpu_configure(), *way* before some | Theo de Raadt | |
subsystems were enabled. others used a *md_diskconf -> diskconf() method to make sure init_main could "do late setroot". Change all architectures to have diskconf(), use it directly & late. tested by todd and myself on most architectures, ok miod too | |||
2007-06-01 | Add two constraints to V1 disklabels: | Kenneth R Westerback | |
1) All partitions must start before the end of the disk. 2) All partitions must end at or before the end of the disk. Partitions not satisfying these constraints will be truncated and marked FS_UNUSED. ok otto@ deraadt@ | |||
2007-06-01 | Provide carefully crafted DEADBEEF* values, this was initially forgotten in | Miod Vallat | |
the commit which enabled DEADBEEF* overrides, then values have been discussed a bit more and improved; reminded by and ok art@ | |||
2007-06-01 | cleanup of 'ufs1_daddr_t', first round, okay deraadt@ | Pedro Martelletto | |
2007-06-01 | Add additional flag to indicate that we have a metdadata io pending; this | Marco Peereboom | |
way if we shut down the system we can make sure that it makes it onto disk before scsibus detach. ok dlg | |||
2007-06-01 | No need for tape fields to be daddr_t. int will do. | Kenneth R Westerback | |
ok beck@ deraadt@ | |||
2007-06-01 | factor out duplicated code to allocate state key and cross-reference it | Henning Brauer | |
with a state entry into a new pf_alloc_state_key() function and use it everywhere. makes upcoming changes way easier and is cleaner anyway. conceptually agreed by ryan, but he's on the road now ;( | |||
2007-06-01 | Intel(R) -> Intel | Jason McIntyre | |
2007-06-01 | more completely safe daddr_t -> daddr64_t | Theo de Raadt | |
2007-06-01 | Move a useless warning to the only case that uses it (-f) from canacar@ | Todd T. Fries | |
ok beck@ | |||
2007-06-01 | format_op df_startblk can be a daddr64_t too | Theo de Raadt | |
2007-06-01 | initialize the rings | Reyk Floeter | |
2007-06-01 | fold pf_test_tcp(), pf_test_udp(), pf_test_icmp(), pf_test_other() into | Henning Brauer | |
one - pf_test_rule(). now we have one place to make things clearer and maybe find another few performance bits :) shrinks i386 GENERIC by 11K, no measurable performance impact or gain. lots lots lots lots lots of testing and headbanging with ryan, performance testing ckuethe. ok ryan | |||
2007-06-01 | add support for local and remote branch checkout. for example, | Niall O'Higgins | |
cvs co -rOPENBSD_3_0 works now. along the way, simplify and rationalise code and fix a few nits. ok joris@ xsa@ ray@ | |||
2007-06-01 | Check return code for resource allocation. | Marco Peereboom | |
prompted by tedu | |||
2007-06-01 | dont request zeroed memory when we allocate data regions for buffers. this | David Gwynne | |
moves memset from the 20th most expensive function in the kernel to the 331st when doing heavy io. ok tedu@ thib@ pedro@ beck@ art@ | |||
2007-06-01 | decouple the allocated number of vnodes from the "desiredvnodes" variable | Bob Beck | |
which is used to size a zillion other things that increasing excessively has been shown to cause problems - so that we may incrementally look at increasing those other things without making the kernel unusable. This diff effectivly increases the number of vnodes back to the number of buffers, as in the earlier dynamic buffer cache commits, without increasing anything else (namecache, softdeps, etc. etc.) ok pedro@ tedu@ art@ thib@ |