summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Sleep for a second after tcp wrappers rejects a connection, so wedwmalone2000-07-311-1/+3
| | | | | | | don't traumatise the parent inetd. Requested by: wietse@porcupine.org Approved by: markm
* Support for the Panasonic / Matshita USB FDD.n_hibma2000-07-313-2/+12
| | | | | Submitted by: SAKIYAMA Nobuo <sakichan@lares.dti.ne.jp> PR: kern/20300
* Point out, that build/installkernel need a built world and that morealex2000-07-311-5/+8
| | | | | | | information can be found in the handbook. Requested by: sheldonh Reviewed by: sheldonh
* Crypto sources are no longer export controlled:alex2000-07-311-11/+3
| | | | | | Explain, why crypto sources are still in crypto/. Reviewed by: markm
* Fix the obvious make and sed syntax errors lurking from my last "fix".nbm2000-07-311-3/+3
|
* Don't segv when trying to add a 0-length unit name.kris2000-07-311-21/+20
| | | | | | Some string-related cleanups inspired by OpenBSD. Reviewed by: asmodai
* Don't coredump on long input lines. If anyone actually cares, this shouldkris2000-07-311-1/+1
| | | | | | be fixed to actually process long lines instead of truncating them. Obtained from: OpenBSD
* - FreeBSD supports the Alpha Platform as wellalex2000-07-311-5/+5
| | | | - There are now more than 3500 ports in the ports collection.
* - Update the list of backuped files during upgrade according toalex2000-07-311-13/+15
| | | | | sysinstall's source-code. - wd(4) -> ad(4)
* Mention the buildkernel/installkernel targets in the documentation.alex2000-07-311-0/+2
|
* mbstat should be a read-only sysctl.alfred2000-07-311-1/+1
| | | | Submitted by: Bosko Milekic <bmilekic@dsuper.net>
* Reflect reality:alex2000-07-311-6/+8
| | | | | | | | | - Make world doesn't build the modules any more. - Mention the buildkernel/installkernel targets as common used targets. - LINT has gone, NOTES is new but cannot be built. It is a pure reference file. However, I still mentioned LINT but pointed out the difference between the ancient LINT and the new NOTES. This should avoid confusion. - crypto/ subdir isn't export controlled any more.
* Remove unnecessary call to splnet when setting an accept filterps2000-07-312-6/+0
| | | | since we are already at splnet.
* Xref strfile(8).mpp2000-07-311-1/+2
| | | | | PR: misc/20304 Submitted by: Kim Scarborough <sluggo@unknown.nu>
* Add pointers to rfork_thread(3)peter2000-07-311-3/+12
|
* Add #ports/hebrewache2000-07-311-0/+1
|
* Add hebrew.asami2000-07-312-0/+2
|
* Add ports-hebrew.asami2000-07-312-0/+2
|
* Don't build sshd if NO_OPENSSL defined.kris2000-07-301-1/+1
| | | | Submitted by: stephen@math.missouri.edu
* Fix the HTTP transfer code to correctly parse the port number ifjkh2000-07-305-36/+40
| | | | | | specified. Submitted by: pho
* add suspend/resume for yamaha chipscg2000-07-301-0/+75
| | | | Submitted by: Ira L Cooper <ira@MIT.EDU>
* Allow use of TSC even if APM is compiled in but disabled.phk2000-07-305-5/+30
|
* fix a potential local DoS attackcg2000-07-302-2/+13
|
* fix a bug where opening /dev/dsp twice resulted in it being busy until rebootcg2000-07-301-0/+3
|
* Update rev 1.29 -- 'draft-manning-dsua' is now in its 3rd version.obrien2000-07-301-1/+3
|
* Spell the word 'limited' with only one 't'.steve2000-07-302-2/+2
|
* Keep urandom as a link to random (but a hard link).green2000-07-301-1/+1
|
* Add the bufbio paper to the build.phk2000-07-301-2/+2
| | | | | Various plans to move all these to the doc tree exist pending time and somebody to docbook them.
* Add the bio/buf paperphk2000-07-303-0/+1317
|
* Merged from sys/dev/syscons/scterm-sc.c revisions from 1.8 to 1.12.nyan2000-07-302-32/+74
|
* Merged from sys/dev/syscons/syscons.c revision 1.344.nyan2000-07-301-1/+2
|
* Merged from sys/boot/i386/btx/btx/btx.s revisions from 1.18 to 1.22.nyan2000-07-302-12/+74
|
* Darren,darrenr2000-07-301-1/+4
| | | | | | | | | | | Could you please enable my "state top" patches in the FreeBSD distribution. I developped the stuff under FreeBSD, so it must be good there :-) Here is a patch (relative to the RELENG_4 branch). Thanks, Frank
* Since the driver supports both (and may have different semantics forgreen2000-07-301-1/+1
| | | | | both soon...), create urandom instead of the link to random. It's also what makes sense according to the make_dev(9)'s in random(4).
* do the ac97 init delay for all chips and increase it to 500mscg2000-07-301-2/+3
|
* Initialize vflag like the rest (not necessary, but this keeps it together)peter2000-07-291-1/+4
| | | | Optimize out chown(2) syscalls if there is no change in uid or gid.
* Optimize out no-op chmod() syscalls.peter2000-07-291-2/+5
|
* Add a skeleton rfork_thread(3) man page.peter2000-07-292-1/+79
|
* Add a prototype for rfork_thread().peter2000-07-291-0/+1
| | | | | | | | | pid_t rfork_thread(int forkflags, void *stack, int (*func)(void *arg), void *arg); A new process is created, presumably using RFMEM shared address space. The child process switches to the supplied stack, which is set up with a function call frame. The function is called with the supplied arguement. If the function returns, the return value will be used with _exit(2).
* Take a shot at implementing a functional rfork_thread() for alpha. Thispeter2000-07-292-0/+66
| | | | | | was not fun and I am not entirely certain of the correctness, but it seems to work. (in fact, side by side testing of this code vs the x86 version turned up hidden bugs in the x86 code).
* Fix some rather interesting bugs that managed to not turn up in variouspeter2000-07-291-5/+5
| | | | | | | | | | | testing and real-life applications: 1) If you returned from the thread function, you got a segv instead of calling _exit() with your return code. 2) clean up some bogus stack management. There was also an underflow on function return. 3) when making syscalls, the kernel is expecting to have to leave space for the function's return address. We need to duplicate this. It was an accident that the rfork syscall actually worked here. :-/
* Regen. (Fix SYS_exit)peter2000-07-2923-39/+39
|
* Sigh. Fix SYS_exit problems. I misunderstood the significance of thesepeter2000-07-297-7/+7
| | | | trailing options.
* rfork(2) wrapper for simple rfork-style threads. I have lost count ofpeter2000-07-293-2/+114
| | | | | | | | | | | | | | | the number of times I have given this to people and got asked: why isn't it in libc? It is impossible to do this without assembler glue to reset the stack for the new child process. int rfork_thread(flags, stack_addr, start_fnc, start_arg) int flags; Flags to rfork system call. See rfork(2). void *stack_addr; Top of stack for thread. int (*start_fnc)(void *); Address of thread function to call in child. void *start_arg; Argument to pass to the thread function in child. This is deliberately not documented or prototyped in includes until the corresponding alpha version is written.
* Remove this file incase of further confusion.ps2000-07-291-142/+0
|
* Change option -r to -n inline with conventions we use elsewhere.ps2000-07-292-5/+5
| | | | | | | I guess it serves me right for using a patch directly from Jan Koum. :) Requested by: many
* Move RAID controllers to the same position as in i386 GENERIC.obrien2000-07-292-8/+8
|
* Revert previous commit. Not all RAID controllers are SCSI.obrien2000-07-292-12/+10
|
* Move the RAID controllers next to the SCSI controllers.obrien2000-07-292-10/+12
|
* Make the bridge_refresh operation automatic when ethernet interfacesnsayer2000-07-293-1/+14
| | | | are attached or detached.
OpenPOWER on IntegriCloud