summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-12-07Ratibibugle setredzone()Miod Vallat
[Ratibibugle is local slang for g/c, remove, rototill, etc]
2001-12-07In uni_n_config(), only return a base address if a base address was found.Miod Vallat
2001-12-07Make vnds larger than 2G work, mostly by Daniel Lucq <daniel@lucq.org>.Niklas Hallqvist
2001-12-07Make vnds larger than 2G work, mostly by Daniel Lucq <daniel@lucq.org>Niklas Hallqvist
toouches by me.
2001-12-06No need to keep dummy fields in cpu_disklabel structures.Miod Vallat
2001-12-06DDB disassembly fixes and trace improvements from NetBSD.Miod Vallat
2001-12-06Don't hardcode SYS_exit value.Miod Vallat
2001-12-06Declare SYS_exit for all m68k locore.s'esMiod Vallat
2001-12-06remove unnecessary newlineNiklas Hallqvist
2001-12-06Use hzto() to handle overflow of (hz * timeout) cases --- when usingAngelos D. Keromytis
extremely long SA expirations.
2001-12-06References to ``comment at line foo'' is useless once line foo moves,Miod Vallat
dammit. Change description.
2001-12-06MACHINE_UPTBASE is not constant on amiga, ouch.Miod Vallat
2001-12-06add dc* here, tooJason Wright
2001-12-06add dc* at pci (seems to work on Netra X1)Jason Wright
2001-12-06add bus_dmamap_sync()'s on the descriptors tooJason Wright
(with all this, my Netra X1 is up and running with an NFS root)
2001-12-06a few more bus_dmamap_sync()'s and some borrowed setup frame macros from ↵Jason Wright
NetBSD, and RX works on sparc64.
2001-12-06Define proper macros for FP frame offsets rather than magic numbers.Todd C. Miller
From NetBSD (tsutsui).
2001-12-06Shave never used fastvec codeNiklas Hallqvist
2001-12-06document alpha machdep.* sysctl'sEric Jackson
2001-12-06Sanity check on inner IP header in IP-in-IP encapsulation; could beAngelos D. Keromytis
exploited to crash systems that allowed IP-in-IP protocol (sysctl -w net.inet.ipip.allow=1)
2001-12-06enough bus_dmamap_sync() and htole()/letoh() to get TX working on sparc64.Jason Wright
ALso, get the MAC address from myetheraddr() instead of trying to use the eeprom on sparc64.
2001-12-06fix typo I introduced during ksyms additionTodd C. Miller
2001-12-06Sprinkle pmap_update() calls (based on NetBSD)Todd C. Miller
2001-12-06Sync with NetBSD:Todd C. Miller
o Add missing pmap_remove() before uvm_km_free_wakeup() o sprinkle pmap_update
2001-12-06disable nagle for X11 fake server and client TCPs. from netbsd.Kevin Steves
ok markus@
2001-12-06strncpy->strlcpy. remaining strncpy's are necessary. ok markus@Kevin Steves
2001-12-06shutdown(sock, SHUT_RDWR) not needed here; ok markus@Kevin Steves
2001-12-06vtophys, R.I.P. (tx now uses bus_dma)Jason Wright
2001-12-06move rx handling over to bus_dma... that just leaves one vtophys() in tx.Jason Wright
2001-12-06update the radio chipset supportMichael Shalayeff
2001-12-06add -o to sshd, too. ok deraadt@Markus Friedl
2001-12-06Keep track of how many pages a vnode hold with vhold and vholdreleArtur Grabowski
so that we can get back the old behavior where a vnode with cached data is less likely to be recycled than a vnode without cached data. XXX - This is a brute-force solution - we do it where uvmexp.vnodepages are changed, I am not really sure it is correct but people have been very happy with the diff so far and want this in the tree.
2001-12-06oops, local change escapedMichael Shalayeff
2001-12-06fix MLINKS for mbuf(9)Michael Shalayeff
2001-12-06rcsid and hostory sectionMichael Shalayeff
2001-12-06mbuf(9) man page. Thanks for art@ and mpech@ corrections.Jean-Jacques Bernard-Gundol
2001-12-06long leftoversMichael Shalayeff
2001-12-06clear all inrterrupts separately and before enabling any.Michael Shalayeff
this prevents stray interrupts and sometimes hangs, caused by looping on stray unmapped interrupt.
2001-12-06Use TCSAFLUSH not TCSANOW. I was only using TCSANOW during debugging...Todd C. Miller
2001-12-06move the setup buffer and pad into a bus_dma alloced areaJason Wright
(current score: 2 vtophys calls to go...)
2001-12-06Checkpoint bus_dma work in progress:Jason Wright
- descriptor lists are now bus_dma allocated and manipulated (for those keeping score: 6 vtophys dead, 4 to go)
2001-12-06Do not set handler for SIGINT and SIGQUIT to SIG_IGN since it preventsTodd C. Miller
getpass()/readpassphrase() from being able to restore the tty mode on keyboard interrupt. Along with the recent readpassphrase.c commit this means that if you ^C things that use login scripts (like su(1)) with a non-CBREAK shell your tty mode will be restored nicely. TODO: The various login scripts need to install handlers to avoid leaving turd files or otherwise ending in a bad state. It would also be nice to send BI_REJECT to the back channel.
2001-12-06Fix a long standing annoyance with getpass/readpassphrase. Instead ofTodd C. Miller
blocking SIGINT and SIGTSTP, catch them (along with SIGHUP, SIGQUIT, SIGTERM). We restore the tty mode as needed and then restore the original signal handler and resend the signal. For SIGTSTP, upon return from suspend the user is re-prompted for the passphrase.
2001-12-06mark more signals that I cannot fixTheo de Raadt
2001-12-06be more careful with spaces and tabs, guysTheo de Raadt
2001-12-06unbreak alpha kernel.Eric Jackson
2001-12-06alloca cannot check if the allocation is valid. mention the consequences; ↵Theo de Raadt
millert ok
2001-12-06remove kame IPSEC code within #ifdef.Jun-ichiro itojun Hagino
2001-12-06When you give command examples in a manual page prefix them withTheo de Raadt
$ command or # command Depending on if is a regular user command, or root-only. Please?
2001-12-06put __attribute__ to header decls to avoid align strangeness. sync with kameJun-ichiro itojun Hagino