summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-08-18Fix various lies in comments, extend hex constants to 8 hex digits for easierMiod Vallat
reading, and introduce a define for the DIO-II device size, as reported by the device itself (in quarters of select code span, just to make things more complicated than necessary).
2011-08-18Because model 362 does not have an SGC bus (or a blind, deaf and mute one),Miod Vallat
there is no way we can tell models 360 and 362 apart by probing for an SGC bus, or for a frodo(4) chip since of the `lil' black swan' 3x2 models, only model 382 has frodo. So don't bother trying to tell models 360 and 362 apart, and use a common 36X symbol. No functional change except for useless code removal.
2011-08-18Do not skip 362 and 382 DIO frame buffer select codes; this was writtenMiod Vallat
back when I thought that these devices were showing both in DIO-II and SGC spaces; but, as researched by tsutsui@netbsd, there is nothing in the SGC bus address space (assuming there is SGC bus logic at all) on 3x2.
2011-08-18Do not use NULL when 0 is intended.Miod Vallat
2011-08-18Mention 332 as unsupported (although it has an FPU slot, so it could beMiod Vallat
made working, but since this model maxes out at 8MB RAM it's close to useless).
2011-08-18stray spaces; no binary changeMarco Peereboom
2011-08-18where a man page has multiple links, only reference that pageJason McIntyre
once in SEE ALSO; also prefer Xr to Fn where relevant; diff started by Martin Pelikan
2011-08-18fix overload table BNFHenning Brauer
From: william dunand <william.dunand at gmail.com>
2011-08-18spacingMarc Espie
2011-08-18tweakMarc Espie
2011-08-17Set the PSL_O bit, like we do for 64-bit capable CPUs on hppa.Mark Kettenis
2011-08-17- plug a memory leak in runner_remove_envelope()Gilles Chehade
- cosmetic change
2011-08-17Don't set the PSL_S bit. We generally don't tend to hide CPU counter timersMark Kettenis
from userland, and setting it upsets the sigreturn code.
2011-08-17move ramqueue_host pointer from ramqueue_envelope to ramqueue_message.Gilles Chehade
this allows us to save one pointer from each envelope stored in ram while still allowing O(1) host lookups by ramqueue_envelope.
2011-08-17- teach smtpctl remove about the new ramqueue structureGilles Chehade
- bonus #1: O(log n) removal of envelopes - bonus #2: removing all envelopes that have the same msgid works again
2011-08-17- introduce ramqueue_lookup_{host,message,envelope} to perform lookups inGilles Chehade
the new ramqueue structure - introduce ramqueue_reschedule() and ramqueue_reschedule_envelope() which to reschedule a message or a specific envelope. O(n) -> O(log n) \o/
2011-08-17match on MSP-FET430UIF JTAG, so it can be used with mspdebugJasper Lievisse Adriaanse
from impatiens@gmail.com
2011-08-17regenJasper Lievisse Adriaanse
2011-08-17add MSP-FET430UIF JTAG, from impatiens@gmail.comJasper Lievisse Adriaanse
2011-08-17Assembler implementation of the GCM mode using the Carry-lessMike Belopuhov
Multiplication (CLMUL) instruction found in the new Intel and future AMD CPUs. Done about a year ago and was rotting in my trees until Ryan prodded Theo to read the white paper and figure out the license issues. Apparently, there are none. All C code and SSE glue code was written by me, while the GF multiplication function is taken from the CLMUL white paper, specifically Figure 6: "Code Sample - Performing Ghash Using Algorithms 1 and 5".
2011-08-17Adding support Synaptics touchpad. Thanks all for test.Alexandr Shadchin
ok miod@, matthieu@
2011-08-17remove the clamping of max_softdeps as it makesThordur I. Bjornsson
softdeps almost totally unusable;
2011-08-17pkg_add and pkg_delete will now syslog activity by default.Marc Espie
2011-08-17make sure to set two rtsol sysctls, not just the last oneTodd T. Fries
ok krw@
2011-08-16More information about lots of macros, many new examples, and various fixes.Ingo Schwarze
ok kristaps@
2011-08-16we are now hacking on 5.0-currentMark Kettenis
requested by deraadt@
2011-08-16smtpctl show sizes, displays the size of queue-related structures, usefulGilles Chehade
for developers to see the impact of structure changes on memory and disk usage, and useful for users to better understand 'smtpctl show stats'
2011-08-16add a host-tree and an envelope-tree in the ramqueue, they will be used toGilles Chehade
improve scheduling and general ramqueue operations. unused yet
2011-08-1664-bitification went a bit too far here; sigset_t is 32-bit so using 64-bitMark Kettenis
loads and stores may trigger an alignment trap. Also fix issues where the code was assuming arguments were passed both in registers on the stack. This isn't ithe case for hppa64.
2011-08-16Use pitlbe and pdtlbe instructions when flushing the entire TLB.Mark Kettenis
2011-08-16The gp value is stored in a different register on hppa64.Mark Kettenis
2011-08-16Old proc is stored in %arg0, not in %arg2.Mark Kettenis
2011-08-16Compile in serial console settings support if any com(4) device is includedMark Kettenis
in the kernel, not only when com @ gsc is there.
2011-08-16Compile in serial console settings support if any com(4) device is includedMark Kettenis
in the kernel, not only when com @ gsc is there. ok miod@
2011-08-16Sync documentation with code on the matter of max state limit behavior.Mike Belopuhov
When one of the state limits is reached, further packets that would create state are dropped, until existing states time out. Discussed with mcbride, ok henning, jmc
2011-08-16Put back the pedro diff for VOP_FSYNC of softdep when itsThordur I. Bjornsson
limit is reached. Added twist, clamp the max_softdeps to 64 as it is still possible to exhaust bufkva.
2011-08-16recommit, now that release is done (handle sysv if bsd is incorrect, mayMarc Espie
make more extensive plans later)
2011-08-16Add a -r flag to switch-client to toggle the client read-only flag. FromNicholas Marriott
Johan Commelin.
2011-08-16Add up/down/left/right keys in vi edit mode. From "livibetter" SF bugNicholas Marriott
3385651.
2011-08-16Use key_bindings_remove for unbind-key -a to allow it to work from keyNicholas Marriott
bindings. From "miaout17" SF bug 3392063.
2011-08-16Correctly skip existing numbers when generating the name for a newNicholas Marriott
session.
2011-08-16Don't export 'struct pmap' to userland.Mark Kettenis
2011-08-16Make this build for hppa64.Mark Kettenis
2011-08-09In pmap_create(), check uvm_pagealloc() return value and uvm_wait() until itMiod Vallat
is non-NULL. Prevents a panic caused by a NULL dereference when physical memory is exhausted at pmap_create() time. ok kettenis@, deraadt@
2011-08-08Usual release distrib/notes churning. ok deraadt@Miod Vallat
2011-08-08Ship 5.0 with bufcachepercent=20Theo de Raadt
2011-08-08Fix a formating bug that caused a bad print on big endian arches.Marco Peereboom
ok deraadt
2011-08-08create pflog0 if pf is enabled just like we do in the pflogd scriptRobert Nagy
from sthen@
2011-08-08revert the last commit and do the right thing instead.Alexander Hall
tested and ok krw@, "get it in" deraadt@
2011-08-08If two carp interfaces on the same physical interface had addressesAlexander Bluhm
with the same prefix, neighbor discovery did not work. When comparing two carp interfaces in in6_ifpprefix(), assume they share the prefix if they have the same parent. sure deraadt@