summaryrefslogtreecommitdiff
path: root/sys/kern
AgeCommit message (Collapse)Author
1997-06-04clear timer for setuid; klooTheo de Raadt
1997-06-03some notes on adding a system call; feel free to expand this documentkstailey
1997-05-31sync to syscalls.masterTheo de Raadt
1997-05-30add getpgid(2) from NetBSDkstailey
1997-05-29save symtab id after addition to ddb for future useMichael Shalayeff
1997-05-22missing crTheo de Raadt
1997-05-21Use vrele() if the vnode was not locked, not vput()Thorsten Lockert
1997-05-12for miniroot, translate swap to ffsTheo de Raadt
1997-04-28The type of a pointer to const characters is not the same as a const pointerNiklas Hallqvist
to non-const characters. Besides, the prototypes for copyin and friends, as well as timeout/untimeout takes void *, not caddr_t (char *), so I matched them. Slight KNF. This change makes it pass -Wcast-qual.
1997-04-26First argument to nanosleep(2) is const; so is the first argument toThorsten Lockert
copyin(9). Propagate this.
1997-04-25proper mask check; mike@fast.cs.utah.eduTheo de Raadt
1997-04-23In nanosleep, use local error variable when storing rqtp in so that an errorThorsten Lockert
from a failed tsleep will still be returned to the caller; from jtc@NetBSD
1997-04-20Add new POSIX 1003.1b related syscalls; from pk@NetBSDThorsten Lockert
1997-04-20Add new POSIX 1003.1b related syscalls; from pk@NetBSDThorsten Lockert
1997-04-19Fix return with missin value...Per Fogelstrom
1997-04-14Minor performance enhancements from NetBSDThorsten Lockert
1997-04-06bad dkpart(), bad dkunit(), bad bad badTheo de Raadt
1997-04-04s/STRIPIPDISC/STRIPDISC/; kleink@netbsd.orgTheo de Raadt
1997-03-29Return EISDIR for directories; idea from NetBSDThorsten Lockert
1997-03-29Do return values from issetuid() correctlyThorsten Lockert
1997-03-27Import genassym.sh method from NetBSDNiklas Hallqvist
1997-03-27Implement NOFILE_MAX--hard limit on max descriptors per proccess.Todd C. Miller
Future direction, might make sense to make this a kernel symbol tha is sysctl-able.
1997-03-27Make kern.osrevision (sysctl) and /kern/osrev report value ofTodd C. Miller
OpenBSD define, not BSD which is a bit more useful.
1997-03-26proper englishTheo de Raadt
1997-03-26loginname copying in fill_eproc; gwing@primenet.com.auTheo de Raadt
1997-03-16allow settimeofday() at securelevel < 2, rather than < 1.flipk
the consensus was that it was too annoying to not be able to change the clock at securelevel == 1.
1997-03-02Add noatime option to not update atime on files in a filesystem (unlessTodd C. Miller
ctime or mtime has changed). Useful for laptops and news servers.
1997-03-01Don't dereference a vnode pointer that is NULLThorsten Lockert
1997-03-01prevent warning about unused variable when NO_KMEMSTATS is in effectkstailey
1997-02-28Moved IPsec socket state to the PCB.Angelos D. Keromytis
1997-02-28New variables for system-wide security default levels.Angelos D. Keromytis
1997-02-28IPsec socket API additions.Angelos D. Keromytis
1997-02-26From tholo: Do not do strict POSIX offset checking on character devices.Niklas Hallqvist
This fixes the problem of not being able to read kernel virtual memory on the alpha, thus breaking things like ps etc.
1997-02-24OpenBSD tagsNiklas Hallqvist
1997-02-22Upodate to lite2 -- don't allow setting back the clock if securelevel > 0Todd C. Miller
1997-02-21shmdt before shmdt (in child) fixTheo de Raadt
1997-02-21do not allow SO_SNDBUF/SO_RCVBUF len 0Theo de Raadt
1997-02-20IPSEC package by John Ioannidis and Angelos D. Keromytis. Written inTheo de Raadt
Greece. From ftp.funet.fi:/pub/unix/security/net/ip/BSDipsec.tar.gz
1997-02-18if a P_SUGIDEXEC proc execve()'s a non-set[ug]id program while runningTheo de Raadt
with uid/gid mismatches, P_SUGIDEXEC should persist (in case the environment has not been cleaned). pointed out by wietse@porcupine.org
1997-02-18cp P_SUGID/P_SUGIDEXEC to child, doh; half from freebsdTheo de Raadt
1997-02-14hide fsid in getfsstat too, clone of millert fix, problem spotted by bitbltTheo de Raadt
1997-02-14round RLIMIT_STACK; problem spotted by jfw@jfwhome.funhousecomTheo de Raadt
1997-02-13Don't expose f_fsid to non-root.Todd C. Miller
1997-02-11Add fs_id support and random inode generation numbers for ffs.Todd C. Miller
1997-02-06terminate copyinstr, copyoutstr full name; Don.Lewis@tsc.tdk.comTheo de Raadt
1997-02-03hp300 needs device_register(), too.Jason Downs
1997-02-02Prevent seeking to negative offsets when seeking from the end of a file;Thorsten Lockert
noticed by Tim Newsham <newsham@aloha.net>
1997-02-01add type & union sigval args to sendsig/trapsignalTheo de Raadt
1997-02-01Correct early termination case of read clustering which could causeNiklas Hallqvist
buffer cache poisoning when bufpages/nbuf is larger than 1. Also correct readahead amount calculation. Optimize page moving when buffers have excess pages.
1997-01-27select subsystem si_pid becomes si_selpid, to not conflict against ↵Theo de Raadt
user/kernel siginfo si_pid #define