summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-11-23Make the client wait for the first flow control message rather thanAlexandre Ratchov
assuming it can send a full initial data buffer. This requires protocol version bump (but no library version bump).
2012-11-23- Remove return's at the end of void functionsBrad Smith
- Some minor tweaking of the use of braces in two spots ok mikeb@
2012-11-22regress for AuthorizedKeysCommand; hints from markus@Damien Miller
2012-11-22Do not pass -Wmissing-prototypes when building on a non-ELF platform withMiod Vallat
gcc 3 as the compiler. The way constructors are built triggers this warning, which is fatal because of -Werror. ok espie@ guenther@
2012-11-22Stop saying "please", people needs to run sysmerge(8) after an upgrade.Antoine Jacoutot
Also s/repair/update . wording from sthen@ ok sthen@ deraadt@
2012-11-22Put helper function back, will be needed in a bit.Nicholas Marriott
2012-11-22Instead of worrying about xterm version, send DA and read DEC serviceNicholas Marriott
class which is more likely to be useful. Not used for anything yet anyway.
2012-11-22Don't need to send DECSL on detaching now, the code using higher levelsNicholas Marriott
has gone.
2012-11-22Don't bother to store the return value from pci_set_powerstate() as theBrad Smith
code that used to do something with it was removed with the previous commit. ok deraadt@
2012-11-21${.ALLSRC} and ${.OODATE} should always be defined, even for empty listsMarc Espie
of prerequisites. This prevents complaints from the var module and from other developers. That's a bug I introduced 5 years ago... found out by miod@ okay miod@
2012-11-21Atempting to eject a CD-ROM makes the SCSI midlayer generate a READ_TOCMark Kettenis
command. Silently fail that command instead of spamming the console.
2012-11-21strtonum() can only handle a maximum of LLONG_MAXSebastian Benoit
fixes bug reported by Bogdan Andu, thanks ok reyk@ deraadt@ sthen@
2012-11-21Trivial fixes for labels not followed by statements, which gcc 3 complainsMiod Vallat
about.
2012-11-21Disable the stack protector in OVERRIDE_OPTIONS for the time being. The stackMiod Vallat
protector code will conflict with the way variadic functions spill the registers on the stack, causing the latter to be partially overwritten with the value of __guard. Core dumps and hilarity ensues. This can probably be fixed by changing the time registers are spilled from the backend for __builtin_expand_saveregs(), to setup_incoming_varargs(), as done on e.g. rs6000. But that's far from a trivial change, and I'd like to be able to exercize gcc 3 a bit more on m88k before sacrificing more brain cells to the gcc evil deities.
2012-11-21Remove an md global which value is a duplicate of MI current_function_args_info.Miod Vallat
No functional change.
2012-11-21Try to negotiate version 1.1 of the vDisk protocol such that we can getMark Kettenis
the vdisk media type and fake a CD-ROM drive.
2012-11-21Turn OVERRIDE_OPTIONS into a function, will make it easier to extend on aMiod Vallat
per-platform basis.
2012-11-21Plug fp leak, from rustyBSD at gmx dot fr.Nicholas Marriott
2012-11-21hook up ldomctl(8) and ldomd(8).Mark Kettenis
2012-11-21Don't forget to delete an rx refill timeout when bringingMike Belopuhov
an interface down (noticed by dlg@ in the other diff). While here, do some minor cleanup in the interrupt handler.
2012-11-21rc_restart() does not exists. What the 'restart' action does is to runAntoine Jacoutot
'stop' then 'start'; so to prevent this daemon from restarting itself, rc_stop=NO is enough. ok robert@
2012-11-21syncKirill Bychkov
2012-11-21Hook D-Link DUB-E100 rev C1 to axe(4)Kirill Bychkov
ok sthen@
2012-11-21Add D-Link DUB-E100 rev C1.Kirill Bychkov
ok sthen@
2012-11-20Convert to new world order by defining TARGET_OS_CPP_BUILTINS instead ofMiod Vallat
CPP_PREDEFINES; try to deuglify CPP_SPEC whenever possible as well.
2012-11-20Make the mips and powerpc optimizer bug workarounds permanent (i.e. applyMiod Vallat
them to all platforms). Both of them had been added very late in a release cycle, which caused us to prefer workarounds with minimal side effects. Since the issue they are avoiding may happen on other platforms, there is no harm in making sure no other platform gets bitten by them. And at the moment no supported platform runs gcc 3, so this does not cause any regression.
2012-11-20fix typoMike Belopuhov
2012-11-20keep functnames sortedFlorian Obser
ok jasper, lum
2012-11-20- for lists, list type must come firstJason McIntyre
- uppercase "ID"
2012-11-20Allow "smtpctl show queue" to run in "online" mode if the smtpd serverEric Faurot
is running. The scheduler sends the runtime state of each envelope to the queue process which loads the envelope, fills the runtime bits and sends the envelope back to the client. Iteration over the envelope set happens in small chunks to make the request interruptible and to allow the server to keep doing its job in the meantime. Adpat "smtpctl schedule-all" to schedule the messages one by one using the same iteration mechanism. Document "smtpctl monitor" and "smtpctl show queue". ok gilles@
2012-11-19Do not crash on stray .Ta macros found outside column lists.Ingo Schwarze
Problem reported by jmc@, thanks.
2012-11-19Make sure to invoke end_sequence() before passing it to any emit_insn()Miod Vallat
flavour. From etoh@'s gcc 3.4 tree. While there, also kill change_arg_use_of_insns_2() which is now a dim wrapper around change_arg_use_of_insns(), from etoh@'s tree as well.
2012-11-19move_by_pieces_1(), store_by_pieces_2(): sync insn skipping logic in theMiod Vallat
predecrement cases with gcc 2.95. This had been needed for m68k but somehow etoh@ missed this when porting the gcc 2.95 fixes back to its 3.3, then 3.4 tree. This fixes passing of struct by value on m68k, and lets gcc 3 reliably bootstrap itself now.
2012-11-19Sprinkle TREE_SIDE_EFFECTS annotations around all the computations done inMiod Vallat
va_arg(). __vfprintf() still unhappy in some edge cases I am investigating.
2012-11-19remove some useless Tn and double punctuation;Jason McIntyre
2012-11-19RES_IGNTC is no longer ignored; ok sthenJason McIntyre
2012-11-19Add atomic 32-bit cas operations.Paul Irofti
This is needed for future acpi global locking routines. Okay kettenis@
2012-11-19Use a more descriptive name for the userland cas operation.Paul Irofti
Substitute atomic_ucas_32 with futex_atomic_ucas_int32 to make it obvious who's using this api. Suggested by and okay kettenis@.
2012-11-19document BULK changeMarc Espie
2012-11-19zap pre-install, which was a weird kludge.Marc Espie
Explain a bit more the purpose of pre-fake.
2012-11-19Add halfpage commands to mode command string table (missed by accident),Nicholas Marriott
from Thomas Adam.
2012-11-19Clarify some points about config files, notably that they are only readNicholas Marriott
at server start. From Thomas Adam.
2012-11-19Use a utility function for common code to show errors in config file,Nicholas Marriott
from Thomas Adam.
2012-11-19If uvm_km_kmemalloc_pla() fails when just creating a thread (and not aPhilip Guenthe
process), then don't decrement the total and per-user counts of processes. ok deraadt@ miod@
2012-11-19sync usage(), and tidy up the output a little; ok schwarzeJason McIntyre
2012-11-19Remove useless test: rc_rm_runfile() uses rm -f which always returns 0Antoine Jacoutot
so we don't care if the file is present or not; also this function should never return a failure. ok halex@
2012-11-19In -Tman mode, support automatic word keeps in the SYNOPSISIngo Schwarze
just like in -Tascii mode; requested by millert@. While here, do not escape the blank characters terminating man(7) macros; this is becoming more important as we use more keeps now. Note that -Tman still does not support .nr nS.
2012-11-18Check that mandoc handles non-numeric width argumentsIngo Schwarze
to .Bl -tag and .TP the same way as groff, even via -Tman. Some time ago, millert@ reported issues with these; apparently, those issues were fixed since then.
2012-11-18knock out a useless .Pp;Jason McIntyre
2012-11-18remove { } from example in PRIMARY DOMAIN sectionRobert Peichaer
ok gilles