summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-22Stop printing the PCI interrupt line programmed by the BIOS for APICMark Kettenis
interrupts. It is irreleveant, confuses people and the information is available in pcidump(8) output anyway. ok oga@, jsg@, deraadt@
2011-04-22Sticky flags are in the left half of fpsr; not the undefined bitsMartynas Venckus
in the right half. OK miod@.
2011-04-22Move things around after recent rc(8) changes.Antoine Jacoutot
ok robert@ jmc@
2011-04-22spacesMarco Peereboom
2011-04-22Clarify SO_SPLICE semantics in setsockopt(2).Alexander Bluhm
ok jmc@
2011-04-22Add support for PCH2 (Sandy Bridge) MAC with 82579 PHY.Jonathan Gray
From Laurence Tratt. ok claudio@ deraadt@
2011-04-22mention MCP89Jonathan Gray
2011-04-22Move the rc.d(8) bits from rc.{local,shutdown} directly into /etc/rc.Antoine Jacoutot
By default, rc.{local,shutdown} don't output anything anymore. original idea from schwarze@ discussed with deraadt@ and no objection from millert@ ok schwarze@ robert@
2011-04-22Make the socket splicing regression tests architecture independentAlexander Bluhm
by using the perl module BSD::Socket::Splice from ports. Tested on i386 and sparc64.
2011-04-21A plausible iopoolification. Utter dearth of interested partiesKenneth R Westerback
after more than a year of grovelling emails shows further effort is pointless. ok matthew@ dlg@
2011-04-21Merge version 1.10.10:Ingo Schwarze
lots of cleanup and maintenance work by kristaps@. - move some main.c globals into struct curparse - move mandoc_*alloc to mandoc.h such that all code can use them - make mandoc_isdelim available to formatting frontends - dissolve mdoc_strings.c, move the code where it is used - make all error reporting functions void, their return values were useless - and various minor cleanups and fixes
2011-04-21match on 6 series smbus, tested by Laurence TrattJonathan Gray
2011-04-21fenv for amd64; from matthew@Martynas Venckus
feedback & ok guenther@, matthew@
2011-04-21fenv for hppaMartynas Venckus
2011-04-21Speedup XORP/XORQ operations in RAID6, do 32-bits at a timeJordan Hargrave
2011-04-21Fix dma_constraint upper limit computation. Logical or is not the same asMiod Vallat
arithmetic add.
2011-04-21Print memory sizes as longs. Stolen from sparc64.Miod Vallat
2011-04-21Use 64 bit integer types to compute IP35 memory ranges, to give machinesMiod Vallat
with memory beyond 4GB physical a chance to run. For some reason IP27 was already correct.
2011-04-21no need to escape `|';Jason McIntyre
2011-04-21Make nsd-zonec less verbose in nsdc runs by removing the -vClaudio Jeker
from ZONEC_VERBOSE. This affects nsdc rebuild and nsdc patch. Idealy nsdc patch would be silent on success so that it can be run out of cron without getting mails all the time. OK jakob@ sthen@
2011-04-21Oopsy.Antoine Jacoutot
2011-04-21Better detection of obsolete files (naddy@ reported a false positive).Antoine Jacoutot
help from and ok naddy@
2011-04-21Add a "filter-routes" option; when set, snmpd asks the kernel not toStuart Henderson
send route updates. If you aren't interested in examining routing tables over SNMP (e.g. if you only use it for sensors or interface stats) this reduces cpu use during heavy route updates. Makes my full-table bgp routers happier when a major peer bounces. ok reyk@
2011-04-21Make this code actually compile on hppa64.Joel Sing
ok kettenis@
2011-04-21Rework setjmp so that it works for hppa64.Joel Sing
ok kettenis@
2011-04-21Provide reasonable gdtoa headers.Joel Sing
ok kettenis@
2011-04-21Make SYS.h actually compile on hppa64.Joel Sing
ok kettenis@
2011-04-21Provide a HPPA_FRAME_ARGS macro. This only works correctly for theJoel Sing
first eight arguments saved, due to the layout of the call frame. ok kettenis@
2011-04-21Move interrupt related defines and prototypes from cpu.h to intr.h.Joel Sing
ok kettenis@
2011-04-21steal the ccb for error handling before it might be needed during theDavid Gwynne
port init. problem reported by RD Thrush in PR6590
2011-04-21daemon() can fail; don't hide this for the user if that's the case.Jasper Lievisse Adriaanse
ok otto@
2011-04-21Revert the ``remove the `skip splraise/splx for IPL_NONE mutexes' optimization''Miod Vallat
change. It seems to have unexpected side effects, especially on MP systems, and drahn@ disagrees with the way this change has been done and think there is a better way to solve the original problem of msleep() fiddling with mutex internals.
2011-04-21This dd should be to the raw partition, so fix it. On the otherTheo de Raadt
hand it has spotted a minor bug in thib's new vnd code, which he will fix tomorrow.
2011-04-21Fix more long vs 64bit type mismatches. Now 4GB i386 <-> macppcKenneth R Westerback
transfers work for Richard Toohey.
2011-04-21ahci asks atascsi to reserve a ccb to use for error handling, but thenDavid Gwynne
atascsi goes and throws away all the ccbs that the disk wont use, including the reserved one. this makes ahci reserve its own ccb. light testing by krw@ without regression.
2011-04-21find: return exit code 1 if any path could not be traversedJacek Masiulaniec
matches posix and the manual, ok millert
2011-04-21Don't use 'n' for the length of multibyte chars, because it is the lengthYASUOKA Masahiko
of wide characters. This will fix a problem of uim-fep pre-edit display. OK stsp@
2011-04-20Stash the old seed when srand() is called and use it as the returnTodd C. Miller
value as per POSIX and the fine manual. Fix sent upstream to bwk. OK deraadt@
2011-04-20fenv for m68kMartynas Venckus
2011-04-20Trick GCC optimizer into clipping any extra precision by making wMartynas Venckus
volatile; a similar hack was already being used in lrintf(). This will make rint and {,l}lrint family functions actually work; i.e. on m68k rintf(8.6F) was 8.625.
2011-04-20Remove some unneeded includes and dead code, from Michael W Bombardieri.Nicholas Marriott
ok jasper xsa
2011-04-20Fix possible NULL dereference for emul data. Okay miod@.Paul Irofti
2011-04-20Remove some includes and defines that are no longer needed, from MichaelNicholas Marriott
W Bombardieri.
2011-04-20Trivial code simplifying, from Michael W Bombardieri.Nicholas Marriott
2011-04-20Use -u when diff context is 3, from Michael W Bombardieri, tweaked byNicholas Marriott
millert.
2011-04-20Back out r1.10 of mutex.c as this breaks serial on hppa (at least for MP).Joel Sing
2011-04-20Implement correct prologue and epilogue for hppa64.Joel Sing
ok kettenis@
2011-04-20grammar fix; from Michael W. BombardieriJason McIntyre
2011-04-20Enhance sysmerge(8) output so that it is more readable and make it moreAntoine Jacoutot
clear if there are any warning/error or things that should be handled manually. e.g. output from going from 4.8 to current: # sysmerge -s etc49.tgz -x xetc49.tgz ===> Populating temporary root under /var/tmp/sysmerge.k1BnD/temproot ===> Starting comparison ===> Installing /.profile ===> Installing /etc/bgpd.conf <...> ===> Installing /root/.profile ===> Installing /var/www/conf/mime.types ===> Comparison complete ===> Checking directory hierarchy permissions (running mtree(8)) ===> Output log available at /var/tmp/sysmerge.k1BnD/sysmerge.log *** WARNING: file(s) detected as obsolete: /etc/portal.conf /etc/security /var/msgs/bounds *** WARNING: some new/updated file(s) may require a reboot feedback and ok sthen@
2011-04-20Interrupt handlers should only return 1 if they did some work. TheClaudio Jeker
intrstat on arc may have other status bits set which are masked as interrupt cause and not handled by our driver. So the intrstat == 0 check does not work reliably. It is better to do use a variable that is set to 1 when work is done and the cause is cleared. This makes arc(4) behave on systems where interrupts are shared. OK deraadt@ dlg@