Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-12-07 | Ratibibugle setredzone() | Miod Vallat | |
[Ratibibugle is local slang for g/c, remove, rototill, etc] | |||
2001-12-07 | In uni_n_config(), only return a base address if a base address was found. | Miod Vallat | |
2001-12-07 | Make vnds larger than 2G work, mostly by Daniel Lucq <daniel@lucq.org>. | Niklas Hallqvist | |
2001-12-07 | Make vnds larger than 2G work, mostly by Daniel Lucq <daniel@lucq.org> | Niklas Hallqvist | |
toouches by me. | |||
2001-12-06 | No need to keep dummy fields in cpu_disklabel structures. | Miod Vallat | |
2001-12-06 | DDB disassembly fixes and trace improvements from NetBSD. | Miod Vallat | |
2001-12-06 | Don't hardcode SYS_exit value. | Miod Vallat | |
2001-12-06 | Declare SYS_exit for all m68k locore.s'es | Miod Vallat | |
2001-12-06 | remove unnecessary newline | Niklas Hallqvist | |
2001-12-06 | Use hzto() to handle overflow of (hz * timeout) cases --- when using | Angelos D. Keromytis | |
extremely long SA expirations. | |||
2001-12-06 | References to ``comment at line foo'' is useless once line foo moves, | Miod Vallat | |
dammit. Change description. | |||
2001-12-06 | MACHINE_UPTBASE is not constant on amiga, ouch. | Miod Vallat | |
2001-12-06 | add dc* here, too | Jason Wright | |
2001-12-06 | add dc* at pci (seems to work on Netra X1) | Jason Wright | |
2001-12-06 | add bus_dmamap_sync()'s on the descriptors too | Jason Wright | |
(with all this, my Netra X1 is up and running with an NFS root) | |||
2001-12-06 | a few more bus_dmamap_sync()'s and some borrowed setup frame macros from ↵ | Jason Wright | |
NetBSD, and RX works on sparc64. | |||
2001-12-06 | Define proper macros for FP frame offsets rather than magic numbers. | Todd C. Miller | |
From NetBSD (tsutsui). | |||
2001-12-06 | Shave never used fastvec code | Niklas Hallqvist | |
2001-12-06 | document alpha machdep.* sysctl's | Eric Jackson | |
2001-12-06 | Sanity check on inner IP header in IP-in-IP encapsulation; could be | Angelos D. Keromytis | |
exploited to crash systems that allowed IP-in-IP protocol (sysctl -w net.inet.ipip.allow=1) | |||
2001-12-06 | enough 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-06 | fix typo I introduced during ksyms addition | Todd C. Miller | |
2001-12-06 | Sprinkle pmap_update() calls (based on NetBSD) | Todd C. Miller | |
2001-12-06 | Sync with NetBSD: | Todd C. Miller | |
o Add missing pmap_remove() before uvm_km_free_wakeup() o sprinkle pmap_update | |||
2001-12-06 | disable nagle for X11 fake server and client TCPs. from netbsd. | Kevin Steves | |
ok markus@ | |||
2001-12-06 | strncpy->strlcpy. remaining strncpy's are necessary. ok markus@ | Kevin Steves | |
2001-12-06 | shutdown(sock, SHUT_RDWR) not needed here; ok markus@ | Kevin Steves | |
2001-12-06 | vtophys, R.I.P. (tx now uses bus_dma) | Jason Wright | |
2001-12-06 | move rx handling over to bus_dma... that just leaves one vtophys() in tx. | Jason Wright | |
2001-12-06 | update the radio chipset support | Michael Shalayeff | |
2001-12-06 | add -o to sshd, too. ok deraadt@ | Markus Friedl | |
2001-12-06 | Keep track of how many pages a vnode hold with vhold and vholdrele | Artur 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-06 | oops, local change escaped | Michael Shalayeff | |
2001-12-06 | fix MLINKS for mbuf(9) | Michael Shalayeff | |
2001-12-06 | rcsid and hostory section | Michael Shalayeff | |
2001-12-06 | mbuf(9) man page. Thanks for art@ and mpech@ corrections. | Jean-Jacques Bernard-Gundol | |
2001-12-06 | long leftovers | Michael Shalayeff | |
2001-12-06 | clear 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-06 | Use TCSAFLUSH not TCSANOW. I was only using TCSANOW during debugging... | Todd C. Miller | |
2001-12-06 | move the setup buffer and pad into a bus_dma alloced area | Jason Wright | |
(current score: 2 vtophys calls to go...) | |||
2001-12-06 | Checkpoint 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-06 | Do not set handler for SIGINT and SIGQUIT to SIG_IGN since it prevents | Todd 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-06 | Fix a long standing annoyance with getpass/readpassphrase. Instead of | Todd 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-06 | mark more signals that I cannot fix | Theo de Raadt | |
2001-12-06 | be more careful with spaces and tabs, guys | Theo de Raadt | |
2001-12-06 | unbreak alpha kernel. | Eric Jackson | |
2001-12-06 | alloca cannot check if the allocation is valid. mention the consequences; ↵ | Theo de Raadt | |
millert ok | |||
2001-12-06 | remove kame IPSEC code within #ifdef. | Jun-ichiro itojun Hagino | |
2001-12-06 | When you give command examples in a manual page prefix them with | Theo de Raadt | |
$ command or # command Depending on if is a regular user command, or root-only. Please? | |||
2001-12-06 | put __attribute__ to header decls to avoid align strangeness. sync with kame | Jun-ichiro itojun Hagino | |