Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-10-31 | Enable softraid boot support for i386 boot(8). | Joel Sing | |
2012-10-31 | Bring softraid support to i386/stand/libsa. | Joel Sing | |
2012-10-31 | document lua.port.mk changes | Gleydson Soares | |
OK jasper@ sthen@ | |||
2012-10-31 | On amd64 OPENSSL_cpuid_setup and OPENSSL_ia32cap_P are now hidden so we don't | Mark Kettenis | |
have to go through the PLT/GOT to get at them anymore. In fact going through the GOT now fails since we no longer have a GOT entry for OPENSSL_ia32cap_P. Fixes the problem spotted by jasper@ and sthen@. Based on a diff from mikeb@ who did most of the actual work of tracking down the issue. ok millert@, mikeb@ | |||
2012-10-31 | tweak previous; | Jason McIntyre | |
2012-10-31 | Add support for Intel's Supervisor Mode Access Prevention (SMAP) feature. | Jonathan Gray | |
When enabled SMAP will generate page faults on the kernel attempting to read/write user data pages unless an override flag is set. Instructions that modify the flag are patched into copyin/copyout and friends on boot if SMAP is enabled. Those with access to hardware with SMAP can contact me for a test case. joint work with deraadt@ ok miod@ deraadt@ | |||
2012-10-31 | Some fixes for the receive filter handling. | Brad Smith | |
ok sf@ | |||
2012-10-30 | new sshd_config option AuthorizedKeysCommand to support fetching | Damien Miller | |
authorized_keys from a command in addition to (or instead of) from the filesystem. The command is run as the target server user unless another specified via a new AuthorizedKeysCommandUser option. patch originally by jchadima AT redhat.com, reworked by me; feedback and ok markus@ | |||
2012-10-30 | fdopen(3) return a FILE * not an int, so compare against NULL. | Gleydson Soares | |
no functional change OK millert@ | |||
2012-10-30 | Nuke dhclient-script and dhclient.conf 'script' directive. Do all | Kenneth R Westerback | |
interface and route configuration via ioctl's and routing sockets. This will break configurations using local enhancements of dhclient-script, which will now require alternate arrangements. Committing early to allow time to identify and develop required alternatives. Several proddings by deraadt@. | |||
2012-10-30 | introduce specialized register read and write functions | Mike Belopuhov | |
oce_{read,write}_{cfg,csr,db} for different pci bars | |||
2012-10-30 | New file holding functions to perform direct interface and routing | Kenneth R Westerback | |
maninpulations. Inspired by similar files in bgpd, dvmrpd, ldpd, etc. Necessary for imminent nuking of dhclient-script. Not linked into build at the moment. | |||
2012-10-30 | Apply a bunch of style(9) and whitespace fixes to i386/amd64 libsa, making | Joel Sing | |
the code actually diffable. No binary change. | |||
2012-10-30 | backout previous over the m_freem contention concerns | Mike Belopuhov | |
2012-10-30 | Add RCS ids to the config files. | Antoine Jacoutot | |
2012-10-30 | Actually remove the Makefiles. | Joel Sing | |
2012-10-30 | Use time_uptime for expiration values as time_second can be skewed at | Florian Obser | |
runtime while time_uptime is monotonic. Prevent underflows in pfsync(4) and pflow(4) by using signed variables. pfsync(4) problem pointed out by camield. Diff originally by dlg, frag and pflow bits by me. feedback dlg man page tweak jmc Various versions of the pflow bits tested by Hrvoje Popovski (hrvoje AT srce DOT hr), thanks! ok benno, henning, dlg | |||
2012-10-30 | Remove the now unused i386 libsa/libz Makefiles. | Joel Sing | |
ok deraadt@ | |||
2012-10-30 | Bump the default number of descriptors. | Brad Smith | |
ok mikeb@ | |||
2012-10-30 | sync | Theo de Raadt | |
2012-10-29 | Set the type of a processed MSI data record to 0, and check that the type | Mark Kettenis | |
is non-zero before handling them, like we do in pyro(4). Seems to fix issues with MSIs on sun4v, so enable them again. | |||
2012-10-29 | prefer to return oce_cmd and save on the error variable | Mike Belopuhov | |
2012-10-29 | shorten fwcmd to cmd | Mike Belopuhov | |
2012-10-29 | On UltraSPARC T1/T2, block the current strand while spinning in the hope | Mark Kettenis | |
other strands can do some useful work. Idea stolen from Linux. Results in a small, but measurable speedup doing a kernel build and reduces the system time by almost 10%. | |||
2012-10-29 | merge oce.c into if_oce.c and rename oce{reg,var}.h to if_oce{reg,var}.h | Mike Belopuhov | |
2012-10-29 | don't split mq sge paddr into low and high parts | Mike Belopuhov | |
2012-10-29 | rename oce_fw to oce_cmd and shorten MBX_SUBSYSTEM_* defines to SUBSYS_ | Mike Belopuhov | |
2012-10-29 | rearrange the function layout a bit | Mike Belopuhov | |
2012-10-29 | oce_get_fw_config is useless; ditch it | Mike Belopuhov | |
2012-10-29 | add (consistent) STANDARDS; | Jason McIntyre | |
2012-10-29 | backout possible infinit-loop (from rev 1.5) when parsing nat_d; | Markus Friedl | |
report from Thomas Proell/Siemens ProductCERT; fix from hshoexer; ok mikeb | |||
2012-10-29 | Build i386 cdboot(8) and pxeboot(8) using the same method as the amd64 | Joel Sing | |
versions. Compile all required sources directly, rather than linking against uninstalled libraries. Discussed with deraadt@ | |||
2012-10-29 | Bump version. | Joel Sing | |
2012-10-29 | Enable softraid boot support in pxeboot(8). | Joel Sing | |
2012-10-29 | Make pxeboot(8) work correctly when it is larger than 64KB in size. When | Joel Sing | |
relocating use blocks that are a maximum of 32KB in size and increment the segment registers after relocating each block. This keeps us within the confines of the %cx register and the real mode segmented addressing. | |||
2012-10-29 | Bump version. | Joel Sing | |
2012-10-29 | Enable softraid boot support in cdboot(8). | Joel Sing | |
2012-10-29 | Make cdboot(8) work correctly when it is larger than 64KB in size. When | Joel Sing | |
relocating use blocks that are a maximum of 32KB in size and increment the segment registers after relocating each block. This keeps us within the confines of the %cx register and the real mode segmented addressing. | |||
2012-10-29 | Teach wsconsctl(8) about the elantech mouse type. Diff from shadchin@. | Stefan Sperling | |
2012-10-29 | Add support for Elantech touchpads to pms(4). This allows the X synaptics(4) | Stefan Sperling | |
input driver to configure these touchpads properly, e.g. toggle tap-to-click, two-finger scrolling, edge-scrolling, etc. So far these pads were working only in PS/2 mouse compatibility mode. Support for up to hardware version 3 has been implemented. But only version 3 has been tested so versions 1 and 2 remain disabled via #ifdef notyet until someone tests (bugs in this code could seriously mess up the mouse and I don't want to end up shipping such bugs in 5.3). help and ok mpi@ shadchin@ | |||
2012-10-28 | OK, enough is enough. So many people persist in the practice of editing | Theo de Raadt | |
this file, even years after the rc.conf / rc.conf.local split happened. One way to improve upon this is to put a big fat comment at the top of the file. (Other ways to improve this is by renaming files, but that will just create more confusion). ok aja robert | |||
2012-10-28 | We need to allocate memory for crp_buf in the DMA accessible | Mike Belopuhov | |
region since it's passed to the hardware directly. Tested by Yoshihisa Matsushita <y at m8a ! org>, thanks! ok kettenis miod | |||
2012-10-28 | use the default SYSLOG_FACILITY definition which is LOCAL5 | Robert Nagy | |
noted by ajacoutot@ | |||
2012-10-28 | rework the default config a bit to work with php-fpm out of the box | Robert Nagy | |
2012-10-28 | Use the same (shorter) error message as the i386 version. | Joel Sing | |
2012-10-28 | strip the chroot path from auth_basic_user_file if necessary | Robert Nagy | |
2012-10-28 | Save and restore %ebx across the call to read. Otherwise we load the first | Joel Sing | |
64KB segment at 0x7c00 and any additional 64KB segments over top of each other at 0x10000. | |||
2012-10-28 | Change email address in copyright to one that is valid. | Claudio Jeker | |
2012-10-28 | Add braces to some code in ixgbe_setup_vlan_hw_support(). | Brad Smith | |
ok mikeb@ | |||
2012-10-28 | unbreak build on vax by initializing a variable | Robert Nagy | |