summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2013-04-12Now we can handle bitbanging enable the fallback method of gettingJonathan Gray
the crt edid if normal gmbus access failed. Seems to resolve problems Christopher Zimmermann was seeing fetching the crt edid.
2013-04-12Double-register load and store instructions using an odd-numbered register asMiod Vallat
the low part trigger an `illegal instruction' trap on the 88110 (and I can't see this documented anywhere in the manual). Of course there is code "in the wild" which uses such constructs (libgmp is one such example). Extend double_reg_fixup() to take the trap type as an extra argument, and explicitely allow ld.d or st.d instructions with odd-numbered registers at aligned addresses if we are invoked from the `illegal instruction' trap handler, to give this code a chance to run on 88110.
2013-04-11Remove the extern keyword from function declarations, documentMartin Pieuchot
sysctl declarations, move variables and functions used in only one place in their corresponding file. No functional change. No objection from markus@, ok mikeb@
2013-04-11Merge usbd_ar_pipe in usbd_abort_pipe, no functional change.Martin Pieuchot
ok ratchov@, mglocker@
2013-04-11copy out a blank string if no wmesg, so userland can rely on readingTed Unangst
p_wmesg[0] and not find junk leftover from before
2013-04-10Correctly handle data memory protection ID traps: if occuring in user mode,Miod Vallat
SIGSEGV the process; if occuring in kernel mode, check for a possible pcb_onfault to recover, before otherwise panicing. ok kettenis@
2013-04-10futex: Prevent multiple futex pool initializations.Paul Irofti
This is a temporary (ugly) fix, the pool init call should be moved from linux_elf_probe into a better place.
2013-04-10futex: Sprinkle a few debug printfs that helped me in the past.Paul Irofti
2013-04-10futex: Assert that the refcount is larger than 0 when doing futex_put.Paul Irofti
2013-04-10Remove various external variable declaration from sources files andMartin Pieuchot
move them to the corresponding header with an appropriate comment if necessary. ok guenther@
2013-04-10Merge usbd_get_device_desc() into the only function using them.Martin Pieuchot
ok mglocker@
2013-04-10Instead of refetching the descriptor from the device, just use the copyMartin Pieuchot
already in memory retrieved during the autoconf USB attach logic. This is a good example of how confusing can be the usbd_get_* functions. ok mglocker@
2013-04-10Merge usb_devinfo* helper functions into usbd_print(), nothing else useMartin Pieuchot
them. ok ratchov@, mglocker@
2013-04-10Remove unused function usb_find_desc().Martin Pieuchot
2013-04-10Fix various glitches in queue macro usage.Philip Guenther
ok millert@
2013-04-09Add a magic number to the head of the signature block. Check for magicMike Larkin
number match during signature block read during speculative unhibernate on boot. If the magic number matches but we have otherwise chosen to not unhibernate (due to kernel/memory mismatch), clear the signature block early to avoid accidentally trying to unhibernate on subsequent boots. This prevents accidental unhibernates and endless unhibernate/reboot cycles. Add a define for HIBERNATE_DEBUG for various debugging printfs (disabled by default). Finally, change some KASSERTs to warning printfs (they probably shouldn't have been KASSERTs in the first place). "looks good" deraadt@
2013-04-09newvers.sh uses 'basename' to determine the directory name to stamp theMike Larkin
kernel version ID with, but it did not account for spaces in the name, leading to version strings like "OpenBSD 5.3-current ()". Quote the call to basename to permit paths with spaces in the name. ok halex@, deraadt@
2013-04-09When submitting a request the device's default pipe is alwaysMartin Pieuchot
used, so do not pretend to support a different one and get rid of the unused usbd_do_request_flags_pipe() function. ok mglocker@
2013-04-09There's no need for usbd_get_config_desc_full() so just call usbd_get_desc()Martin Pieuchot
directly this also makes it easier to understand which function actually generates IO. ok mglocker@
2013-04-09Remove read-only ipsec variables and directly use defines instead.Martin Pieuchot
ok mikeb@, markus@
2013-04-09knf. even old ttys need love.Ted Unangst
2013-04-09Need #include "isa.h" for NISAPhilip Guenther
Diff from Christian Groessler (chris (at) groessler.org)
2013-04-09Add missing #ifdef CRYPTO around amd64_has_aesniPhilip Guenther
Diff from Silamael (Silamael (at) coronamundi.de)
2013-04-08A few changes that reduce the diffs to the Linux code. Mostly style issues,Mark Kettenis
but in one case change the errno value that gets returened to match Linux.
2013-04-08Recalculate the IP and protocol checksums of packets (re)injected viaLawrence Teo
divert(4) sockets. Recalculation of these checksums is necessary because (1) PF no longer updates IP checksums as of pf.c rev 1.731, so translated packets that are diverted to userspace (e.g. divert-packet with nat-to/rdr-to) will have bad IP checksums and will be reinjected with bad IP checksums if the userspace program doesn't correct the checksums; (2) the userspace program may modify the packets, which would invalidate the checksums; and (3) the divert(4) man page states that checksums are supposed to be recalculated on reinjection. This diff has been tested on a public webserver serving both IPv4/IPv6 for more than four weeks. It has also been tested on a firewall with divert-packet and nat-to/rdr-to where it transferred over 60GB of FTP/HTTP/HTTPS/SSH/DNS/ICMP/ICMPv6 data correctly, using IPv4/IPv6 userspace programs that intentionally break the IP and protocol checksums to confirm that recalculation is done correctly on reinjection. IPv6 extension headers were tested with Scapy. Thanks to florian@ for testing the original version of the diff with dnsfilter and Justin Mayes for testing the original version with Snort inline. Thanks also to todd@ for helping me in my search for the cause of this bug. I would especially like to thank blambert@ for reviewing many versions of this diff, and providing guidance and tons of helpful feedback. no objections from florian@ help/ok blambert@, ok henning@
2013-04-08Add new ioctl's USB_DEVICE_GET_CDESC and USB_DEVICE_GET_FDESC to usb(4).Marcus Glocker
Those are the equivalents for ugen(4)'s USB_GET_CONFIG_DESC and USB_GET_FULL_DESC. Help and OK mpi@, jmc@
2013-04-08allow octeon to find it's root device, based on the flags passed by U-Boot. ↵Jasper Lievisse Adriaanse
The ${bootcmd} needs to be something like 'bootoctlinux root=/dev/octcf0'. This will be temporary untill we have proper bootblocks, but for now, this (in combination) with an upcoming installer diff allows my CAM-0100 to autoboot straight of the disk, without having to load the kernel via TFTP. ok bcallah@ yasuoka@
2013-04-08Fix typo in ale_stop_mac().Brad Smith
From FreeBSD ok kevlo@
2013-04-08Use the fixed pixel clock for eDP in intel_dp_set_m_n()Jonathan Gray
from linux 3.8.6
2013-04-08Don't clobber crtc->fb when queue_flip failsJonathan Gray
from linux 3.8.6
2013-04-07Make the SO_BINDANY socket option also work for raw IPv6 sockets.Alexander Bluhm
OK markus@
2013-04-07check BGE_SGDIG_STS when the chip is NOT a 5717 A0, like freebsd.David Gwynne
found by david imhoff. tested by david on a 5719 and by me on a 5720 and 5721
2013-04-07david imhoff points out that the error handling in mfi_init_ccb gets theDavid Gwynne
index to which ccb to free wrong. this takes the logic from mpi/mpii/mfii which pulls the ready ccbs off the free list rather than rely on the current index from the for loop that we failed inside of. thanks to david for finding this out.
2013-04-06make kernel compileTheo de Raadt
2013-04-06fix format string % escapeStefan Fritsch
2013-04-06allow GENERIC.MP to compile again...just for shits and giggles.Jasper Lievisse Adriaanse
2013-04-06i missed this file too.Ted Unangst
2013-04-06i missed a file, crap. found by deraadtTed Unangst
2013-04-06there aren't any locks in here anymore, so we don't need lock.hTed Unangst
2013-04-06shuffle around some poison code, prototypes, values...Ted Unangst
allow some more pool debug code to be enabled if not compiled in bump poison size back up to 64
2013-04-06rthreads are always enabled. remove the sysctl.Ted Unangst
ok deraadt guenther kettenis matthew
2013-04-05Even though Sandy Bridge and Ivy Bridge have stolen memory, substracting itMark Kettenis
from the GTT aperture doesn't make a lot of sense. On some machines the amount of stolen memory is the same size of even larger than the aperture! So pretend that there is no stolen memory on these systems for now. ok jsg@
2013-04-05don't hardcode the size of u-boot's argv, but use a define instead.Jasper Lievisse Adriaanse
to be re-used shortly elsewhere..
2013-04-05Brad didn't even try building the ramdisk, because it is 7.5K oversize.Theo de Raadt
2013-04-05remove some obsolete castsTed Unangst
2013-04-05unfinished opti device code is never called or usedTed Unangst
2013-04-05Add the remaining USB Wifi adapters to the CD RAMDISK media for usersBrad Smith
using the media with upgrades - athn(4), atu(4), otus(4), rsu(4), uath(4) ok deraadt@
2013-04-05Fix USB athn(4) to be able to build on the RAMDISK. RAMDISK has SMALL_KERNELBrad Smith
so there is no HostAP. athn_usb_newassoc() would return if not in HostAP mode so just stub out the function and don't build the callback function for the RAMDISK. ok deraadt@
2013-04-05enable com3 on both i386 and amd64 (com4 config is added, but disabled)Theo de Raadt
ok miod kettenis tedu
2013-04-05move the bounds check for execbuffer relocation count closer to linuxJonathan Gray
ok kettenis@