summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Correct the History section; uniq(1) appeared at least as early as V3.tjr2002-07-051-4/+5
| | | | Move the section to after Standards.
* Remove redundant description of input_file and output_file arguments.tjr2002-07-051-4/+0
|
* Use err instead of errx when malloc fails. "malloc" is not a helpfultjr2002-07-053-7/+13
| | | | error message.
* ssh-keysign(8) belongs in /usr/libexec, not in /usr/bin, and needs to bedes2002-07-054-5/+5
| | | | | | | setuid so ssh(1) doesn't have to be. Pointy hat to: des Submitted by: Katsuyuki TATEISHI <katsu@iec.hiroshima-u.ac.jp>
* o Lock accesses to the free page queues in contigmalloc1().alc2002-07-051-0/+2
|
* Cleanups for vnode lock debugging.jeff2002-07-051-4/+6
| | | | | | - Tell IS_LOCKING_VFS to ignore block and character devices. specfs vnodes aren't locked for io and they just generate lots of false positives. - Add newlines to the badlock prints.
* Heimdal Texinfo manual.ru2002-07-052-1/+7
|
* Remove unnecessary includes.jeff2002-07-052-4/+0
|
* Include systm.h before vnode.h so Debugger() and printf() are available whenjeff2002-07-051-1/+1
| | | | full vnode lock debugging is enabled.
* Back out proc part of last commit. UMA manages the thread cache only, andpeter2002-07-052-16/+44
| | | | | | | | | we just have to deal with the kstack when told to. We do not have a UMA-managed cache for the proc struct and its associated upage yet. So, go back to the old lazy mechanism. Note that if UMA destroys pages that used to contain proc structures, we'll lose the corresponding upage forever. (zones never did this - once a page was allocated, it stayed attached to the proc zone forever)
* Copy from sparc64/pmap.c rev 1.64 (Retrofit changes from i386/pmap.cpeter2002-07-051-23/+9
| | | | | rev 1.328-1.331.) but for uarea only. We still have our own broken kstack code here.
* Take a shot at implementing changes from i386/pmap.c rev 1.328-1.331.peter2002-07-051-49/+22
|
* Turn on BPF_ALIGN for all non-i386 platforms, instead of having anpeter2002-07-051-1/+1
| | | | | ifdef list that currently lists all the non-i386 platforms that bpf currently works on.
* Back out the previous revisionbrian2002-07-041-12/+3
| | | | | | | | | Objected to by: Andre Oppermann <oppermann@pipeline.ch> After Andre's objection, I've re-examined rfc 2759 and noted that it says that the domain name shouldn't be used when generating the NT-Response field. So it looks like the bug is in freeradius rather than in ppp.
* Disable hardware checksum offloading of IP fragments in the bgejdp2002-07-041-1/+1
| | | | | | | | | | driver. I tried a few obvious experiments, but was unable to make the 3c996B-T generate correct UDP checksums for transmitted fragmented packets. I'm not so sure the device is even capable of it. This fixes NFS over UDP. MFC after: 1 day
* o Resurrect vm_page_lock_queues(), vm_page_unlock_queues(), and the freealc2002-07-043-5/+29
| | | | | | queue lock (revision 1.33 of vm/vm_page.c removed them). o Make the free queue lock a spin lock because it's sometimes acquired inside of a critical section.
* Diff reduction (microoptimization) with another WIP. Move the framepeter2002-07-042-4/+10
| | | | calculation in get_ptbase() to a little later on.
* I'm not sure if that was ahd(4) who grew BOOTMFS so that itru2002-07-041-1/+5
| | | | | | | | no longer fits 1.44M but... Moved vx(4) and all miibus consumers (including miibus) out from kern.flp to mfsroot.flp. This leaves 9K of the free space for kern.flp.
* mdoc(7) police: a bit of tidying.ru2002-07-041-55/+126
|
* A small cleanup.julian2002-07-041-1/+0
|
* Don;t call teh thread setup routines from here..julian2002-07-041-1/+0
| | | | they are already called when uma calls thread_init()
* Restore copyright and RCSID.johan2002-07-041-6/+11
| | | | | | | Remove duplicate $FreeBSD$, $NetBSD$. Submitted by: mike Approved by: sheldonh (mentor)
* Add the missing dependency (gdbint.info: gdb-cfg.texi).ru2002-07-041-1/+1
| | | | This should resume parallel builds, among other things.
* Convince lint via the standard lint-comment /* LONGLONG */ to notmarkm2002-07-041-0/+5
| | | | whine about our (valid) "long long" usage.
* This header is for Solaris compatibility only (according to Davidmarkm2002-07-041-0/+4
| | | | O'Brien), so add a comment to that effect to remind folks.
* Fixed CLEANFILES.ru2002-07-041-1/+1
|
* Update another mention of <CR><CR> I missed the first time around (rev 1.2)tjr2002-07-042-2/+2
|
* Retrofit changes from i386/pmap.c rev 1.328-1.331.peter2002-07-041-43/+31
| | | | | XXX should really replace the pmap_{new,swapin,swapout,dispose}_{proc,thread} functions with the much cleaner sparc64 versions.
* Don't free pages we never allocated..julian2002-07-042-14/+4
| | | | My eyes openned by: Matt
* Slight restatement of the code and remove some unused variables.julian2002-07-042-22/+16
|
* Allow XFree86-4 to buildobrien2002-07-032-12/+37
| | | | | | | by not creating paradoxical FLOAT_MODE subregs. Tested by: se Obtained from: http://gcc.gnu.org/ml/gcc/2002-06/msg01709.html
* New release note: NetBSD whereis(1).bmah2002-07-032-6/+14
| | | | Updated release notes: BIND 8.3.3, OpenPAM Citronella.
* If we've given a domain name prefix as the authentication name, stripbrian2002-07-031-3/+12
| | | | it off before passing it on to the RADIUS server for authentication.
* Update my email address.archie2002-07-031-1/+1
|
* Add comments and slightly rearrange the thread stack assignment codejulian2002-07-032-18/+38
| | | | to try make it less obscure.
* Remove vestiges of old code...julian2002-07-032-42/+24
| | | | | | These functions are always called on new memory so they can not already be set up, so don't bother testing for that. (This was left over from before we used UMA (which is cool))
* Reconnect whereisjohan2002-07-031-0/+1
| | | | Approved by: sheldonh (mentor)
* Switch to c versionjohan2002-07-031-1/+1
| | | | Approved by: sheldonh (mentor)
* compact synopsisjohan2002-07-032-3/+2
| | | | | | | s/program [program ...]/program .../ s/program [...]/program .../ Approved by: sheldonh (mentor)
* Remove -p flag.johan2002-07-032-33/+16
| | | | | | | | | OpenBSD's implementation lacks -p, and we don't want to support the option now, only to lose it if/when we later switch to OpenBSD's implementation. This functionality is provided by which(1). Approved by: sheldonh (mentor)
* Add __FBSDID.johan2002-07-031-7/+2
| | | | | | Remove __COPYRIGHT, __RCSID which caused an assembler warning. Approved by: sheldonh (mentor)
* o Make the reservation of KVA space for kernel map entries a functionalc2002-07-031-1/+2
| | | | | | | | of the KVA space's size in addition to the amount of physical memory and reduce it by a factor of two. Under the old formula, our reservation amounted to one kernel map entry per virtual page in the KVA space on a 4GB i386.
* Change to NetBSDs version of whereis.johan2002-07-032-86/+160
| | | | | Approved by: sheldonh (mentor) Obtained from: NetBSD
* Disconnect whereis while importing version from NetBSDjohan2002-07-031-1/+0
| | | | Approved by: sheldonh (mentor)
* Fix a typo: s/und/and/trhodes2002-07-031-1/+1
| | | | Not Reviewed by: re@
* Apply __FBSDID(); fix local variable(names) that stomp on globalmarkm2002-07-032-46/+56
| | | | definitions; fix some const strings; fix some signedness issues.
* Apply __FBSDID(), ISOfy, fix easy warning.markm2002-07-031-6/+5
|
* Fix some low-hanging lint-fruit: endianness and staticness warnings.markm2002-07-032-4/+6
|
* Make it possible (again) to build and install shared library only.ru2002-07-031-19/+38
| | | | | | One needs to define SHLIB_NAME for this to work. Prodded by: mi
* Move appropriate information out of `DESCRIPTION' and into `SECURITYchris2002-07-031-12/+12
| | | | | | CONSIDERATIONS'. Sponsored by: DARPA, NAI Labs
OpenPOWER on IntegriCloud