summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* syncderaadt2015-01-281-1/+0
|
* remove obsolete commentdjm2015-01-281-2/+1
|
* drm/radeon: allow geom rings to be setup on r600/r700 (v2)jsg2015-01-283-4/+19
| | | | | From Dave Airlie 7c4c62a04a2a80e3feb5d6c97aca1e413b11c790 in mainline linux
* drm/radeon: fix VGT_GS_INSTANCE_CNT registerjsg2015-01-284-4/+4
| | | | | From Dave Airlie b7bc799903bbae16795cb15705ddcab80c8f17f1 in mainline linux
* jcs found another remnant of cool running modetedu2015-01-281-3/+4
|
* implement the tbl(7) "center" layout optionschwarze2015-01-285-9/+187
|
* Fix a number of issues relating to algorithms in signatures, Mostlybeck2015-01-2814-18/+116
| | | | | | from OpenSSL with a hint of boring and some things done here. Addresses CVE-2014-8275 for OpenSSL fully ok miod@ doug@
* Remove an unused macro and a stale comment. No functional change.mlarkin2015-01-281-5/+1
|
* adjust formatting for the tbl(7) layout 'x' modifier (maximize column)schwarze2015-01-284-9/+359
| | | | to match groff for up to six maximized columns
* when doing a blocking read with a timeout, after the sleep resetdlg2015-01-281-1/+2
| | | | | | the start time so the next read behaves the same. from Simon Mages
* tedu x86_self_ipi()/i386_self_ipi()sf2015-01-273-13/+3
| | | | | | They are not used anywhere. ok mlarkin@
* Ignore buttons for which _STA indicates they're not present, enabled orkettenis2015-01-271-17/+10
| | | | | | functioning. Fixes suspend/resume on a Dell PowerEdge T20. ok mlarkin@, sthen@
* Stop linking to perlthanks, lost patch in the 5.20 updateafresh12015-01-271-1/+1
| | | | Thanks to didickman AT gmail for noticing.
* syncderaadt2015-01-2720-20/+0
|
* Since r1.2 removed the use of PRI* macros, inttypes.h is no longerokan2015-01-272-4/+2
| | | | | | required. ok djm@
* use printf instead of echo -n to reduce diff against -portabledjm2015-01-272-11/+11
|
* Vommiting errors about failed reset or stall clear are not usefull tompi2015-01-271-10/+12
| | | | | | the user and do not give enough informations to debug a problem. Only print such messages in DEBUG mode.
* Always call if_ioctl() for loopback interfaces, just like IPv4 do, tompi2015-01-271-2/+3
| | | | | | | make sure the default MTU is set for every address configured on the ifp and not just the first one. Regress test breakage reported by daniel@
* Ensure that link-local addresses are correctly configured on loopbackmpi2015-01-274-88/+42
| | | | | | | | | | | | | | | | | | | | interfaces. When the kernel automagically configures IPv6 addresses on loopback interfaces, start by assigning a link-local address and then try to assign "::1". Only the first configured loopback interface per rdomain can have the "::1" address. But even if other loopback interfaces failed to get this address, because it is already taken, give them a chance to have a link-local address. While here change in6_ifattach() to return an error value and remove duplicated code. Fix a regression introduced by the NOINET6 flag removal. ok henning@, stsp@, florian@, benno@
* Do not overwrite user-specified MTU.mpi2015-01-271-2/+2
| | | | | | Allow to use different size than the default of 32K. ok henning@, stsp@, florian@, benno@ as part of a larger diff.
* remove workq code. its been replaced with tasks.dlg2015-01-273-431/+0
| | | | | | | it has been unused since december, and unhooked from the build since christmas. ok krw@
* Specify the default MTU size for routes to loopback.mpi2015-01-272-33/+33
| | | | Tests are currently failing, to be fixed soon.
* remove #include <sys/workq.h>. it wont exist anymore soon.dlg2015-01-272-4/+2
|
* ENOGREP.dlg2015-01-271-2/+2
| | | | | | i didnt find this TASK_INITIALIZER call when changing tasks. more beatings from deraadt@
* fix messages of FwUpdateespie2015-01-272-6/+48
|
* Multiple parser and formatter fixes for line drawing in tbl(7).schwarze2015-01-277-164/+191
| | | | | | | | | | | | * Allow mixing vertical line bars with the layout options of the preceding layout cell. * Correctly combine box options with layout lines. * Correctly print vertical lines in data rows, with the right spacing. * Correctly print cross markers and left and right ends of horizontal lines even if vertical lines differ above and below. * Avoid the bogus error message "no table data cells" when a table data section starts with a horizontal line. No increase in code size.
* this code doesnt need to know about interrupts, so i can trim somedlg2015-01-271-15/+1
| | | | | | headers and types. ok deraadt@
* i forgot to fix ipw when i removed the second task argument.dlg2015-01-271-7/+7
| | | | poke from deraadt@
* remove the second void * argument on tasks.dlg2015-01-2752-281/+265
| | | | | | | | | | | | | | | | | | | | | when workqs were introduced, we provided a second argument so you could pass a thing and some context to work on it in. there were very few things that took advantage of the second argument, so when i introduced pools i suggested removing it. since tasks were meant to replace workqs, it was requested that we keep the second argument to make porting from workqs to tasks easier. now that workqs are gone, i had a look at the use of the second argument again and found only one good use of it (vdsp(4) on sparc64 if you're interested) and a tiny handful of questionable uses. the vast majority of tasks only used a single argument. i have since modified all tasks that used two args to only use one, so now we can remove the second argument. so this is a mechanical change. all tasks only passed NULL as their second argument, so we can just remove it. ok krw@
* Remove an unused and confusing assignment that had been commented out formlarkin2015-01-271-2/+1
| | | | years. No functional change.
* Remove an unused variable whose functionality was moved to locore long ago.mlarkin2015-01-271-4/+1
|
* Remove an odd comment in the first line of the filemlarkin2015-01-271-2/+1
| | | | ok deraadt@
* Revert 1.61 since support for the TX path was also reverted.brad2015-01-271-3/+3
|
* Rewrite receive filter handling and ioctl bits.brad2015-01-271-54/+34
|
* Require EFT shared objects have a PT_PHDR entry to be consideredkurt2015-01-271-5/+11
| | | | | | | | | | a pie binary. The kernel will now reject executing a typical shared library with EINVAL. This breaks compatibility with initial static pie binaries and requires a recent user-land prior to upgrading. In addition, more fine grained errors can be returned from execve(2) when errors occur while attempting to execute ELF objects. okay guenther@, kettenis@, deraadt@
* Move the "stackgap" from the stack into its own page at a random address.kettenis2015-01-264-38/+36
| | | | | | | This allows us the unmap the initial part of the stack, such that it can't be used as a staging area for ROP (or other) attacks. ok guenther@, tedu@
* Print frame buffer resolution at attach time.miod2015-01-261-2/+4
|
* syncderaadt2015-01-261-0/+1
|
* Rework tbl(7) layout parsing:schwarze2015-01-268-174/+183
| | | | | | | | | | | * Continue parsing even if part of the input is invalid. * Do not require whitespace between cell specifications. * Allow tabs as well as blanks between modifiers. * Mark the 'm' modifier as unsupported. * Parse and ignore the 'p' and 'v' modifiers. * Better warning and error messages. * Get rid of a static buffer. Improved functionality but minus 50 lines of code.
* sort previous;jmc2015-01-261-2/+2
|
* Place the remainder of e_os2.h under #ifndef LIBRESSL_INTERNAL until we canjsing2015-01-261-1/+5
| | | | | hopefully remove it completely - nothing in LibreSSL should be making use of any of these defines.
* properly restore umaskdjm2015-01-261-2/+4
|
* Add AEAD as a "MAC alias" so that it is possible to identify/select ciphersjsing2015-01-264-4/+14
| | | | | | | | that use AEAD instead of a MAC. This allows for TLSv1.2 AEAD ciphers (effectively the only ciphers that are still considered to be secure) to be selected using TLSv1.2+AEAD as a cipher string. ok bcook@ doug@ miod@
* More improvements regarding tbl(7) options.schwarze2015-01-266-93/+81
| | | | | | | | | * Treat "allbox" as an alias for "box" for now. * Parse and ignore the GNU tbl "nowarn" option. * For separation, allow spaces, tabs, and commas only. * Mark eqn(7) within tbl(7) as unsupported. * Simplify the option table. * Improve and sort documentation.
* correct description of UpdateHostKeys in ssh_config.5 anddjm2015-01-264-10/+13
| | | | | add it to -o lists for ssh, scp and sftp; pointed out by jmc@
* Merge in a commit from upstream..brad2015-01-261-3/+3
| | | | | | - Synthesize CNAMEs with same TTL as DNAME. ok sthen@
* Call rtdeletemsg(9) instead of rerolling its code. As a bonus you'llmpi2015-01-263-57/+9
| | | | | | get userland notification for free. ok blambert@, bluhm@
* Do not always try to rtfree(9) route entries inside rtdeletemsg(9).mpi2015-01-262-12/+31
| | | | | | | Instead check the error code returned by this function and let the caller free the route entry when appropriate. ok bluhm@
* Set PCIe max read request size to 2K to help with TX performance.brad2015-01-262-3/+24
| | | | | | From FreeBSD Tested with 8168C, 8168D and 8168G.
* regression test for host key rotationdjm2015-01-262-2/+132
|