summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed GET/SETIPDOMAIN ioctl on /dev/socksys, which is used by variousnate1996-06-121-2/+90
| | | | | | other socket functions (gethostname() for one). Reviewed by: sef
* Properly lock the vm space when accessing the memory in a process. Thisdyson1996-06-112-4/+28
| | | | | fix could solve some "interesting" problems that could happen during process rundown.
* Change the symbol name used in the last commit from USRSTACK todyson1996-06-111-1/+1
| | | | | VM_MAXUSER_ADDRESS. Even though they are the same, the new name is more descriptive.
* Fix a couple of minor typos. Closes PR 1309.alex1996-06-111-3/+3
| | | | | Reviewed by: alex Submitted by: jraynard
* Get rid of the unneeded upper address space.dyson1996-06-111-2/+2
|
* Submitted by: richrich1996-06-111-1/+21
| | | | Added my PGP key to the handbook.
* Code cleanup:jraynard1996-06-113-9/+9
| | | | | | | | Fixed a couple of nitpick warnings, plus one that slipped through the net earlier. This directory now compiles without any warnings with -Wall! (Until the next gcc upgrade...)
* Cosmetic fixes for drive names which are 4 chars long.jkh1996-06-114-11/+13
| | | | Submitted-By: Joe Greco <jgreco@ns.sol.net>
* Move warning messages under bootverbosepst1996-06-115-20/+40
|
* Put clock calibration #defines in opt_clock.h to ease reconfigurationpst1996-06-117-7/+20
|
* Update for the next SNAP.jkh1996-06-112-10/+21
|
* Put in a strategic dialog_clear() to prevent screen corruption reportedjkh1996-06-113-3/+6
| | | | by Joerg.
* Change some verbiage slightly.jkh1996-06-113-6/+9
|
* A slight error in my logic had me using color text attributes on Herculesjkh1996-06-113-6/+6
| | | | monochrome displays. Whoops! Fix.
* Misc doc cleanup.jkh1996-06-115-33/+40
|
* Come up with a scheme for stamping the FreeBSD version number on CDs,jkh1996-06-114-12/+79
| | | | | | | allowing sysinstall to automagically detect, mount and select an appropriate FreeBSD CDROM as the installation media. Defining "appropriate" also requires that you check the version numbers since an older FreeBSD CD could be in the drive, which is the purpose of this patch.
* Detach the device at shutdown.alex1996-06-112-12/+8
| | | | | Add a prototype for ed_attach_NE2000_pci (this really belongs somewhere else, but where?).
* Add $Id$gpalmer1996-06-101-0/+2
|
* Change the use if ifnet.if_lastchange to be more in line withgpalmer1996-06-1011-35/+42
| | | | | SNMP requirements. Update description of ifnet.if_lastchange in if.h to indicate this.
* Add Estonia to mirrors.jkh1996-06-101-1/+14
|
* better appletalk support.julian1996-06-103-41/+98
|
* Code cleanup:jraynard1996-06-109-21/+37
| | | | | | | | | | | | | | | | 1. Added missing function prototypes. 2. Added missing function return types. 3. Added missing function argument types. 4. Added missing headers for system function prototypes. 5. Corrected format specifier in printf(). 6. Added extra parentheses around assignment used as truth value. 7. Added missing "default" cases in switch statements. 8. Added casts for function pointers. 9. Did *not* change int declarations of uid and gid to uid_t/gid_t because I don't know if that would affect the protocol. Put in explicit casts to int instead, to make things more obvious. 10. Moved declarations of variables that are only used if YP is defined inside the '#ifdef YP' conditionals.
* Implemented 'kern_sysctl', which differs from 'userland_sysctl' in thatnate1996-06-102-6/+65
| | | | | | | | | | | | it assumes all of the data exists in the kernel. Also, fix sysctl_new-kernel (unused until now) which had reversed operands to bcopy(). Reviewed by: phk Poul writes: ... actually the lock/sleep/wakeup cruft shouldn't be needed in the kernel version I think, but just leave it there for now.
* nitpicks.phk1996-06-102-1/+6
| | | | | Reviewed by: phk Submitted by: "Philippe Charnier" <charnier@lirmm.fr>
* typo.phk1996-06-101-1/+1
| | | | Submitted by: "Philippe Charnier" <charnier@lirmm.fr>
* Update man to tell that <sys/types.h> is needed.phk1996-06-101-0/+1
| | | | Submitted by: "Philippe Charnier" <charnier@lirmm.fr>
* We are developing a device driver of Smart Capture Card.phk1996-06-102-2/+4
| | | | | | | | | | | | | | | | | Smart Capture Card is a kind of video capture card, PCMCIA type II, and made by IBM Japan co.. Unfortunately, it is sold in Japan now. The device driver is working on the latest pccard-test package by Tatsumi HOSOKAWA and bsd-nomads. Some applications are also working. For example, xscc is a video moniter client on X-window, vic-2.7b2 is a video conference tool. We have a contract with IBM Japan. From the contract, we cannot release the source code exept the permit of IBM Japan. But I think they will permit us in few weeks. Reviewed by: phk Requested by: ohashi@mickey.ai.kyutech.ac.jp (Takeshi OHASHI)
* *blush* I used EXTRAVNODES everywhere else, but put EXTRA_VNODES in thepeter1996-06-103-6/+6
| | | | example here.. :-(
* Remove extraneous '+' that looks like it was left in by mistake. Thiswpaul1996-06-101-2/+2
| | | | | | module compiles now. Reported by: Stephen Hocking
* Mostly superficial code improvements, add a diagnostic. Thedyson1996-06-101-18/+23
| | | | | | code improvements include significant simplification of the reservation of the swap pager control blocks for reads. Add a panic for an inconsistent swap pager control block count.
* Added ABRAYER Rewsirow (pcs51674@asciinet.or.jp) for his contributionasami1996-06-101-1/+2
| | | | | | of the uudx port. (I took that name from his .sig, don't blame me ;)
* Increase performance using pre-calculated collate tableache1996-06-101-15/+42
|
* Clarify the meaning of IPFIREWALL_VERBOSE. Add IPFIREWALL_VERBOSE_LIMIT.alex1996-06-103-9/+15
|
* Code cleanup (part two):jraynard1996-06-107-22/+30
| | | | | | | | | | | | 1. Added missing function prototypes. 2. Added missing function return types. 3. Added missing function argument types. 4. Added missing headers for system function prototypes. 5. Corrected casts in select() args. 6. Got rid of more "extern int errno" rubbish. 7. Added extra parentheses around assignment used as truth value. 8. Fixed bug in clnt_{tcp, udp}create() where pointers could be free'd even if they hadn't been successfully malloc()'d.
* Added revised manpage submitted by the author of units.alex1996-06-101-26/+60
| | | | | Reviewed by: alex Submitted by: Adrian Mariano <adrian@cam.cornell.edu>
* Keep the vm_fault/vm_pageout from getting into an "infinite paging loop", bydyson1996-06-101-3/+7
| | | | | | reserving "cached" pages before waking up the pageout daemon. This will reserve the faulted page, and keep the system from thrashing itself to death given this condition.
* Big sweep over ipfw, picking up where Poul left off:alex1996-06-091-23/+197
| | | | | | | | | | | | | | | - Filter based on ICMP types. - Accept interface wildcards (e.g. ppp*). - Resolve service names with the -N option. - Accept host names in 'from' and 'to' specifications - Display chain entry time stamps with the -t option. - Added URG to tcpflags. - Print usage if an unknown tcpflag is used. - Ability to zero individual accounting entries. - Clarify usage of port ranges. - Misc code cleanup. Closes PRs: 1193, 1220, and 1266.
* Big sweep over ipfw, picking up where Poul left off:alex1996-06-092-83/+133
| | | | | | | | | | | | | | | | | | | - Log ICMP type during verbose output. - Added IPFIREWALL_VERBOSE_LIMIT option to prevent denial of service attacks via syslog flooding. - Filter based on ICMP type. - Timestamp chain entries when they are matched. - Interfaces can now be matched with a wildcard specification (i.e. will match any interface unit for a given name). - Prevent the firewall chain from being manipulated when securelevel is greater than 2. - Fixed bug that allowed the default policy to be deleted. - Ability to zero individual accounting entries. - Remove definitions of old_chk_ptr and old_ctl_ptr when compiling ipfw as a lkm. - Remove some redundant code shared between ip_fw_init and ipfw_load. Closes PRs: 1192, 1219, and 1267.
* update sticky bit documentationwosch1996-06-091-8/+3
|
* documented login name limitwosch1996-06-091-9/+18
| | | | Obtained from: mailing list
* Prepare for exec properly and check return valuesache1996-06-092-5/+19
| | | | Submitted by: Arjan de Vet <devet@IAEhv.nl>
* Handle sorting in better wayache1996-06-091-16/+34
|
* Follow alphabetical order more closely, now ISO8859-1 charactersache1996-06-091-1/+14
| | | | sorted properly too.
* Detect and report dataphase overruns. Put the adapter into 'Bit Bucket'gibbs1996-06-093-3/+58
| | | | | | mode when this occurs and allow the target to complete the transaction. Force a retry on overruns since they are usually caused by termination or cable problems.
* Make collation table compatible with POSIX WG15 view, i.e.ache1996-06-094-20/+28
| | | | capital letters first
* Also count bytes in if_tun. kern/1253phk1996-06-091-0/+2
| | | | | Reviewed by: phk Submitted by: John Capo <jc@irbs.com>
* Compare 8bit alpha characters alphabetically using strcoll()ache1996-06-091-4/+66
|
* Include <sys/param.h> needed for MAXCOMLEN and MAXLOGNAME constants.alex1996-06-091-1/+2
|
* Use better approximation if collate info not available.ache1996-06-093-16/+41
| | | | Fix bug: strxfrm+strcmp != strcoll, if collate info not available
* Change my email address martin@innovus.com -> martin@tdc.on.camartin1996-06-091-2/+2
|
OpenPOWER on IntegriCloud