summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-04-06virgin perl 5.6.0Todd C. Miller
1999-04-29perl5.005_03Todd C. Miller
1999-04-29perl5.005_03Todd C. Miller
1999-04-29perl5.005_03Todd C. Miller
1996-08-19Import of Perl 5.003 into the tree. Makefile.bsd-wrapper andJason Downs
config.sh.OpenBSD are the only local changes.
2014-03-24replace bzero with memsetDavid Gwynne
2014-03-24Passing MSG_DONTROUTE to sendto() here has no effect since SO_DONTROUTEMartin Pieuchot
is only implemented for IPv4. Just remove it. Tested by and ok florian@
2014-03-24Remove commented out MSG_DONTROUTE flag. No object change.Martin Pieuchot
ok florian@
2014-03-24Stop monitoring apache files.Antoine Jacoutot
ok florian@ jung@ sthen@
2014-03-24Add /var/unbound/dev/log, it isn't needed for initial startup because UnboundStuart Henderson
opens the log before chrooting, but this handles the case where syslogd is restarted during Unbound's runtime.
2014-03-24- add an EXIT STATUS sectionJason McIntyre
- more consistent STANDARDS blurb - -nosplit in AUTHORS ok stsp
2014-03-24Warn the user if there is a missing mountpoint parameter.Sylvestre Gallon
ok ajacoutot@, tedu@, pelikan@
2014-03-24rework mpii to use tasks instead of scsi_tasks for sas event handling.David Gwynne
scsi_tasks are still backed by workq, and i dont like having to allocate storage to defer work. sas events that cause hotplug events are queued in the softc to be handled by a single task that loops on the queue for work. think levelled interrupts. this has a side effect that interrupts are necessary to enumerate devices for attachment. i wrote this toward the end of last year, but thought it best to wait for 5.5 unlock.
2014-03-24syncTheo de Raadt
2014-03-24use htolemXX and lemtohXX in the scsi_cmd paths.David Gwynne
apart from the flags handling in sgls, this shrinks the io hot path on sparc64 and powerpc a lot. its pretty much the same on i386/amd64/alpha.
2014-03-24mpi scatter gather lists are 24 bytes long and next to each other inDavid Gwynne
memory. that means you cant do 8 byte loads and stores on the sg_addr member cos it wont be 8 byte aligned half the time which makes strict alignment archs (ie, the fun ones ones) upset. annotate the sge as being 4 byte aligned. replace the sg_addr member with sg_addr_lo and sg_addr_hi. replace htole64 assignment of the sg addr with a wrapper that does the right thing with a couple of htolem32 calls. generated code shrinks again.
2014-03-24The kernel isn't involved in times(3); <sys/times.h> should never bePhilip Guenther
included there
2014-03-24syncTheo de Raadt
2014-03-24factor out the setting of the request context field so mpi_start does itDavid Gwynne
on behalf of all its callers. use htolem32 and lemtoh32 to handle the message context. both save bytes.
2014-03-24Update to match headerPhilip Guenther
2014-03-24Enable SQLITE_ENABLE_FTS3_PARENTHESISJames Turner
ok landry@ okan@
2014-03-24Merge conflictsJames Turner
2014-03-24Bump major to 27, regen .pc and header with new version info. RemoveJames Turner
left over file.
2014-03-24Merge conflictsJames Turner
2014-03-24Update sqlite to 3.8.4. A list of changes are available here:James Turner
http://sqlite.org/changes.html. Tested in a bulk and ok landry@
2014-03-24annotate some packed structures with the alignment the hardwareDavid Gwynne
requires and the driver provides. without this gcc assumes the alignment of these structures is 1, which leads to some horrible asm. this is particularly interesting when reading stuff from the myx_status struct (like the txdone count) which needs to be atomic. doing byte reads and shifting them into a word in registers isnt atomic. its also probably a bit slow. specifying the alignment fixes this. deraadt@ warned me about this maybe 8 years ago.
2014-03-24nothing after the irq ack posting relies on it being ordered.David Gwynne
2014-03-24Split the API: struct ucred remains the kernel internal structure whilePhilip Guenther
struct xucred becomes the structure for syscalls (mount(2) and nfssvc(2)). ok deraadt@ beck@
2014-03-24oops, merge errorTed Unangst
2014-03-23more bm excisionTed Unangst
2014-03-23clear stack variables, suggested by djmTed Unangst
2014-03-23Remove the MD4 functions.Christian Weisgerber
"A collision attack published in 2007 can find collisions for full MD4 in less than two hash operations." ok deraadt@, man pages ok jmc@
2014-03-23some improvements suggested by djm.Ted Unangst
use better constant for salt size. always copy ":" to gerror, in case somebody is dumb enough to overwrite it timingsafe_bcmp before somebody whines about strcmp
2014-03-23two functions don't need to be exportedTed Unangst
2014-03-23minimal change to implementation of bcrypt to not require static globals.Ted Unangst
add some friendlier functions. move the classic static data api into wrapper functions. a few more changes to come...
2014-03-23remove the never used bm string functionsTed Unangst
2014-03-23c11 compliance: remove gets()Ted Unangst
2014-03-23major++ in preparation for coming changesTed Unangst
2013-09-21Update sqlite to 3.8.0.2. A list of changes are available here:James Turner
http://sqlite.org/changes.html. Tested in a bulk and ok landry@ ok espie@
2014-03-23Point people to the bugs@ archives on marc.info.Brian Callahan
ok tedu@
2014-03-23security doesn't check ftpusers any more; reminded by jmcStuart Henderson
2014-03-23don't check ftpusers in security(8), from gsoares@, ok afresh1@ schwarze@Stuart Henderson
2014-03-23Skip leading escape sequences in man_deroff(). Helps indexing ofIngo Schwarze
some manuals containing overzealous escaping in their NAME section.
2014-03-23Unbreak after last commit.Miod Vallat
2014-03-23Unhook librt stub. It's causing too much breakeage to the ports tree.Matthias Kilian
Prodded by espie@.
2014-03-23Finally give powerpc PIE. Remaining bugs on socppc fixed by kettenis@.Pascal Stumpf
"I think you should do this switch right away" deraadt@
2014-03-23put a pointer to the "incompatibilities with lex and posix" into STANDARDSJason McIntyre
(big thanks to whoever took the trouble to write that one!), and while there fix a couple of typos in said section;
2014-03-23Initialize additional BATs (IBAT4-IBAT7 and DBAT4-IBAT7). The rb600 firmwareMark Kettenis
has these enabled and this leads to memory corruption that (surprisingly) only shows up when running PIE.
2014-03-23Retire the old concat() function.Ingo Schwarze
For .Sh, i wasn't even needed at all. For .Dd, .Nm, and .Os, use the new mdoc_deroff() instead. This gets rid of the last limited-size static buffers in this file, hence eliminates the last explicit MANDOCERR_MEM throwers here, and it shortens the code by 50 lines.
2014-03-23Change struct mbr signature field type from 'unsigned short' toKenneth R Westerback
'u_int16_t' to be consistant with disklabel.h's struct dos_mbr.