summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Replace a few more lines of code orphaned by MFREE going away.mjacob2002-02-072-6/+10
| | | | MFC after: 1 day
* You cannot take the address of a variable with the 'register' qualifier.mjacob2002-02-071-1/+1
| | | | MFC after: 1 day
* Remove the inline assembly optimized versins of bintime_*() functions,phk2002-02-071-30/+0
| | | | | they have no measurable effect and they don't belong in an MI header even if they did.
* Revise timercounters to use binary fixed point format internally.phk2002-02-074-115/+171
| | | | | | | | | | | | | | The binary format "bintime" is a 32.64 format, it will go to 64.64 when time_t does. The bintime format is available to consumers of time in the kernel, and is preferable where timeintervals needs to be accumulated. This change simplifies much of the magic math inside the timecounters and improves the frequency and time precision by a couple of bits. I have not been able to measure a performance difference which was not a tiny fraction of the standard deviation on the measurements.
* Pre-KSE/M3 commit.julian2002-02-0771-382/+431
| | | | | | | | | | this is a low-functionality change that changes the kernel to access the main thread of a process via the linked list of threads rather than assuming that it is embedded in the process. It IS still embeded there but remove all teh code that assumes that in preparation for the next commit which will actually move it out. Reviewed by: peter@freebsd.org, gallatin@cs.duke.edu, benno rice,
* pre-emptively fix a KSE/M3 problem.julian2002-02-071-7/+14
| | | | | | | Make a slight change so that libkvm reaches the main thread via the linked list, rather than assuming it is in the proc structure. Both conditions are true in -current but only the first will be true in the KSE M3 world.
* Complete '_' hack.phantom2002-02-071-0/+1
|
* . add a hack dedicated to n_himba (or correctly to say problem with his nickphantom2002-02-071-2/+30
| | | | | | | in docbook environment) . clarify comments . mention that this script is dedicated to freefall's environment . add bsd style copyright
* This script has served its purpose. Now its function is one of subfunctionsphantom2002-02-071-27/+0
| | | | of recently added cknames.pl.
* Add script to check integrity between access/authors.ent/passwd@freefallphantom2002-02-071-0/+68
|
* Correct copyright.green2002-02-071-12/+19
|
* We do not need to use -I- any longer.obrien2002-02-071-3/+1
| | | | | | | | Presumably the issue was with arparse.[ch]. Those are now in FREEBSD-Xlist and FREEBSD-deletelist. So we do not import the Bison produced files that was causing the problem. Submitted by: ru
* Document ping6(8) reaction to SIGINFO.maxim2002-02-071-2/+14
| | | | | | | PR: doc/33639 Reviewed by: ru Approved by: ru MFC after: 1 week
* Document ping(8) reaction to SIGINFO.maxim2002-02-071-1/+13
| | | | | | | PR: doc/33639 Reviewed by: ru Approved by: ru MFC after: 1 week
* (forced)sobomax2002-02-070-0/+0
| | | | | | Previous commit (rev 1.5) is a subject of: MFC after: 2 weeks
* When unpacking compressed archive check exit status of the child (gzip or bzip)sobomax2002-02-071-2/+20
| | | | | | | and exit with error code if that status != 0. PR: 30876 Submitted by: Simon Gerraty <sig@juniper.net>
* GC the PC_SWITCH* symbols which are not used in assembly anymore.phk2002-02-075-7/+0
|
* Add myself.maxim2002-02-071-0/+1
| | | | | Reviewed by: ru Approved by: ru
* Replace the MFREE that Marshal (Quick Draw) Dillon apparently didn't look for.mjacob2002-02-071-3/+6
| | | | MFC after: 1 day
* Use ETHER_CRC_LEN instead of SIS_CRC_SIZEluigi2002-02-071-2/+1
| | | | Suggested-by: Archie, Doug Ambrisko
* Fix a bug in the driver -- the chip will always include the CRCluigi2002-02-071-1/+2
| | | | | | | in the received packet size, but the upper level routines want the length without it. Reported-by: Doug Ambrisko, ambrisko@freebsd.org
* Remove DETACH_NOWARNimp2002-02-071-1/+0
|
* Get rid of the bogus DETACH_NOWARN and don't warn when asked to detachimp2002-02-071-4/+3
| | | | | a card that isn't there unless we're booting verbose. It serves no purpose.
* o __P removalimp2002-02-077-109/+61
| | | | | o use new style prototypes and function definitions o signal handlers need an argument. Mark it unused.
* o const poison a few prototypes to avoid gcc3 warningsimp2002-02-071-9/+9
| | | | o s/err/error/ in a couple places to avoid shadowing warnings
* o __P removalimp2002-02-071-26/+19
| | | | | o new style definitions/declarations o declare null_conv static and its arguments __unused
* o __P removalimp2002-02-071-41/+31
| | | | | | | o Use new-style prototypes and function definitions. o Fix timeout and justquit to have proper signatures for signal handlers. Mark the args as __unused. o remove register
* o __P removal.imp2002-02-075-39/+39
| | | | o Use new prototypes and function definitions only.
* Correct a logic bug that snuck in and broke multiplication of off_ts.green2002-02-071-1/+1
|
* Set the SCRIPTDIR to be rooted at TOOLS_PREFIX rather than DESTDIR.obrien2002-02-077-7/+7
| | | | | | | | | | | | (the two may be different (ie, build vs. runtime)) Allow ldscript's SEARCH_DIR do be rooted somewhere other than `/'. (in this case at TOOLS_PREFIX) These changes are most helpful during `make buildworld' so that the shared libs built in the middle of `make buildworld' are used vs. the ones in /usr/lib on the build machine. Submitted by: ru
* Occationally deleted files would hang around for hours or daysmckusick2002-02-071-7/+10
| | | | | | | | | | | without being reclaimed. This bug was introduced in revision 1.95 dealing with filenames placed in newly allocated directory blocks, thus is not present in 4.X systems. The bug is triggered when a new entry is made in a directory after the data block containing the original new entry has been written, but before the inode that references the data block has been written. Submitted by: Bill Fenner <fenner@research.att.com>
* Fix support for 630ET support. We don't need the Linux part to set theambrisko2002-02-062-11/+4
| | | | | | | mii access mode. Fix the device ID and make it read the mac via sis_read_mac. Reviewed by: imp MFC after: 1 week
* Allow local tweaks when messing with manpages.markm2002-02-061-2/+4
|
* Minor grammar fixes.markm2002-02-061-4/+4
|
* CURRENT-tyyle updates. This document was (is?) in the dark ages.markm2002-02-061-3/+43
|
* Document entropy device bits.markm2002-02-063-0/+238
|
* Sort out the documentation WRT TCP_WRAPPERs, which is now enabled.markm2002-02-061-12/+2
|
* Fix an inconsistency between what FreeBSD NIS and AMD think themarkm2002-02-061-3/+3
| | | | AMD map name should be.
* Enable TCP_WRAPPERs for the NIS server. The protection afforded ismarkm2002-02-062-1/+10
| | | | not massive, but usable.
* Make LINT compile after fruitless attempts to get the authorsjulian2002-02-064-3/+9
| | | | | | | | | to fix their code. ata stuff: Change name of ar_attach to not colide with existing ar_attach in if_ar.c. usb stuff: Create a dummy function to satisfy a call to it when in DEBUG mode.
* Readded the svc_create() and the registering of the local transport,alfred2002-02-061-1/+35
| | | | | | | | | | | | | | | now it is fixed. This should get us a working keyserv again, since it depends on local transport for key exchange. Since we do not have any KEYFILE name hardcoded anymore, set the umask that way that the keyserver socket can be created with with the appropriate permissions. Re-add the accidently removed signal(SIGPIPE, SIG_IGN); to the code which makes sense to avoid SIGPIPE when a disconnect on rpc socket occurs. Submitted by: mbr
* Move the AF_LOCAL check to the AF_INET check since portmap protocolalfred2002-02-061-5/+1
| | | | | | v. 2 only needs this. That also makes it shorter and simpler. Submitted by: mbr
* Remove NO_WERROR, now that WARNS=n is gone.markm2002-02-065-5/+0
|
* Comment out the WARNS= so as to not trample all over the GCC3 work.markm2002-02-061-1/+1
|
* Backout -Werror protection. No need to walk all over the upcomingmarkm2002-02-061-1/+0
| | | | GCC3 changeover.
* Neither .depend nor ${DEPENDFILE} depend on _SUBDIR.ru2002-02-061-1/+1
| | | | (One step closer to _SUBDIR <-> _SUBDIRUSE merge.)
* Back out revision 1.23 (SUBDIR_CHANGE).ru2002-02-061-37/+12
| | | | Not objected to by: bde, eivind
* Fix sentence in commentphantom2002-02-061-1/+1
|
* Update description of 'ac' subdirectoryphantom2002-02-061-2/+2
|
* Add descirptions of scripts in this directoryphantom2002-02-061-0/+9
|
OpenPOWER on IntegriCloud