summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-19Use disk_lock/disk_unlock directly and in the same way in these drivers,Theo de Raadt
rather than using various wrappings. Convert vnd to using the sc_dk rwlock instead of using one of its own. ok matthew
2011-06-19and in debug code, tooTheo de Raadt
2011-06-19stop trying to be clever with the softc nameTheo de Raadt
2011-06-19Kill the "lockname" argument to disk_construct().Matthew Dempsky
ok deraadt@
2011-06-19Clean up ioctl handler a bit and rearrange the receive filter callback toYASUOKA Masahiko
the proper location. this diff from brad@ ok and tested by yasuoka@
2011-06-19another missing messageMarc Espie
2011-06-19Fix a typo: change "!(reg >> pin) & 1" to "!((reg >> pin) & 1)" asMatthew Dempsky
intended. ok damien@
2011-06-18pass the correct size to memsetJonathan Gray
spotted by clang, ok matthew@
2011-06-18syncTheo de Raadt
2011-06-18Change sizeof(&kdfinfo2) to sizeof(kdfinfo2).Matthew Dempsky
ok deraadt@
2011-06-18the %m argument as used by syslog does not eat an argument, so skip over it.Ted Unangst
ok martynas
2011-06-18Use MSI interrupts when available. Tested by deraadt@ and jsg@.Claudio Jeker
Removing a leftover M from my tree makes also my machine happy.
2011-06-18Cleanup MSI code a bit by moving the code to eanble/disable MSIs intoMark Kettenis
separate functions and install them as route/unroute functions for the MIS pseudo-PIC.
2011-06-18Have -T[x]html print out the link target for `Lk'Ingo Schwarze
if no link title is provided. Based on a patch by Tim van der Molen, tweaked by kristaps@.
2011-06-18Warn and stop processing if the format string ends with an backslash.Philip Guenthe
From Andres Perera (andres.p at zoho.com), ok otto@, millert@
2011-06-17Remove obsolete mbuf PF_TAG_FRAGCACHE flag.Alexander Bluhm
ok henning@
2011-06-17setproctitle for a mux master that has been gracefully stopped;Damien Miller
bz#1911 from Bert.Wesarg AT googlemail.com
2011-06-17factor out multi-choice option parsing into a parse_multistate labelDamien Miller
and some support structures; ok dtucker@
2011-06-17the protocol version should be unsigned; bz#1913 reported by mb ATDamien Miller
smartftp.com
2011-06-17make the pre-auth privsep slave log via a socketpair shared with theDamien Miller
monitor rather than /var/empty/dev/log; ok dtucker@ deraadt@ markus@
2011-06-17close pipe_prnt[0] earlier, foremost before forking the dns processHenning Brauer
pointed out by Running Razor <runningrazor at web dot de>
2011-06-17don't leak fds in failure path (ie when hosts are down)Jonathan Gray
from Martin Matuska in PR 6624 ok phessler@
2011-06-17add acpitoshiba; ok piroftiJason McIntyre
2011-06-17make this page a little more like acpithinkpad(4); ok piroftiJason McIntyre
2011-06-17Mention the F2 Fast Ethernet PHYKevin Lo
From Brad
2011-06-17Explicitly clear 1000baseT control register for F1 PHY used inKevin Lo
AR8132 FastEthernet controller. The PHY has no ability to establish a gigabit link. Previously only link parters which support down-shifting was able to establish link. This change should fix a long standing link establishment issue of AR8132. From Brad via FreeBSD Tested by krw@, edd@, Abel Abraham Camarillo Ojeda, Gabriel Linder
2011-06-17Add acpitoshiba(4), while at it reformat the list a bit.Paul Irofti
2011-06-17Mention acpitoshiba(4).Paul Irofti
2011-06-17Man page for the new acpitoshiba driver. Prodded by deraadt@.Paul Irofti
2011-06-17Enable MSI support; tested by krw@, Mark Peoples, andKevin Lo
Abel Abraham Camarillo Ojeda. From Brad
2011-06-17Enable MSI support; tested by Thomas PfaffKevin Lo
From Brad
2011-06-17M_WAITOK cleanup of two cases:Michael Knudsen
1) Allocating with M_WAITOK, checking for NULL, and calling panic() is pointless (malloc() will panic if it can't allocate) so remove the check and the call. 2) Allocating with M_WAITOK, checking for NULL, and then gracefully handling failure to allocate is pointless. Instead also pass M_CANFAIL so malloc() doesn't panic so we can actually handle it gracefully. 1) was done using Coccinelle. Input from oga. ok miod.
2011-06-17add missing the copyright notice.YASUOKA Masahiko
delete garbage lines. ok syuu@
2011-06-17Unbreak tree. $OpenBSD$ tag needs to be in a comment! BadKenneth R Westerback
pirofti@.
2011-06-17Update ch(4) to use ISO C style function definitions to avoidMatthew Dempsky
confusing Coccinelle. No binary change. ok dlg@
2011-06-16Enable acpitoshiba by default in GENERIC.Paul Irofti
Prodded by deraadt@ and the lack of testers on tech@.
2011-06-16Import acpitoshiba driver.Paul Irofti
This is originally written by Hiroyuki Aizu, ported and integrated in our tree by Javier Vazquez <javama4 AT gmail> with tweaks and suggestions by me. Import prodded by deraadt@ and the lack of testers on tech@.
2011-06-16Use the current page not he first page when working out whether toOwain Ainsworth
deactivate pages after syncing. While here, don't check flags for PQ_INACTIVE (this is the only place outside uvm_page.c where this is done) because pagedeactivate does this already. First part from Christian Ehrhart, second from me. Both ok ariane@. I meant to commit this about a week ago, but accidentally commited to my local cvs mirror then forgot about it.
2011-06-16QEMU pretends to emulate a different prehistoric Intel host bridge.Mark Kettenis
From Brad.
2011-06-16Enable msi support on iwn.Owain Ainsworth
tested by many for over a week. ok kettenis@ phessler@.
2011-06-16Raise the number of interrupt sources per CPU from 32 to 64. This effectivelyMark Kettenis
triples the number of interrupt vectors that can be handled by the primary CPU. Important for MSI, but could also fix some issues with large machines loaded with a lot of devices. tested by many; ok deraadt@, marco@
2011-06-16Prototypes of functions generated by mksubr.Otto Moerbeek
2011-06-16Local changes to make this work on OpenBSD. Not used functions disabled forOtto Moerbeek
now.
2011-06-16mksubr from freebsd, to be used to generate flags to name translationOtto Moerbeek
for kdump. Added missing license to the file, with the kind permission of the author David Kirchner. Not used yet. ok miod@
2011-06-16remove redundant valuesMarc Espie
2011-06-16Enable MSI on newish PCIe hardware, essentially everything handled by the LinuxMark Kettenis
e1000e driver (which enables MSI as well), leaving everything handled by the old Linux e1000 driver (which doesn't enable MSI) use legacy interrupts. tested by many; ok jsg@
2011-06-16clamp stratum to NTP_MAXSTRATUM. lingering in my tree for ages. someone likelyHenning Brauer
deserves to get credited for this, but I have no idea where that came from
2011-06-16Ethernet driver merged from IIJ's contribution code.Takuya ASADA
2011-06-16repair broken tally displayMarc Espie
2011-06-16Removes unused variables.Martin Pieuchot
ok miod@