summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2001-12-06use err/warn and friends instead of printf/exit.Eric Jackson
also, remove fatal2() which is just errx anyway. millert@ ok
2001-12-06A FILE * is not a file name, dammit.Todd C. Miller
2001-12-06kill register decls. sync better with kame.Jun-ichiro itojun Hagino
2001-12-06remove obsolete comment; we don't support IPv4 mapped addrJun-ichiro itojun Hagino
2001-12-06syncTheo de Raadt
2001-12-06remove #if 0'ed portion (for KAME IPSEC - not needed)Jun-ichiro itojun Hagino
2001-12-06comment typo, and $OpenBSD$ (thanks pval)Bob Beck
2001-12-06Fix realloc in getline so we exit on failure - in this context it's sillyBob Beck
to try to continue and hold on to the same memory if we can't get memory to hold a control command. log and fail instead. (absurdity spotted by theo)
2001-12-06Fix typos, from NetBSDMiod Vallat
2001-12-06MAPPEDCOPY no more.Miod Vallat
2001-12-06Reality updated: no nedd to speak about "old" machines and "current" machinesMiod Vallat
as the hp300 series are extinct, remove more dead options, clarify other, etc.
2001-12-06use .Nm moreTheo de Raadt
2001-12-06don't use "you" in a man page.Bob Beck
2001-12-06*** empty log message ***Bob Beck
2001-12-05Enable rootdev auto-configuration by device drivers during boot.Thierry Deval
Add support for "raid" devices (prepare future raidframe changes). OK deraadt@, Reviewed by drahn@, jason@, mickey@ and miod@
2001-12-05typoDaniel Hartmeier
2001-12-05remove some ancient crud from the "modern machine" floppyTheo de Raadt
2001-12-05Explain that filter rules need to let pass connections to the proxy portsDaniel Hartmeier
in, why this is so, and how it's done.
2001-12-05correct an alignment mis-conception for malloc(0) returned regions.Thierry Deval
OK deraadt@
2001-12-05document Symbol's Spectrum24 pcmcia/prism2Michael Shalayeff
2001-12-05match on Symbol's Spectrum24 pcmcia/prism2, form netbsdMichael Shalayeff
2001-12-05add simpletech spectrum24, from netbsdMichael Shalayeff
2001-12-05I don't know who is to blame, heko@ for bOrking this, or myself to have notMiod Vallat
noticed for so long...
2001-12-05document -a betterJason Wright
2001-12-05remove garbage; miod okTheo de Raadt
2001-12-05update from Nsk dudesMichael Shalayeff
2001-12-05syncChristian Weisgerber
2001-12-05Add AdLib MSC 16 PnP.Christian Weisgerber
From Georg Schwarz <georg.schwarz@iname.com>; ok deraadt@
2001-12-05Minor sync with NetBSDTodd C. Miller
o fix two err() calls that should be errx() o don't use the colonc variable in a non-obvious way o add missing or of F_SHELL when in preserve mode
2001-12-05change KMEMPAGES back to 64M, 128M does not work on large memory machines.Dale Rahn
ok art@
2001-12-05o Use proper uid_t and gid_t types and fixup printf format strings to matchTodd C. Miller
o Change "unsigned" -> "unsigned int" o Correct a buffer size that should have been LINE_MAX o Simplify creation of group entry in groupmod() using strlcat() and catch errors. Theo and myself...
2001-12-05If we assume (just pure speculation) that there will be a pmap sometime inArtur Grabowski
the future that wants to allocate pv entries for every pmap_enter and wants to allocate those pv entries from kmem_map, it might be a good idea to init the kmem_map before initializing the kmemusage struct (because kmemusage allocates memory).
2001-12-05Correctly parse hex numbers. Spotted by Claudio Jeker. Closes PR 2234.Daniel Hartmeier
2001-12-05Put back to the old KMEM size, until we can increase this and have it workDale Rahn
on large memory machines.
2001-12-05o) start new sentence on a new line;Mike Pechkin
o) minor mdoc fix; millert@ ok.
2001-12-05make theo and djm happy: bye bye regexpMarkus Friedl
2001-12-05calculate and use nkmempages, not NKMEMCLUSTERS.Artur Grabowski
2001-12-05Remove NKMEMCLUSTERS.Artur Grabowski