summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-04-21remove from gen so that lint doesn't check gen if assembly versionsMartynas Venckus
are available. spotted by theo
2009-04-21move bsd and bsd.rd and all such other MD "sets" into the MD files,Theo de Raadt
since we perhaps cannot assume that is what kernels will be in the pathetically stupid world that SGI created
2009-04-21tweak the whitespace in the softc a bit to make it easier to read.David Gwynne
2009-04-21syncTheo de Raadt
2009-04-21new ftdi; 8U232AM4; Takanori Watanabe spotted itTheo de Raadt
2009-04-20tweak previous;Jason McIntyre
2009-04-20When receiving a new connection, log the remote IP numberIngo Schwarze
in addition to the remote hostname. Feature requested by Mark Bucciarelli mkbucc at gmail dot com on misc@. "seems OK" millert@
2009-04-20Don't talk about a "scrub reassemble tcp" rule, talk about "reassembleStuart Henderson
tcp" parameter. ok henning@
2009-04-20Some recent IOC3 do not have Dallas timekeepers, so perform a few more testsMiod Vallat
before deciding to attach dsrtc.
2009-04-20remove unneeded argument to warnx()Charles Longeau
remove unused variable kill some extra blank lines ok canacar@
2009-04-20fixed style, no binary changeAriane van der Steldt
2009-04-20do NOT set defaults to their default hereTheo de Raadt
2009-04-20Allow MAIL FROM only in the S_HELO state, which results in behaviourJacek Masiulaniec
dictated by rfc in "4.1.4 Order of commands". pointed out and initial diff by pea@, ok gilles@
2009-04-20syncTheo de Raadt
2009-04-20PR 6090 - from Olli Hauer <ohauer@gmx.de>Bob Beck
A number of small improvements: - patch for empty lines and comments in alloweddomains_file - remove some whitespaces at end of line. - document comment and empty line handling - Remove unused parameter 'r' from getopt in spamd.c, it is removed in the 'switch statement' but not in getopt. http://www.openbsd.org/cgi-bin/cvsweb/src/libexec/spamd/spamd.c.diff?r1=1.94;r2=1.95;f=h - replace atoi with strtonum - make debug output more usefull, display only what will be synced and not a second message which prints always "sync trapped %s" - some cosemtic and whitespace fixes.
2009-04-20No this change is wrong, because now 'w' followed by 'q' asks if youTheo de Raadt
are sure. This will require another solution, based perhaps on comparing against an earlier form of the label
2009-04-20fix previous, evtimer_set should be called only once, in session_init.Jacek Masiulaniec
2009-04-20Rewrite smtp session timeouts; use evtimer_* from event(3) insteadJacek Masiulaniec
of regularly walking session tree in search of idle clients. Gives the smtp process a chance to become idle. As a bonus, add smtp.sessions.timeout counter to "smtpctl show stats". ok gilles@
2009-04-20- add missing header for strcmp() .Jasper Lievisse Adriaanse
- add hw.model which could help future sgi install scripts with deciding which kernel to pick "commit" deraadt@
2009-04-20bigmem is not tweakable by config(8), it never was.Reyk Floeter
ok oga@
2009-04-20unbreak EHCI_DEBUG - usbd_dump_pipe() is only defined if USB_DEBUG isReyk Floeter
also true. no binary change without EHCI_DEBUG. ok jsg@
2009-04-20Fix renicing a negative pid in historic mode. From Bryan LintonTodd C. Miller
2009-04-20amas device for amd64, describes the physical memory layout on AMD64 CPU.Ariane van der Steldt
Replaces pchb with amas for the AMD64 address map. amas0 at pci0 dev 24 function 1 "AMD AMD64 0Fh Address Map" rev 0x00 Currently disabled (causing pchb to attach instead). ok art@
2009-04-20when transmitting packets, put the dmamap we used for the packet into theDavid Gwynne
last descriptor slot in the ring. the tx completion code expects the dmamap to be there so it can unload it. ok reyk@
2009-04-20fix dma map unmapping and unloading in the tx cleanup path.Reyk Floeter
ok dlg@
2009-04-20Make pegging a proc work when there are idle cpus that are looking forArtur Grabowski
something to do. Walk the highest priority queue looking for a proc to steal and skip those that are pegged. We could consider walking the other queues in the future too, but this should do for now. kettenis@ guenther@ ok
2009-04-20restore tagged user packages to functionality (for now)Marc Espie
2009-04-20syncTheo de Raadt
2009-04-20Don't map all agp memory we allocate.Owain Ainsworth
If we're just going to be making it available to userland (the X server), just use load_raw and make sure it's zeroed with BUS_DMA_ZERO. Should save $AMOUNT_BOUND_TO_GART kva. Most kernel users also write through the gart, so no mapping there either. tested by sthen and todd a while back.
2009-04-20Document BUS_DMA_ZERO.Owain Ainsworth
2009-04-20Man bits for UVM_PLA_ZERO.Owain Ainsworth
2009-04-20Add a BUS_DMA_ZERO flag for bus_dmamem_alloc() to return zeroed memory.Owain Ainsworth
Saves every damned driver calling bzero(), and continues the M_ZERO, PR_ZERO symmetry.
2009-04-20add the UVM_PLA_ZERO flag for uvm_pglistalloc to make it return zeroedOwain Ainsworth
pages. "go for it" miod@
2009-04-19zero temperature in acpi refers to -273,2degC -- convert to uK ↵Constantine A. Murenin
appropriately; ok deraadt marco
2009-04-19When configuring the network assume the user means to assignKenneth R Westerback
$(hostname -s) as the symbolic name of the first interface that is configured. Subsequent interfaces still get the question. Don't emit 'No more interfaces to initialize.'. Just move on to the rest of the network configuration. Use the word 'configure' rather than 'initialize'. Suggested by & ok deraadt@
2009-04-19Enable schsio(4) everywhere to get it tested.Michael Knudsen
``please commit'' deraadt
2009-04-19Call acpi_sleep_walk() when powering down just like when enteringKenneth R Westerback
any other sleep state. This tells acpi wake devices to not wake up the box until manual powering up resets their status. Makes my Dell GX520 stay powered off in response to 'halt -p'. In snaps for a while. ok marco@ (several times) deraadt@
2009-04-19Correct function name in log_warnx().Claudio Jeker
2009-04-19calculate size correctly if PAGE_SIZE != ATI_PCIGART_PAGE_SIZE.Owain Ainsworth
from upstream a while back.
2009-04-19don't print extraneous padding characters when tab-completion file/commandStuart Henderson
lists encounter a name too long for the width of the terminal. from Matthew Haub, no objections krw@.
2009-04-19The G4X and GM45 just /had/ to have a different counter register.Owain Ainsworth
Been meaning to pull this in from upstream for ages.
2009-04-19For consistency, make sure that all archs that use the same patternOwain Ainsworth
always increment uvmexp.softs while inside the lock. While i'm here, make alpha's dispatch loop look like the rest. "sure" miod@
2009-04-19Mutexes for arm and sh softinterrupts.Owain Ainsworth
ok miod@
2009-04-19On Octane, force a nonzero _dma_mask value so that we do not risk trying toMiod Vallat
handle a mapping partly in, and partly out the direct DMA window, on systems with > 2GB physical memory.
2009-04-19Attach the 1-Wire devices early, and pick our partnumber; based on thisMiod Vallat
partnumber, decide what components of the IOC3 really are available, and how many interrupts to register. Based on knowledge found in Linux source code, only tested on full-blown IOC3 devices so far.
2009-04-19Correctly handle bus_dma_tag with _dma_mask == 0.Miod Vallat
2009-04-19Parse and display the part number and the serial number, instead of falselyMiod Vallat
printing the part number as the serial number.
2009-04-19Count number of cpus found (potentially not attached) and store thatTheo de Raadt
in sysctl hw.ncpufound; ok miod kettenis
2009-04-19Rename max_cpus to ncpusfound and compute it regardless of optionMiod Vallat
MULTIPROCESSOR.
2009-04-19If hw.ncpufound > 1, have the install script automatically prefer to useTheo de Raadt
bsd.mp instead of bsd (using -- mv bsd bsd.sp; mv bsd.mp bsd). anyone who brings up boot.conf is an i386 bigot. tested on almost all platforms that can do this, ok various people