Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-20 | Merge two conditional expressions | Mike Belopuhov | |
2017-01-20 | sdmmc sd(4) devices should be marked SID_REMOVABLE, so that eject(1) can | Theo de Raadt | |
succeed. No downside in the bottom part of the driver. ok dlg krw | |||
2017-01-19 | No need for conditionals around free(9) | Mike Belopuhov | |
2017-01-19 | Zero a return value variable at the start of hifn_process() to avoid | Jonathan Gray | |
using it uninitialised in one path. | |||
2017-01-19 | Export the host time to the guest, add it as a timedelta sensor in vmmci(4) | Reyk Floeter | |
OK kettenis@ mlarkin@ | |||
2017-01-18 | Don't forget to free bounce buffer data when destroying the ring | Mike Belopuhov | |
2017-01-18 | Fixup typos reported by Adam Jeanguenat <avj at fig ! 6v6 ! org>, thanks! | Mike Belopuhov | |
2017-01-17 | Add missing malloc(9) return value check in athn_node_alloc(). | Stefan Sperling | |
ok millert@ tom@ | |||
2017-01-16 | Let it compile with debugging enabled | Mike Belopuhov | |
2017-01-16 | Clean up SCSI operation status and state defines | Mike Belopuhov | |
2017-01-16 | Make sure we're producing a 64-bit value when shifting left | Mike Belopuhov | |
Reported by brad and kettenis separately; Mark has even sent me a diff and told to commit it with OK kettenis. | |||
2017-01-14 | Revert aml_rdpciaddr changes; breaks several machines that were working | Mark Kettenis | |
before. | |||
2017-01-13 | Add vmmci(4) (VMM control interface), a simple guest-side driver for vmm(4) VMs | Reyk Floeter | |
While we don't have ACPI in vmm(4), we need a simple way to shutdown and reboot VMs gracefully but the device also allows to add more direct communications between host and guest later. OK mlarkin@ | |||
2017-01-13 | sync | Reyk Floeter | |
2017-01-13 | Add PCI ID for vmm control interface | Reyk Floeter | |
OK mlarkin@ | |||
2017-01-12 | Execute XenStore watch callbacks on a dedicated task queue | Mike Belopuhov | |
Some watch callbacks like xen_hotplug can hog the task queue for a considerable amount of time due to XenStore interrupt driven I/O operations and running them on the system task queue causes problems with other timed operations for instance during boot. Bug reported and fix tested by ajacoutot@, thanks! | |||
2017-01-12 | Rename ieee80211_mira_node_destroy() to ieee80211_mira_cancel_timeouts(). | Stefan Sperling | |
No functional change. The previous name was chosen at a time when I could not yet anticipate what this function would really end up doing. The new name should make this function's purpose more obvious, especially where it appears at strategic places in driver code. | |||
2017-01-12 | Finish initial 11n support for athn(4). | Stefan Sperling | |
The heavy lifting was done by damien@ years ago. I didn't even have to figure out what the hardware expects, the code was already there. This driver now supports MCS 0-15 in client and hostap mode. No Tx aggregation and no 40 MHz channels yet. tested by vgross@, bmercer@, tb@, jmc@, Vadim Vygonets, Peter Kay ok bmercer@ tb@ phessler@ | |||
2017-01-11 | Increase the size of the buffers used for _HID and _CID strings to be | Jonathan Gray | |
able to fit "Hyper_V_Gen_Counter_V1". ok mlarkin@ deraadt@ | |||
2017-01-11 | Use explicit_bzero() to wipe copybuffer when logging out of the console. | Frederic Cambus | |
OK deraadt@ | |||
2017-01-10 | Introduce pvbus_reboot() and pvbus_shutdown() to move the repeated | Reyk Floeter | |
tasks from the PV drivers into a central place. While here, we figured out that it is not needed to check for allowpowerdown on the hypervisor-initiated shutdown requests. OK mikeb@ | |||
2017-01-10 | Hyper-V hosts make 64 bytes of entropy available to guests in the form | Jonathan Gray | |
of a OEM0 ACPI table. acpihve(4) feeds this data into the kernel entropy pool. This is less interesting for machines with rdrand, but there are still pre ivy bridge machines running Hyper-V (including parts of Azure). ok mikeb@ reyk@ deraadt@ mlarkin@ | |||
2017-01-10 | Enable snooping on Braswell. Fixes audio distortion on Acer TravelMate | Jonathan Gray | |
B117-M. From Martin Ziemer. | |||
2017-01-09 | Remove unneeded <sys/malloc.h> from Michael W. Bombardieri. | Martin Pieuchot | |
2017-01-08 | Use a macro for the Tx timeout value. | Visa Hankala | |
OK deraadt@ kettenis@ | |||
2017-01-08 | Make aml_rdpciaddr() work for for devices behind bridges. The code now | Mark Kettenis | |
uses the mapping between AML nodes and PCI devices that we establish. Because _INIT methods may end up calling aml_rdpciaddr(), make sure we create that mapping early. Also handle devices that aren't actually present. These devices are now included in the mapping and reads will return an all-ones patterm whereas writes are a no-op.. ok mlarkin@ | |||
2017-01-08 | Display color depth alongside resolution when attaching inteldrm and | Frederic Cambus | |
radeondrm, using the same scheme as efifb(4). OK mpi@, visa@, kettenis@ | |||
2017-01-08 | Make urtwn(4) use AMRR instead of letting the firmware handle rate scaling. | Stefan Sperling | |
For now this only affects RTL8188EU chips, perhaps because the author of this patch does not own any devices containing any of the other chips (hint hint). Patch by misha aka Mikhail / mp39590 at gmail ok mpi@ | |||
2017-01-07 | regen | Mike Larkin | |
2017-01-07 | Some newer Intel Xeon E5v4 PCI ids, from Hrvoje Popovski | Mike Larkin | |
ok deraadt | |||
2017-01-07 | Remove unused MIX_CN_CIN macro, make umidi_evlen[] static, style(9). | Alexandre Ratchov | |
From Michael W. Bombardieri. Thanks. | |||
2017-01-05 | Checking whether mbuf list is empty is done by the if_input now | Mike Belopuhov | |
2017-01-05 | Microsoft has allocated us a SubID that we can use to identify OpenBSD | Mike Belopuhov | |
2017-01-05 | Don't let producer index become equal with the consumer when writing | Mike Belopuhov | |
A nod to the re.c commit by dlg@, perhaps pure paranoia, but works nevertheless. While here replace a more expensive modulo operation with a subtraction. | |||
2017-01-04 | In the set_params() routine, remove the AUDIO_ENCODING_ULINEAR case | Alexandre Ratchov | |
as upper layers calls it with AUDIO_ENCODING_ULINEAR_{LE,BE} only. | |||
2017-01-04 | better handle empty or full rx rings. | David Gwynne | |
currently re appears to end up spinning on landisk. the most obvious cause of this would be an inability to add entries on the rx ring when we run out of mbufs. cope with this by calling rxeof from the isr when the FIFO_OVERFLOW status bit is set. rxeof in turn unconditionally tries to fill the rx ring, even if it doesnt dequeue any packets off the ring. while here limit the number of entries that can go on the rx ring to 1 less than the size of the ring. a full ring looks the same as an empty ring (cos the producer and consumer are the same in both cases), so avoid letting this happen. ok deraadt@ who hit problems on his landisk and tested this diff | |||
2017-01-03 | Add simplefb(4), a driver to support the framebuffer set up by the firmware | Mark Kettenis | |
on some platforms that use device trees. Works on Allwinner (sunxi) and should also work on Raspberry Pi (broadcom) armv7 platforms. ok jsg@, visa@ | |||
2017-01-03 | No need to set use_maxpkt twice. From Michael W. Bombardieri. Thanks. | Alexandre Ratchov | |
2017-01-03 | If gain is above MAX, no need to check whether it's below MIN. | Alexandre Ratchov | |
From Michael W. Bombardieri. Thanks. | |||
2017-01-03 | No need to include sys/malloc.h. From Michael W. Bombardieri. Thanks. | Alexandre Ratchov | |
2016-12-29 | Eliminate 68 unused static variables that gcc complains about. | Kenneth R Westerback | |
ok deraadt@ | |||
2016-12-27 | Add cast to silence warnings generated by clang. | Mark Kettenis | |
ok mpi@ | |||
2016-12-26 | Fix typo, happend -> happened | Jeremie Courreges-Anglas | |
2016-12-24 | Make the boot programs support booting from softraid on 4K byte sector | YASUOKA Masahiko | |
disks. test gonzalo ok tom krw jsing | |||
2016-12-24 | Remove some unused variables that have been removed upstream as well. | Mark Kettenis | |
Fixes some clang warnings. ok jsg@ | |||
2016-12-24 | Put a bit more unused code under #ifdef notyet to prevent a clang warning. | Mark Kettenis | |
2016-12-23 | Define HAL_OPCODE using enum ieee80211_opmode to prevent clang from warning | Mark Kettenis | |
about an implicit enum conversion. ok stsp@ | |||
2016-12-23 | Add missing sentinel. | Mark Kettenis | |
ok deraadt@ | |||
2016-12-23 | Hide static inline functions that are only used in debug code behind the same | Mark Kettenis | |
#ifdef as the debug code itself. Prevents clang from warning about these functions being unused. ok stsp@, deraadt@ | |||
2016-12-23 | Implement disk detaching | Mike Belopuhov | |