summaryrefslogtreecommitdiffstats
path: root/usr.sbin/afs/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* the afs src tree can go awayderaadt2012-08-23879-198413/+0
|
* fix missing err.h includesjsg2011-09-211-0/+1
|
* fix incorrect use of NULL, from 1.45 of upstreamjsg2011-07-041-1/+1
| | | | ok miod@
* arla_warn -> arla_warnx if there is no errno to pass...miod2011-04-041-1/+1
|
* close FILE `f' when we leave function fprio_readin(), so it wont get lostzinovik2010-06-011-0/+1
| | | | ok beck@, todd@
* remove an uneeded extern which upsets gcc4, matches changes madejsg2010-05-011-2/+0
| | | | | | in the upstream arla code. ok miod@
* As suggested by miod, rename dynroot_enable so we don't conflict withjsg2010-05-011-5/+5
| | | | | | | a definition from a header. This turns out to be the same change made in the upstream arla code. ok miod@
* Get rid of overlapping blocks;schwarze2010-02-241-19/+19
| | | | | | found by and fixing the build with mandoc(1). While here, use the proper escape sequence for the vertical bar. Patch from jmc@, thanks!
* partion -> partition. First one (mkfs.c) noted by Brad Tilley on tech@.krw2009-12-231-1/+1
|
* Fix buffer overflow possibility, noticed by parfait:beck2009-12-142-26/+39
| | | | | | | | | Buffer overflow (CWE 120): In memcpy of msg.msg with length 'size' Array size is 2048 bytes, size <= 2080 at line 317 of /usr/src/usr.sbin/afs/src/arlad/nnpfs.c in function 'nnpf s_send_message_wakeup_data'. tesing by todd@ and jj@ and me
* plug memory leak; found by parfait, ok beckderaadt2009-12-111-0/+1
|
* two memory leaks; spotted by parfait; ok beckderaadt2009-12-111-0/+2
|
* incorrect array size calculation, spotted by parfait; ok beckderaadt2009-12-111-1/+1
|
* NSIG is 1 beyond the last signal, so <= is an incorrect check.deraadt2009-12-111-1/+1
| | | | found by parfait, ok guenther
* More changes to avoid truncating 64 bit pointers to 32 bits and sign-extendingmiod2009-12-111-3/+7
| | | | them; allows userland with stack beyond 2GB to run.
* Fix a small merge error from august 2003. ok jmc@, jj@.matthieu2009-09-151-2/+2
|
* xfs -> nnpfs; ok jjjmc2009-06-071-2/+2
|
* Arla client rename from xfs to nnpfs for later upgrades. Tested on various arches. ok todd@ beck@jj2009-06-034-26/+26
|
* Use a symbolic entry register save mask, and sprinkle _C_LABEL.miod2008-05-211-15/+8
| | | | No functional change.
* parallel make fixes: $(YDR) produces several files, we need a timestamp.espie2007-11-241-1/+2
| | | | Also fixes an explicit make instead of $(MAKE) and a missing dependency.
* 64 bit mips support for the arla lwp code, requested by todd@ long ago...miod2007-07-212-53/+69
|
* More comment typos from Diego Casati. Including winners like funtion, allmost,krw2007-05-261-1/+1
| | | | oustside, seqencer, toghether, nessissary, etc.
* Remove the simplelock argument from vrecycle();thib2007-04-112-2/+2
| | | | ok pedro@, sturm@
* remove extra test, but do it correctly this timetedu2007-04-051-2/+2
|
* backoutotto2007-03-221-4/+4
| | | | | *c && !isspace(*c) is not equivalent to !isspace(*c) ok millert@
* remove some bogus *p tests from charles longeautedu2007-03-204-8/+6
| | | | ok deraadt millert
* save macl/mach as well as fp registers, done with miod's helpderaadt2007-03-031-2/+26
|
* Limit fscanf. From Ulf Harnhammar (metaur at telia dot com)biorn2007-01-031-1/+1
|
* Spelling.krw2006-12-231-1/+1
| | | | | | 'preceeding' -> 'preceding' 'preceeds' -> 'precedes' 'preceeded' -> 'preceded'
* Fix up s390 assembler in arla's lwp threading. Results from beck@ request totsi2006-12-161-31/+19
| | | | look into it, even though there's no OpenBSD/s390.
* also save gp for them dynamic executables; todd@ okmickey2006-11-221-0/+4
|
* make this work; todd@ deraadt@ okmickey2006-11-211-12/+78
|
* change PRE_Block to an int, which architectures like alpha can accessderaadt2006-11-1715-44/+44
| | | | | | | | atomically. Adapt all the others (except s390 which is not fixed yet). mips and hppa still do not work for some other reason. testing by beck, ckuethe, todd, asm proofreading by miod
* typo introduced last time; sparc support works againderaadt2006-11-171-1/+1
|
* only do the sp swap if requested (the tests now appear to work)deraadt2006-11-161-2/+5
|
* more symmetric add support for fpu.drahn2006-11-161-28/+40
|
* closer to correct, maybederaadt2006-11-151-7/+7
|
* a start at a sh4 context switcher (what a bizzare architecture...)deraadt2006-11-151-0/+96
|
* Check that string length != 0 before setting buf[strlen(buf) - 1].ray2006-10-242-2/+3
| | | | OK cloder@.
* remove the simplelock argument from vfs_busy() which is currently notsturm2006-04-304-3/+31
| | | | | | used and will never be used this way in VFS requested by and ok pedro, ok krw, biorn
* Whack some obviously dead code (double return's, code after goto).krw2006-04-082-4/+0
| | | | ok pedro@
* malloc(x * y) -> calloc(x, y) from adobriyan AT gmail.com, with tweaksdjm2006-04-024-11/+6
| | | | suggested by kjell@; ok otto@ pat@ millert@ jaredy@
* use calloc better; adobriyan@gmailderaadt2006-03-231-1/+1
|
* Free correct pointer on error path if malloc fails. From Alexey Dobriyan.millert2006-02-191-1/+1
|
* Repair call to gethostname(). From adobriyan at gmail.com. Patch submittedaaron2006-02-151-1/+1
| | | | upstream to the arla-drinkers at stacken.kth.se mailing list. henning@ ok
* double semicolon; from Daniel Matic in PR 4929otto2006-02-011-1/+1
|
* No need for vfs_busy() and vfs_unbusy() to take a process pointerpedro2005-11-301-2/+2
| | | | anymore. Testing by jolan@, thanks.
* .Dd cleanup; ok jmc@david2005-08-023-3/+3
|
* - sort SEE ALSOjmc2005-07-2917-28/+28
| | | | | | | | - full date for .Dd - uppercase .Dt title - don't end .Nd w/ a full stop fixes passed back to arla people...
* sneaky MNT_UNION tried to hidepedro2005-05-261-6/+3
|