summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add worm to /usr/share/examplesjkh1996-06-251-1/+3
|
* Handle tabs in INDEX files.jkh1996-06-259-26/+77
| | | | Display full, un-truncated version of description in status line.
* Update to reflect new ipfw syntax.alex1996-06-251-138/+136
|
* Fixed end condition for clustered reads.dg1996-06-251-2/+2
| | | | Submitted by: Kirk McKusick via Lite-2 and email
* Limit the scan for preloading pte's to the end of an object.dyson1996-06-252-2/+8
|
* Fix some serious problems with limits checking in the sbrk(2)/brk(2)dyson1996-06-251-13/+25
| | | | | code. Reviewed by: bde
* Allow fragment checking to work with specific protocols.alex1996-06-251-16/+26
| | | | | | | | | | Reviewed by: phk Reject the addition of rules that will never match (for example, 1.2.3.4:255.255.255.0). User level utilities specify the policy by either masking the IP address for the user (as ipfw(8) does) or rejecting the entry with an error. In either case, the kernel should not modify chain entries to make them work.
* Remove another extraneous setting of if_lastchangegpalmer1996-06-241-2/+1
|
* Add default targets for cleandepend and objlink.jkh1996-06-241-2/+2
| | | | Submitted by: Michael Hancock <michaelh@cet.co.jp>
* Start vi.recovery processing after ldconfig.pst1996-06-241-10/+10
| | | | Closes misc/1346 which has bitten me more times than I care to remember.
* Add the (commented out) OBJLINK hook.nate1996-06-243-3/+15
|
* Ensure that media protection is released before attempting to eject thegibbs1996-06-242-13/+25
| | | | | | | | | | | media in all cases. Remove SCSI_2_MAX_DENSITY_CODE definition and rely on the device to tell us if we attempt an invalid setting. Closes PR 1245. Submitted by: fredriks@mcs.com a few changes by me.
* Remove RSS limiting until I rewrite the code to be non-recursive. Thedyson1996-06-241-9/+5
| | | | code can overrun the kernel stack under very stressful conditions.
* Bring in my changes for removing the pestilent obj links (unless youjkh1996-06-2478-583/+367
| | | | | really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current.
* Adjust docs to match reality.jkh1996-06-241-4/+8
|
* Adjust the reference to ftpBinary() in the (unused) TCL wrappers.jkh1996-06-241-4/+4
|
* update Istanbulwosch1996-06-241-1/+2
| | | | Submitted by: jhs
* update E-Mail address of Julian Staceywosch1996-06-241-5/+3
|
* Do not exit if ftpGetSize() returns a value < 0. You may well try tojmz1996-06-241-3/+1
| | | | fetch a whole <directory>.tar.gz on a server running wu-ftp.
* Whoops: had a couple of hardcoded instances of '/var/yp/' that shouldn'twpaul1996-06-233-9/+15
| | | | have been there. Fixed to use yp_dir, which can be set on the command line.
* Add moused hooks (OFF by default)ache1996-06-233-3/+36
|
* Fix address mask calculation when using ':' syntax. Allow a maskalex1996-06-231-13/+23
| | | | | | | | of /0 to have the desired effect. Normalize IP addresses that won't match a given mask (i.e. 1.2.3.4/24 becomes 1.2.3.0/24). Submitted by R. Bezuidenhout <rbezuide@mikom.csir.co.za> Code formatting and "frag" display fixes.
* Fix problem with scb flag handing that crept in with the SCB paging support.gibbs1996-06-231-58/+59
| | | | | | | This only affected userland initiated device resets (using the reset command from cdplay for instance). Convert some spaces to tabs.
* Oops, forget the fact that LINT compiles (fixing previos PAS commi)ache1996-06-233-12/+15
|
* Describe the way how to add OPL for PAS without conflictache1996-06-233-6/+12
|
* Update the BUGS section, now that we've got some experience in usingjoerg1996-06-231-11/+23
| | | | this driver.
* Unstaticize psratio and staticize profprocs. psratio needs to be exportedbde1996-06-234-16/+20
| | | | to trap.c to fix user profiling.
* Don't truncate minor or major numbers in the nfsv3 client.bde1996-06-234-12/+12
|
* Moved declarations of static functions to the correct file. This fixesbde1996-06-236-111/+111
| | | | hundreds of warnings from -Wunused in lkm/syscons/*.
* Removed unused #include. Linux doesn't support SCO consoles.bde1996-06-232-4/+2
|
* Run the headers through cpp -dM to find the #defines. The direct searchbde1996-06-231-2/+8
| | | | | | | | | | has been broken at least since 4.4Lite moved most of the #defines out of <sys/ioctl.h>. This should be done better. Only a few headers are searched. Added some #includes so that ioctl.c compiles. The networking headers have a maze of undocumented interdependencies and ioctl.c now actually supports networking ioctls.
* Add some examples on burning CDRs - I figured it was about time tojkh1996-06-233-0/+73
| | | | document it! :-)
* Forward-declare a struct tag so that this doesn't depend on a side effectbde1996-06-231-1/+2
| | | | of indirectly including <i386/isa/isa_device.h>.
* Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative)bde1996-06-234-8/+8
| | | | path.
* Don't claim to be a VFS_LKM - generate vnode_if.h by putting it in SRCS.bde1996-06-232-10/+8
| | | | | Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path.
* Don't (re)define ACTUALLY_LKM_NOT_KERNEL. It wasn't even used by thebde1996-06-232-2/+2
| | | | | | | joy driver proper. Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path.
* Finished converting ipfw to use opt_ipfw.h.bde1996-06-231-1/+2
|
* Don't (re)define or use ACTUALLY_LKM_NOT_KERNEL - use the existingbde1996-06-232-2/+2
| | | | | | | | definition of QCAM_MODULE for everything involving LKM'ness. Makefile: Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path.
* Use IPFIREWALL_MODULE instead of ACTUALLY_LKM_NOT_KERNEL to indicatebde1996-06-233-8/+10
| | | | | | | | | | LKM'ness. ACTUALLY_LKM_NOT_KERNEL is supposed to be so ugly that it only gets used until <machine/conf.h> goes away. bsd.kmod.mk should define a better-named general macro for this. Some places use PSEUDO_LKM. This is another bad name. Makefile: Added IPFIREWALL_VERBOSE_LIMIT option (commented out).
* Disabled unusable union lkm.bde1996-06-232-6/+6
|
* Describe MAXMEM better. Enable it by default. (It's a positive option.bde1996-06-233-15/+18
| | | | Only negative options in LINT should be enabled.)
* Removed -g from CFLAGS.bde1996-06-233-4/+4
|
* Made strip failures fatal. This fixes PR 1328.bde1996-06-231-2/+4
|
* Add moused to targets.sos1996-06-231-3/+3
|
* Removed rubbish that stopped usr.bin/ncftp from going away.bde1996-06-231-5/+0
|
* Remove an un-necessary call to microtime() to set if_lastchangegpalmer1996-06-231-1/+0
| | | | as it is set in the call to if_down in the line above
* Fix a couple of bogus casts to off_t that caused dumpfs to lseek negativepeter1996-06-231-4/+4
| | | | on filesystems > 2GB (which causes the disk slice code to call Debugger!!)
* Specify that daemon(3) returns int, and standardise thegpalmer1996-06-221-3/+5
| | | | | phrasing in the ERRORS section a bit, as well as now specifying the return status.
* Adjust the copyright to match reality, remove printing of gratuitous newline.jkh1996-06-221-3/+3
|
* Fix a bug in the way binary/ascii settings were being done. Newjkh1996-06-222-42/+78
| | | | ftpAscii() call sets connection to ascii as counterpart to ftpBinary().
OpenPOWER on IntegriCloud