Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-11-24 | remove __GNUC_PREREQ__(2, 96) block because lint pukes; idea for solution ↵ | Theo de Raadt | |
from miod | |||
2005-11-24 | use WANTLINT= (on all architectures) | Theo de Raadt | |
2005-11-24 | sync | Theo de Raadt | |
2005-11-24 | add lint-specific hacks. at the same time, clean out a lot of ancient | Theo de Raadt | |
cruft for old compilers and environments. there may be a 2nd round of polishing after this; ok miod and others | |||
2005-11-24 | fix use after free introduced in r1.30. ok deraadt@ | Moritz Jodeit | |
2005-11-24 | bye bye lkm/vfs dir | Theo de Raadt | |
2005-11-24 | more empty files for lint to chew on (on the vax) | Theo de Raadt | |
2005-11-24 | include more architectures in the list (even though some do not compile | Theo de Raadt | |
this, but do it entirely in the compiler); ok miod | |||
2005-11-24 | code is not being used; toss into Attic | Theo de Raadt | |
2005-11-24 | memset(); | Xavier Santolaria | |
2005-11-24 | wi and ubt are network drivers so should be DV_IFNET, | Alexander Yurchenko | |
not DV_DULL. Spotted by miod@. | |||
2005-11-24 | "hmac" not "hmc", notice by <gwyllion at ulyssis dot org> | Hans-Joerg Hoexer | |
2005-11-24 | ural should be DV_IFNET, not DV_DULL. noticed by ian@. | Alexander Yurchenko | |
ok many. | |||
2005-11-24 | don't redefine BGE_PCIMISCCTL_ENDIAN_WORDSWAP and lower the delay while | Federico G. Schwindt | |
waiting for the firmware. tested and ok brad@ | |||
2005-11-24 | Remove kernfs, okay deraadt@. | Pedro Martelletto | |
2005-11-24 | ike has used hmac sha1/md5 since ever. So call 'em hmac-sha1/md5. | Hans-Joerg Hoexer | |
2005-11-24 | remove tests for keyed md5/sha1, we only have hmacs | Hans-Joerg Hoexer | |
2005-11-24 | Make clear we only have "hmac-sha1" and "hmac-md5". | Hans-Joerg Hoexer | |
2005-11-24 | Remove old-style keyed sha1/md5. We only support hmac-sha1/md5. | Hans-Joerg Hoexer | |
Noticed the hard way by <raff at brodewicz dot pl> | |||
2005-11-24 | respect TMPDIR; | Xavier Santolaria | |
2005-11-24 | minor knf + snprintf() return check; | Xavier Santolaria | |
2005-11-24 | typo; pr4916; from frantisek holop <minusf@obiit.org> | Michael Shalayeff | |
2005-11-24 | #if 0 doesnt belong here | David Gwynne | |
2005-11-24 | kill trailing whitespace; | Jason McIntyre | |
2005-11-24 | missing full stop; | Jason McIntyre | |
2005-11-24 | repair indent that cvs has scrwed make it extra confusing | Michael Shalayeff | |
2005-11-24 | print something out when we hit unsupported devices. hopefully we can | David Gwynne | |
pick up a dmesg with them. | |||
2005-11-24 | white space fixes | David Gwynne | |
2005-11-24 | break the 1:1 mapping of esm sensors to kernel sensors. according to | David Gwynne | |
jordan theres an esm sensor that packs the status of four drive slots into a single reading, but it should be represented in the kernel as four separate sensors. some of the sensors (such as the pci slot ones and the hotplug status) should probably be dealt with in the same way. so esm sensors now have a list of their own types, and a mapping of these types to kernel sensor types. instead of storing the kernel sensor in the esm_sensor struct, allocate the two separately so esm_sensor can point to multiple kernel sensors. make the drives sensor fill out 4 kernel sensors. it still works on my box, but i dont have a machine old enough to see if the packed esm sensor turns into 4 kernel ones without problems. i hate how theres no mechanism to remove kernel sensors after you use SENSOR_ADD. ok marco@ | |||
2005-11-24 | splimp -> splhigh | Brad Smith | |
ok martin@ | |||
2005-11-24 | splimp -> spluba | Brad Smith | |
ok martin@ | |||
2005-11-24 | splimp -> spl6 | Brad Smith | |
ok martin@ | |||
2005-11-24 | splimp -> splbio | Brad Smith | |
ok martin@ | |||
2005-11-24 | splimp -> splvm | Brad Smith | |
ok martin@ | |||
2005-11-24 | splimp -> splnet | Brad Smith | |
ok martin@ | |||
2005-11-24 | add AMD 768 interrupt router PCI id and use the proper id for the AMD 766 ↵ | Brad Smith | |
chipset. Thanks to Gordon Willem Klok <gklok at cogeco dot ca> for testing on a 768 based board. | |||
2005-11-24 | undelete died a while back; millert ok | Theo de Raadt | |
2005-11-24 | spacing | Theo de Raadt | |
2005-11-24 | - document `-i' and `-j' options, for which support was added a couple | Niall O'Higgins | |
of days ago. | |||
2005-11-23 | an empty stub file for lint: on the vax, lint will chew on this, but avoid it | Theo de Raadt | |
when compiling, and use the .S file instead if someone has a better solution, show it.. | |||
2005-11-23 | avoid ' which confuses make depend | Theo de Raadt | |
2005-11-23 | Deal with empty array initializers (a gcc-ism), but warn. | Chad Loder | |
2005-11-23 | Replace a C++ comment with a C comment. No code changes. | Chad Loder | |
2005-11-23 | Deal somewhat with case ranges, which is a gcc extension. | Chad Loder | |
"fine" deraadt, with his suggested modifications | |||
2005-11-23 | NOLINT -> WANTLINT | Jason McIntyre | |
ok deraadt@ | |||
2005-11-23 | make this easier for me to read by changing the locking to use the bare | David Gwynne | |
spl calls rather than ami's macro wrappers for them. ok krw@ marco@ | |||
2005-11-23 | When defragmenting a mbuf chain before transmitting it, don't allocate a mbuf | Damien Bergamini | |
cluster if the payload fits in the header. From NetBSD (scw@) | |||
2005-11-23 | Be more robust when handling Rx interrupts. If we can't allocate and DMA map | Damien Bergamini | |
a new mbuf, just discard the received frame and reuse the old mbuf. From NetBSD (joerg@) | |||
2005-11-23 | fix my previous commit. don't leak an mbuf. | Damien Bergamini | |
2005-11-23 | Be more robust when handling Rx interrupts. If we can't allocate and DMA map | Damien Bergamini | |
a new mbuf, just discard the received frame and reuse the old mbuf. From NetBSD (joerg@) |