Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-05-04 | Remove useless ``elm'' argument from the SIMPLEQ_REMOVE_HEAD macro. | Alexander Yurchenko | |
This matches our SLIST behaviour and NetBSD's SIMPLEQ as well. ok millert krw deraadt | |||
2004-04-21 | allow VAX48- and VAX49-only kernels | Michael Shalayeff | |
2004-04-19 | remove the GATEWAY junk thingy; at the same time, select a new fat | Theo de Raadt | |
cluster value that noone will really need to crank. | |||
2004-04-18 | typo in a comment | Michael Shalayeff | |
2004-04-16 | bye bye, because miod wants a clean shack as much as i do | Theo de Raadt | |
2004-04-16 | remove #GATEWAY junk | Theo de Raadt | |
2004-03-17 | Make sure disklabels use at least DEV_BSIZE as their sector size. | Miod Vallat | |
This allows the kernel to survive reading the disklabel off a 256-bytes/sector scsi device... ok deraadt@ | |||
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-03-09 | Turn FAULTCHK in a real statement-like macro. | Miod Vallat | |
2004-02-19 | Kill <sys/clist.h> - nothing uses it since years. | Miod Vallat | |
2004-02-15 | new arg to disk_unbusy, to record separate read/write statistics. | Ted Unangst | |
looked at by various, testing henning@ mcbride@ dan weeks mostly from netbsd via Pedro Martelletto <pbastos@rdc.puc-rio.br> | |||
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-29 | typos; jjy2+@pitt.edu | 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@. | |||
2004-01-01 | Some typos just never die (here controler vs controller). | Miod Vallat | |
2003-12-19 | Pass -Wformat. | Miod Vallat | |
2003-11-24 | -fno-builtin, checked by millert@ | Marc Espie | |
2003-11-10 | Get rid of the "struct pte" bitfield, and use straight integers. | Miod Vallat | |
Makes the code slightly more readble, removes casts, and makes some specific constants defined for the bitfields disappear in pmap.c... No functional change. | |||
2003-11-08 | typos from Jonathon Gray; | Jason McIntyre | |
2003-11-07 | adress -> address, and a few more; all from Jonathon Gray; | Jason McIntyre | |
(mvme68k/mvme88k) vs.c and (vax) if_le.c ok miod@ isakmpd ones ok ho@ | |||
2003-11-06 | Do not use a reserved PTE bit as the wired bit, this can bite you. | Miod Vallat | |
From NetBSD (PR #11121) | |||
2003-11-06 | move netisr definition into md code to allow arch provide suitable ↵ | Michael Shalayeff | |
allocation; tested on most archs | |||
2003-11-03 | spelling fixes (in the comments) | David Krause | |
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-26 | Typos: defintion -> definition, proccess -> process | Miod Vallat | |
There are more occurences hiding in binutils, lynx and afs but I am too lazy to report them upstream at the moment. | |||
2003-09-23 | Replace select backends with poll backends. selscan() and pollscan() | Todd C. Miller | |
now call the poll backend. With this change we implement greater poll(2) functionality instead of emulating it via the select backend. Adapted from NetBSD and including some changes from FreeBSD. Tested by many, deraadt@ OK | |||
2003-08-15 | ansi and proto cleanup. one unused function goes away | Theo de Raadt | |
2003-08-15 | proto findcpu, because bootblocks use this too | Theo de Raadt | |
2003-08-10 | ansi | Theo de Raadt | |
2003-08-10 | clean leftovers | Theo de Raadt | |
2003-08-06 | Remove some double semicolons (hmm, do two semis equal a maxi?). | Todd C. Miller | |
I've skipped the GNU stuff for now. From Patrick Latifi. | |||
2003-08-01 | remove the strcpy/strcat macros | Anil Madhavapeddy | |
deraadt@ ok | |||
2003-07-22 | Fix .depend generation for assym.h. Resolves PR 1154. | Otto Moerbeek | |
ok deraadt@ | |||
2003-06-26 | Compile the vax kernel with -Wmissing-prototypes -Wstrict-prototypes now. | Miod Vallat | |
2003-06-12 | final bits of obvious UCB term 3 removal | Theo de Raadt | |
2003-06-12 | final bits of obvious UCB term 3 removal | Theo de Raadt | |
2003-06-03 | terms 3 & 4 cleanup based on "terms" file | Theo de Raadt | |
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-27 | Fix siginfo contents in the T_ACCFLT case, fixes libpthread siginfo regression | Miod Vallat | |
test. Some stylistic input from marc@ | |||
2003-05-23 | remove old swapgeneric.c's | Ted Unangst | |
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 | 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 | siginfo support for vax. | Miod Vallat | |
machdep.c changes by me, trap.c changes by deraadt. | |||
2003-04-08 | Move definition of storage for cpu_model to locore.c so sizeof has | Hugh Graham | |
something meaningful to chew on. Shine on you crazy diamond. | |||
2003-04-06 | The return value for bounds_check_with_label() is not set in stone, and it | Miod Vallat | |
turns out that some arches will return (-1) in case of error, while others will return (0). Until we make our minds on this, make sure that callers of this function properly handle 0 or (-1) as failure. ok krw@ | |||
2003-04-06 | strcat/strcpy/sprintf cleanup. krw@, anil@ ok. art@ tested sparc64. | Hakan Olsson | |