Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-06-19 | Use 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-19 | and in debug code, too | Theo de Raadt | |
2011-06-19 | stop trying to be clever with the softc name | Theo de Raadt | |
2011-06-19 | Kill the "lockname" argument to disk_construct(). | Matthew Dempsky | |
ok deraadt@ | |||
2011-06-19 | Clean up ioctl handler a bit and rearrange the receive filter callback to | YASUOKA Masahiko | |
the proper location. this diff from brad@ ok and tested by yasuoka@ | |||
2011-06-19 | another missing message | Marc Espie | |
2011-06-19 | Fix a typo: change "!(reg >> pin) & 1" to "!((reg >> pin) & 1)" as | Matthew Dempsky | |
intended. ok damien@ | |||
2011-06-18 | pass the correct size to memset | Jonathan Gray | |
spotted by clang, ok matthew@ | |||
2011-06-18 | sync | Theo de Raadt | |
2011-06-18 | Change sizeof(&kdfinfo2) to sizeof(kdfinfo2). | Matthew Dempsky | |
ok deraadt@ | |||
2011-06-18 | the %m argument as used by syslog does not eat an argument, so skip over it. | Ted Unangst | |
ok martynas | |||
2011-06-18 | Use 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-18 | Cleanup MSI code a bit by moving the code to eanble/disable MSIs into | Mark Kettenis | |
separate functions and install them as route/unroute functions for the MIS pseudo-PIC. | |||
2011-06-18 | Have -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-18 | Warn 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-17 | Remove obsolete mbuf PF_TAG_FRAGCACHE flag. | Alexander Bluhm | |
ok henning@ | |||
2011-06-17 | setproctitle for a mux master that has been gracefully stopped; | Damien Miller | |
bz#1911 from Bert.Wesarg AT googlemail.com | |||
2011-06-17 | factor out multi-choice option parsing into a parse_multistate label | Damien Miller | |
and some support structures; ok dtucker@ | |||
2011-06-17 | the protocol version should be unsigned; bz#1913 reported by mb AT | Damien Miller | |
smartftp.com | |||
2011-06-17 | make the pre-auth privsep slave log via a socketpair shared with the | Damien Miller | |
monitor rather than /var/empty/dev/log; ok dtucker@ deraadt@ markus@ | |||
2011-06-17 | close pipe_prnt[0] earlier, foremost before forking the dns process | Henning Brauer | |
pointed out by Running Razor <runningrazor at web dot de> | |||
2011-06-17 | don't leak fds in failure path (ie when hosts are down) | Jonathan Gray | |
from Martin Matuska in PR 6624 ok phessler@ | |||
2011-06-17 | add acpitoshiba; ok pirofti | Jason McIntyre | |
2011-06-17 | make this page a little more like acpithinkpad(4); ok pirofti | Jason McIntyre | |
2011-06-17 | Mention the F2 Fast Ethernet PHY | Kevin Lo | |
From Brad | |||
2011-06-17 | Explicitly clear 1000baseT control register for F1 PHY used in | Kevin 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-17 | Add acpitoshiba(4), while at it reformat the list a bit. | Paul Irofti | |
2011-06-17 | Mention acpitoshiba(4). | Paul Irofti | |
2011-06-17 | Man page for the new acpitoshiba driver. Prodded by deraadt@. | Paul Irofti | |
2011-06-17 | Enable MSI support; tested by krw@, Mark Peoples, and | Kevin Lo | |
Abel Abraham Camarillo Ojeda. From Brad | |||
2011-06-17 | Enable MSI support; tested by Thomas Pfaff | Kevin Lo | |
From Brad | |||
2011-06-17 | M_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-17 | add missing the copyright notice. | YASUOKA Masahiko | |
delete garbage lines. ok syuu@ | |||
2011-06-17 | Unbreak tree. $OpenBSD$ tag needs to be in a comment! Bad | Kenneth R Westerback | |
pirofti@. | |||
2011-06-17 | Update ch(4) to use ISO C style function definitions to avoid | Matthew Dempsky | |
confusing Coccinelle. No binary change. ok dlg@ | |||
2011-06-16 | Enable acpitoshiba by default in GENERIC. | Paul Irofti | |
Prodded by deraadt@ and the lack of testers on tech@. | |||
2011-06-16 | Import 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-16 | Use the current page not he first page when working out whether to | Owain 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-16 | QEMU pretends to emulate a different prehistoric Intel host bridge. | Mark Kettenis | |
From Brad. | |||
2011-06-16 | Enable msi support on iwn. | Owain Ainsworth | |
tested by many for over a week. ok kettenis@ phessler@. | |||
2011-06-16 | Raise the number of interrupt sources per CPU from 32 to 64. This effectively | Mark 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-16 | Prototypes of functions generated by mksubr. | Otto Moerbeek | |
2011-06-16 | Local changes to make this work on OpenBSD. Not used functions disabled for | Otto Moerbeek | |
now. | |||
2011-06-16 | mksubr from freebsd, to be used to generate flags to name translation | Otto 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-16 | remove redundant values | Marc Espie | |
2011-06-16 | Enable MSI on newish PCIe hardware, essentially everything handled by the Linux | Mark 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-16 | clamp stratum to NTP_MAXSTRATUM. lingering in my tree for ages. someone likely | Henning Brauer | |
deserves to get credited for this, but I have no idea where that came from | |||
2011-06-16 | Ethernet driver merged from IIJ's contribution code. | Takuya ASADA | |
2011-06-16 | repair broken tally display | Marc Espie | |
2011-06-16 | Removes unused variables. | Martin Pieuchot | |
ok miod@ |