aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Convert C++ style comments to proper C ones.David E. O'Brien2001-12-1316-72/+87
| | | | | | | | Clean up C comments just a tad. Fix ID's. Notes: svn path=/head/; revision=87826
* Connect lukemftp to the build as the default ftp client. LukemftpMike Heffner2001-12-1314-9453/+6
| | | | | | | | supports most of the previous features of FreeBSD ftp, but has been better maintained and includes new features. Notes: svn path=/head/; revision=87824
* If we were called to allocate a vnode that is not associated with aPeter Wemm2001-12-131-0/+2
| | | | | | | mount point, do not dereference the NULL mp argument. Notes: svn path=/head/; revision=87823
* Remove stale prototype for sonewconn3().Brian Feldman2001-12-131-2/+0
| | | | Notes: svn path=/head/; revision=87822
* o Back out portions of 1.50 and 1.47, eliminating sonewconn3() andRobert Watson2001-12-133-29/+3
| | | | | | | | | | | | | | | always deriving the credential for a newly accepted connection from the listen socket. Previously, the selection of the credential depended on the protocol: UNIX domain sockets would use the connecting process's credential, and protocols supporting a creation of the socket before the receiving end called accept() would use the listening socket. After this change, it is always the listening credential. Reviewed by: green Notes: svn path=/head/; revision=87821
* New release notes: boot loader -p for i386, maxusers autosizing,Bruce A. Mah2001-12-132-2/+48
| | | | | | | | | | | burncd(8) for VCDs/SVCDs, newfs(8) new 16K/2K block/frag defaults, watch(8) -f. Updated release note: sis(4) VAN and note its MFC done a long time ago. Notes: svn path=/head/; revision=87819
* Also fix cases when thousands separator should be put before number. ForAlexey Zelkin2001-12-131-2/+4
| | | | | | | | example before for grouping sequence "\003\003" number 123456 was formated as ",123,456", now "123,456". Notes: svn path=/head/; revision=87818
* Limit maxprocperuid to 9/10 maxproc, and limit maxfilesperproc to 9/10Mike Silbersack2001-12-131-2/+2
| | | | | | | | | | maxfiles. This should make local resource exhaustion attacks easier to handle with a non-tweaked setup. MFC after: 3 days Notes: svn path=/head/; revision=87817
* Use C comments instead of C++ comments.John Baldwin2001-12-133-24/+24
| | | | | | | Reported by: gcc30 Notes: svn path=/head/; revision=87816
* Respect locale while handling of \' flag.Alexey Zelkin2001-12-131-22/+63
| | | | | | | | | | | | | In original version grouping was hardcoded. It assumed that thousands separator should be inserted to separate each 3 numbers. I.e. grouping string "\003" was assumed for all cases. In correct case (per POSIX) vfprintf should respect locale defined non-monetary (LC_NUMERIC category) grouping sequence. Also simplify thousands_sep handling. Notes: svn path=/head/; revision=87815
* UUCP is gone from base.Mark Murray2001-12-131-1/+1
| | | | Notes: svn path=/head/; revision=87809
* Fix missing semi-colons on some entity references.Bruce A. Mah2001-12-132-8/+8
| | | | Notes: svn path=/head/; revision=87808
* Fix style bugs (mostly remove 'extern' from function prototypes)Alexey Zelkin2001-12-132-202/+206
| | | | | | | Inspired by: conversation with bde Notes: svn path=/head/; revision=87805
* * remove reference to m68k-dependent sourcesAlexey Zelkin2001-12-131-7/+1
| | | | | | | * fix comment Notes: svn path=/head/; revision=87804
* Move NO_WERROR from CROSSENV to BMAKE. In CROSSENV it disables it forWarner Losh2001-12-131-3/+3
| | | | | | | | | the entire build. We only want it for the bootstrap process. Submitted by: ru Notes: svn path=/head/; revision=87803
* Tone down and remove some obnoxious warnings that are slightly overkill.Jonathan Lemon2001-12-131-10/+1
| | | | Notes: svn path=/head/; revision=87799
* Add module dependency on libmchain.Sheldon Hearn2001-12-131-0/+2
| | | | | | | | | With this change, mounting an smb share (using mount_smb, which is not yet included in the tree) without any of smbfs, libiconv or libmchain compiled into the kernel or loaded works. Notes: svn path=/head/; revision=87798
* Use ANSI C string contatenation instead of a multi-line string literal.John Baldwin2001-12-131-4/+4
| | | | | | | Reported by: gcc30 Notes: svn path=/head/; revision=87797
* Comment tokens after #undef <macroname> and #endif.John Baldwin2001-12-132-5/+5
| | | | | | | Reported by: gcc30 Notes: svn path=/head/; revision=87796
* If the OID is missing, sysctl(3) returns ENOENT, not EOPNOTSUPP.Ruslan Ermilov2001-12-131-2/+2
| | | | | | | | PR: docs/32793 Submitted by: Hartmut Brandt <brandt@fokus.gmd.de> Notes: svn path=/head/; revision=87794
* Use a per-thread variable for keeping state when a thread is processingJohn Baldwin2001-12-132-10/+9
| | | | | | | | | | | a KTR log entry. Any KTR requests made while working on an entry are ignored/discarded to prevent recursion. This is a better fix for the hack to futz with the CPU mask and call getnanotime() if KTR_LOCK or KTR_WITNESS was on. It also covers the actual formatting of the log entry including dumping it to the display which the earlier hacks did not. Notes: svn path=/head/; revision=87793
* Fold example text into 80 column width display.Ruslan Ermilov2001-12-131-1/+2
| | | | | | | | PR: docs/32676 Submitted by: Rich Morin <rdm@cfcl.com> Notes: svn path=/head/; revision=87790
* s/crypt_format/crypt_default/ to match reality.Ruslan Ermilov2001-12-131-1/+1
| | | | | | | | PR: docs/32787 Spotted by: Pete Carah <pete@altadena.net> Notes: svn path=/head/; revision=87788
* MFCs noted: isic(4) support for Compaq Microcom 610 ISDN,Bruce A. Mah2001-12-132-4/+4
| | | | | | | isdnphone(8) -k. Notes: svn path=/head/; revision=87786
* Grrr...TCP bugfixes don't belong in the filesystems section. TossBruce A. Mah2001-12-132-8/+8
| | | | | | | another pointy hat into my pile in the corner. Notes: svn path=/head/; revision=87784
* MFCs noted: vlan(4) devices now (un)loadable and clonable, cissBruce A. Mah2001-12-132-6/+6
| | | | | | | driver. Notes: svn path=/head/; revision=87783
* When a file is partially truncated, we first check to see if theKirk McKusick2001-12-131-0/+12
| | | | | | | | | | | | | | | | | new file end will land in the middle of a file hole. Since the last block of a file must always be allocated, the hole is filled by allocating a block at that location. If the hole being filled is a direct block, then the truncation may eventually reduce the full sized block down to a fragment. When running with soft updates, it is necessary to FSYNC the file after allocating the block and before creating the fragment to avoid triggering a soft updates inconsistency when the block unexpectedly shrinks. Found by: Matthew Dillon <dillon@apollo.backplane.com> MFC after: 1 week Notes: svn path=/head/; revision=87782
* rpc.lockd needs rpc.statd to be running for it to start up properly.Alfred Perlstein2001-12-137-28/+105
| | | | | | | | | | | | so swap the order. Also allow rpc.lockd and rpc.statd to be turned on if nfsclient is enabled. They are needed to provide client side locking support. PR: conf/27811 Notes: svn path=/head/; revision=87781
* Undo one of my last minute changes; move sc_iss up earlier so itJonathan Lemon2001-12-131-1/+1
| | | | | | | is initialized in case we take the T/TCP path. Notes: svn path=/head/; revision=87780
* Fix up tabs from cut&n&paste.Jonathan Lemon2001-12-131-8/+8
| | | | Notes: svn path=/head/; revision=87779
* Fix up tabs in comments.Jonathan Lemon2001-12-132-8/+8
| | | | Notes: svn path=/head/; revision=87778
* Minor style fixes.Jonathan Lemon2001-12-131-2/+2
| | | | Notes: svn path=/head/; revision=87777
* Minor style fix.Jonathan Lemon2001-12-131-2/+2
| | | | Notes: svn path=/head/; revision=87776
* Add NO_WERROR to the cross building environment so that we do not bail onWarner Losh2001-12-131-2/+3
| | | | | | | | | | | warnings generated by earlier versions of the compilers when bootstrapping. Also a minor formatting nit in the tools list. Reviewed by: markm Notes: svn path=/head/; revision=87775
* Add missing "the".Warner Losh2001-12-131-1/+1
| | | | Notes: svn path=/head/; revision=87774
* Add two clarifying commnets:Warner Losh2001-12-131-0/+8
| | | | | | | | | 1) Note that this file is also by example. 2) Note that you should not use files from /usr/include in kernel files. Notes: svn path=/head/; revision=87773
* Roll firmware to latest offerings... Fixes a number of f/w relatedMatt Jacob2001-12-132-9047/+12601
| | | | | | | | | bugs. MFC after: 1 week Notes: svn path=/head/; revision=87771
* Remove to-be-default WARNS?=2Mark Murray2001-12-126-7/+0
| | | | Notes: svn path=/head/; revision=87769
* Minor style stuff, use __FBSDID(), remove to-be-default WARNS=2.Mark Murray2001-12-122-9/+8
| | | | Notes: svn path=/head/; revision=87768
* Move some notes inside the paragraphs for the hardware they describe.Bruce A. Mah2001-12-122-44/+44
| | | | Notes: svn path=/head/; revision=87767
* WARNS=2 partial fix; use NO_WERROR to protect against some hard-to-fix warnings.Mark Murray2001-12-126-43/+42
| | | | | | | Use __FBSDID(), kill register keyword. Notes: svn path=/head/; revision=87766
* WARNS=2 fixes, use __FBSDID, remove GCC-specific flags.Mark Murray2001-12-122-12/+10
| | | | Notes: svn path=/head/; revision=87765
* WARNS=2 fixes, Use __FBSDID(), kill register keyword.Mark Murray2001-12-121-32/+33
| | | | Notes: svn path=/head/; revision=87764
* Fix the time of an intmax_t calculation; it is unsigned. Also printMark Murray2001-12-122-1/+3
| | | | | | | | it with the correct formatting (%ju, not %lld). GCC's -Wformat does not understand this, so turn on NO_WERROR. Notes: svn path=/head/; revision=87763
* Catch up to the globaldata -> pcpu changes.John Baldwin2001-12-122-20/+20
| | | | Notes: svn path=/head/; revision=87760
* Print the path with the shortest absolute length, rather thanMike Heffner2001-12-121-2/+5
| | | | | | | | | | | arbitrarily selecting one. PR: bin/14361 Approved by: wosch MFC after: 1 week Notes: svn path=/head/; revision=87759
* Sync to pccarddevs 1.25Warner Losh2001-12-121-2/+8
| | | | Notes: svn path=/head/; revision=87758
* Move LINKSYS2 to its correct numerical location.Warner Losh2001-12-121-1/+5
| | | | | | | Add BONDWELL B236 Game Card Joystick. A PC Card joystick card. Notes: svn path=/head/; revision=87757
* Make clear that -w gets an argument. Add __FBSDID and remove unusedPhilippe Charnier2001-12-122-6/+6
| | | | | | | #include Notes: svn path=/head/; revision=87751
* Remove unused #includes. lex -> Lex, yacc -> Yacc, ... Some .Nm to .EmPhilippe Charnier2001-12-127-35/+32
| | | | | | | | conversions. Sort #includes. Spelling. use errx() instead of err() when explicit message is given. Notes: svn path=/head/; revision=87750