Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-03-10 | Ensure that we obey a user's ddb> boot reboot command even if the system | Tom Cosgrove | |
is cold (during startup). This adds RB_USERREQ to sys/reboot.h, uses it in the ddb commands, and ensures that */*/machdep.c:boot() won't set RB_HALT when cold if this flag is set. ok deraadt@ | |||
2004-02-13 | typo | Jolan Luff | |
2004-02-10 | Add the ptm device to pty(4). By opening /dev/ptm and using the PTMGET | Todd C. Miller | |
ioctl(2), an unprivileged process may allocate a pty and have its owner and mode set appropriately. This means that programs such as xterm and screen no longer need to be setuid. Programs using the openpty() function require zero changes and will "just work". Designed by beck@ and deraadt@; changes by beck@ with cleanup (and a rewrite of the vnode bits) by art@ and tweaks/bugfixes by me. Tested by many. | |||
2004-01-23 | Crank SHMMAXPGS to 32mb; deraadt@ OK for all, drahn@ OK for macppc + pegasos | Todd C. Miller | |
2004-01-22 | dot_conv() is not used. | Miod Vallat | |
2004-01-22 | Nuke ddb_regs common. | Miod Vallat | |
2004-01-16 | cia* is not needed on floppyB, all these machines use tsc*. but at least | Theo de Raadt | |
some of these machines use a ahc* scsi controller. and it still fits! | |||
2004-01-13 | grog EV68 | Theo de Raadt | |
2004-01-13 | support mbuf handling in alpha sgmap dma maps; from netbsd | Theo de Raadt | |
2004-01-13 | need mbuf.h | Theo de Raadt | |
2004-01-12 | match both ALI ISA bridges (more fallout); ok millert | Theo de Raadt | |
2004-01-04 | put INET6, rtsol, and ping6 onto media where it fits. install.sub changes | Theo de Raadt | |
which begin to enable use of this will follow at a later time. | |||
2004-01-03 | put an mi wrapper around stdarg.h/varargs.h. gcc3 moved stdarg/varargs macros | Marc Espie | |
to built-ins, so eventually we will have one version of these files. Special adjustments for the kernel to cope: machine/stdarg.h -> sys/stdarg.h and machine/ansi.h needs to have a _BSD_VA_LIST_ for syslog* prototypes. okay millert@, drahn@, miod@. | |||
2003-12-22 | typos from Jared Yanovich; | Jason McIntyre | |
note: i only committed some of these. | |||
2003-11-21 | + -fno-builtin-* on architectures confirmed to work. | Marc Espie | |
2003-11-17 | Sync cpu_swapout() comments with reality. | Miod Vallat | |
2003-11-13 | More leftovers after uvm_useracc() removal; from NetBSD. | Miod Vallat | |
2003-11-08 | typos from Jonathon Gray; | Jason McIntyre | |
2003-11-08 | Avoid a race condition while swapping in a process. | Thomas Nordin | |
Tested by mickey@, henning@, ericj@, and beck@. ok mickey@ | |||
2003-11-06 | move netisr definition into md code to allow arch provide suitable ↵ | Michael Shalayeff | |
allocation; tested on most archs | |||
2003-10-18 | typos from Jared Yanovich; | Jason McIntyre | |
2003-10-03 | Merge tty_attach() in ttymalloc() and tty_detach() in ttyfree(). The need for | Miod Vallat | |
separate tty registering is gone now that sparc has switched to wscons, and this makes the code less error-prone. Also, remove tests for ttymalloc() failure, since it uses M_WAITOK. ok millert@ deraadt@, tested by various people as well besides me... | |||
2003-09-02 | Our extent implementation relies on the fact that extents all have distinct | Miod Vallat | |
names. However, the tsp code uses one global extent, which both device instances want to reinitialize and use for themselves (whether this is a genuine bug or not is left to the reader). Solve the problem by putting the extents into the tsp softc, and change the pci_bwx_bus code to handle variable extent names. This makes DS20 systems with tsp0 and tsp1 work again. ok deraadt@ | |||
2003-08-25 | rename struct dinode to ufs1_dinode. clears the namespace and makes | Ted Unangst | |
way for some future work. no function changes yet. help testing otto@ and markus@ | |||
2003-08-21 | These files were intended for X11 support, but serve no purpose nowadays, | Miod Vallat | |
as sparc* do not use Xsun-compatible event interface anymore, and alpha only used this for Xtga which we do not ship anymore. Discussed long ago with matthieu@ | |||
2003-08-15 | change arguments to suser. suser now takes the process, and a flags | Ted Unangst | |
argument. old cred only calls user suser_ucred. this will allow future work to more flexibly implement the idea of a root process. looks like something i saw in freebsd, but a little different. use of suser_ucred vs suser in file system code should be looked at again, for the moment semantics remain unchanged. review and input from art@ testing and further review miod@ | |||
2003-08-10 | Do not trust and use uvm_useracc, but rather always check copy{in,out} for | Miod Vallat | |
failure and act appropriately. | |||
2003-07-22 | Fix .depend generation for assym.h. Resolves PR 1154. | Otto Moerbeek | |
ok deraadt@ | |||
2003-07-19 | don't specify the leading "/" in MANSUBDIR (otherwise "//" occurs) | David Krause | |
ok millert@ | |||
2003-06-12 | final bits of obvious UCB term 3 removal | Theo de Raadt | |
2003-06-11 | Add pmsi to GENERIC, PR #3251 | Miod Vallat | |
2003-06-06 | - section reorder | Jason McIntyre | |
- new sentence, new line - some macro fixes | |||
2003-06-04 | clean up my copyright so it matches the template | Nathan Binkert | |
2003-06-03 | terms 3 & 4 cleanup based on "terms" file | Theo de Raadt | |
2003-06-03 | Make minaddr sane before calling uvm_km_suballoc() | Dale Rahn | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-05-23 | remove old swapgeneric.c's | Ted Unangst | |
2003-05-23 | move swapgeneric to truly generic code. tested on many archs by miod and ↵ | Ted Unangst | |
mickey. | |||
2003-05-14 | add {b,c}devsw_lookup convenience functions. | Ted Unangst | |
move chrtoblk and blktochr into MI code. tested on several archs and ok deraadt@ | |||
2003-05-13 | Add option NO_PROPOLICE, which explicitely disables the use of the propolice | Miod Vallat | |
stack protection when building kernels. Intended to be used on installation media, with tight space constraints - currently, only added where SMALL_KERNEL was already defined. Not thoroughly tested, but requested by deraadt. | |||
2003-05-13 | snprintf | Theo de Raadt | |
2003-05-13 | remove -fno-stack-protector (enable propolice) | Ted Unangst | |
ok deraadt@ | |||
2003-05-11 | string cleaning; krw ok | Theo de Raadt | |
2003-05-10 | string cleaning; ok beck dhartmei | Theo de Raadt | |
2003-04-16 | fix my copyright. make the part that's without fee unambiguous | Nathan Binkert | |
2003-03-01 | Provide real ieee fp*() functions; from NetBSD. | Miod Vallat | |
ok millert@ | |||
2003-02-28 | intrcnt's are now int's to fit with kern.intrcnt assumptions; miod ok | Jason Wright | |
2003-02-19 | Remove ddb machine commands, they are already available as "bo ha" and "bo re". | Miod Vallat | |
2003-02-18 | intial -> initial; | Jason McIntyre | |
the great intial witch hunt, as prompted by tdeval@ os-aix-dso.c: ok henning@ ab.C: ok drahn@ | |||
2003-02-11 | be consistant on Hz vs hz | Michael Shalayeff | |