summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | More comment cleanup.alex1997-06-262-10/+10
| | |
* | | Typo police.alex1997-06-262-6/+6
| | |
* | | Style fix my previous commit.alex1997-06-262-4/+4
| | |
* | | Synchronize with sys/i386/isa/clock.c and isa.c revisions 1.88 andkato1997-06-264-113/+101
| | | | | | | | | | | | 1.93, respectively.
* | | Use err(3) instead of local redefinition.charnier1997-06-261-7/+10
| | |
* | | Add usage(). Put program name in bold in the man page.charnier1997-06-262-7/+15
| | |
* | | Remove use of progname. Add usage().charnier1997-06-261-7/+13
| | |
* | | Correct usage string. Program name converted to bold in man page.charnier1997-06-262-5/+7
| | |
* | | Back out a bad commit.tegge1997-06-262-6/+2
| | |
* | | Clear nfs_iodwant[myiod] when the nfsiod process exits due to a signal.tegge1997-06-253-3/+6
| | |
* | | Treat no match as a failure. This is the normal behaviour on SunOS.tegge1997-06-251-0/+1
| | |
* | | Merged/renamed functions:fsmp1997-06-257-574/+392
| | | | | | | | | | | | | | | | | | - get_isa_apic_mask() -> isa_apic_mask() - get_isa_apic_irq() && get_eisa_apic_irq() -> isa_apic_pin() - get_pci_apic_irq() -> pci_apic_pin()
* | | Modified to use merged/renamed functions:fsmp1997-06-257-180/+160
| | | | | | | | | | | | | | | - get_isa_apic_mask() -> isa_apic_mask() - get_isa_apic_irq() && get_eisa_apic_irq() -> isa_apic_pin()
* | | Modified to declare merged/renamed functions:fsmp1997-06-253-15/+12
| | | | | | | | | | | | | | | | | | - get_isa_apic_mask() -> isa_apic_mask() - get_isa_apic_irq() && get_eisa_apic_irq() -> isa_apic_pin() - get_pci_apic_irq() -> pci_apic_pin()
* | | Fill in parent process id when reading process information from ategge1997-06-251-0/+12
| | | | | | | | | | | | memory dump. This fixes one of the problems noted in PR kern/3581.
* | | Modified to use renamed get_pci_apic_irq() -> pci_apic_pin() function.fsmp1997-06-252-10/+14
| | |
* | | Allow the kernel configuration file to override the amount of memorytegge1997-06-252-2/+6
| | | | | | | | | | | | | | | | | | | | | available to the kernel (VM_KMEM_SIZE). The default (32 MB) is too low when having 512 MB or more physical memory in a server environment. This is relevant on systems where "panic: kmem_malloc: kmem_map too small" is a problem.
* | | Allow kernel configuration file to override PMAP_SHPGPERPROC. The defaulttegge1997-06-252-2/+6
| | | | | | | | | | | | | | | | | | | | | value (200) is too low in some environments, causing a fatal "panic: get_pv_entry: cannot get a pv_entry_t". The same panic might still occur due to temporary shortage of free physical memory (cf. PR i386/2431).
* | | Block some interrupts during the call to pmap_zero_page integge1997-06-252-2/+6
| | | | | | | | | | | | | | | vm_page_zero_idle. This fixes some occurences of the problem reported in PR kern/3216: "panic: pmap_zero_page: CMAP busy"
* | | Add "set server" to control the server socket.brian1997-06-2510-74/+361
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Catch SIGUSR1 to re-init listening socket. Document signal behaviour. Add missing '\n's to LogPrintf(LogWARN,...) Main() returns int not void. AF_LOCAL ideal suggested a long time ago by: joerg
* | | Introduce an advisory exclusive lock on the scsi link structure.tegge1997-06-254-4/+47
| | | | | | | | | | | | | | | | | | | | | | | | Change sd_open, sd_close and sd_ioctl to use this lock to ensure serialization of some critical operations, thus avoiding some race conditions. Ideas picked from NetBSD (ccd and sd devices). This fixes one of the problems noted in PR kern/3688. Reviewed by: "Justin T. Gibbs" <gibbs@plutotech.com>
* | | Comment out rc.conf picking by defaultache1997-06-251-4/+4
| | |
* | | Add . /etc/rc.conf to pick variablesache1997-06-251-1/+6
| | |
* | | Execute rc.local in a subshell instead of sourcing it.pst1997-06-251-2/+2
| | | | | | | | | | | | Requested by: dima
* | | Pull histedit.h out, it lives in /usr/src/include, not here.msmith1997-06-251-5/+0
| | |
* | | Update histedit.h to match the new libedit.msmith1997-06-251-8/+15
| | | | | | | | | | | | Obtained from: NetBSD
* | | Import substantial improvements to ftp(1) from NetBSD, largely themsmith1997-06-2514-1398/+3555
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | work of Luke Mewburn. This includes, but is not limited to : - commandline editing and history. - local and remote filename completion. - a new progress display. - the ability to access files using either the ftp or http protocols, and use http proxies for ftp transfers. The FreeeBSD "restricted ports" functionality was preserved. Obtained from: NetBSD
* | | Avoid small synchronous writes when an application does lots of random-accessdfr1997-06-252-38/+230
| | | | | | | | | | | | short writes within a block (e.g. ld).
* | | Make nfs_lookup return a NULLVP on error so that DIAGNOSTIC kernels don'tdfr1997-06-252-8/+16
| | | | | | | | | | | | panic.
* | | Add extra test functionality.msmith1997-06-251-21/+49
| | | | | | | | | | | | Obtained from: NetBSD
* | | Update libedit with changes from NetBSD. Includes history load/save,msmith1997-06-2517-112/+1053
| | | | | | | | | | | | | | | | | | | | | some buffer overflow guards and some stylistic cleanups. Also adds manpages. Obtained from: NetBSD
* | | Add stringlist functions from NetBSD. (required for the new ftp(1)msmith1997-06-253-5/+246
| | | | | | | | | | | | Obtained from: NetBSD
* | | Add stringlist functions from NetBSD. (required for the new ftp(1)msmith1997-06-252-4/+59
| | | | | | | | | | | | Obtained from: NetBSD
* | | Don't ever allow lowering the securelevel at all. Allowing it doesjoerg1997-06-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | nothing good except of opening a can of (potential or real) security holes. People maintaining a machine with higher security requirements need to be on the console anyway, so there's no point in not forcing them to reboot before starting maintenance. Agreed by: hackers, guido
* | | Update manpage to newer version. Use err(3).charnier1997-06-252-19/+20
| | |
* | | Free a malloc'ed variable before exiting. Compute line number when parsingcharnier1997-06-252-5/+12
| | | | | | | | | | | | | | | input file, it helps finding errors. Obtained from: OpenBSD.
* | | Fix krb5_prop entry.dima1997-06-251-3/+2
| | | | | | | | | | | | Pointed-by: Bill Fenner
* | | Add krb5_prop service (kerberos v5 prop).dima1997-06-251-1/+2
| | | | | | | | | | | | It's on the same port as for v4 but requires different name.
* | | sh /etc/rc.local -> . /etc/rc.localdima1997-06-251-2/+2
| | |
* | | Allow shell commands (still run as original user)brian1997-06-251-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unless defined out - including while a telnet session with a -auto ppp is in effect. If you don't create ppp.secrets, you deserve what you get. telnet connection capabilities will be configurable per system soon. Suggested by: Terry Dwyer <tdwyer@omen.net.au>
* | | Do The Right Thing when an iBCS2 program does getgroups(0, whatever) -- wesef1997-06-251-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | were returning EFAULT, when it is a completely acceptable thing to do. Also, at the same time, be a *bit* optimizing and don't allocate any "stackgrap" memory if we're not going to use it. This is another Oracle-discovered problem. Submitted by: Steven Wallace
* | | YAMF22jkh1997-06-241-3/+13
| | | | | | | | | | | | Submitted by: pst
* | | Add missing '.'dima1997-06-241-10/+10
| | |
* | | Yeesh! Some of this stuff I yanked out of the makefiles withoutjkh1997-06-242-4/+4
| | | | | | | | | | | | | | | reviewing closely enough (and, as a result, proflibs and dict suffered). Fix.
* | | Fix ~? output in "term" mode.brian1997-06-241-9/+9
| | | | | | | | | | | | Spotted by: Harry Starr <starr@gccs.com.au>
* | | Display tickadj in struct clockinfo.jhay1997-06-242-6/+6
| | |
* | | Add tickadj to struct clockinfo, like NetBSD and OpenBSD.jhay1997-06-241-1/+1
| | |
* | | Add tickadj to struct clockinfo, like NetBSD and OpenBSD.jhay1997-06-247-8/+13
| | | | | | | | | | | | NOTE: libc, time, kgmon and rpc.rstatd will have to be recompiled.
* | | Ensure that the boot CPU honours write protection in kernel mode.tegge1997-06-247-7/+63
| | | | | | | | | | | | This fixes one of the problems noted in PR kern/3688.
* | | Don't depend upon the kernel load address being 0xf0100000.tegge1997-06-241-2/+2
| | |
OpenPOWER on IntegriCloud