summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | 1. Start the clock running early for testing.jake2001-08-101-7/+43
| | | | | | | | | | | | | | | | | | | | 2. Use the upcoming "tick" interface. 3. Save a call frame as well as a trap frame on proc0's initial stack. 4. Setup a pointer to the per-cpu interrupt queue. 5. Install the per-cpu pointer in interrupt and alternate globals as well. 6. Flush out setregs so exec works. Submitted by: tmm (3, 5, 6)
* | Set the pil to something sane on startup.jake2001-08-102-0/+2
| |
* | Add definitions needed by new assembler code.jake2001-08-101-12/+20
| |
* | 1. Add code to handle traps and interrupts from user mode.jake2001-08-102-98/+970
| | | | | | | | | | | | | | | | | | | | | | | | 2. Add spill and fill handlers for spills to the user stack on entry to the kernel. 3. Add code to handle instruction mmu misses from user mode. 4. Add code to handle level interrupts from kernel mode and vectored interrupt traps from either. 5. Save the pil in the trapframe on entry from kernel mode and restore it on return. Submitted by: tmm (1, 2)
* | Add code to handle stack traces that go all the way back to userland.jake2001-08-101-9/+26
| | | | | | | | | | | | Use a better algorithm for finding out if an address is in the kernel. Submitted by: tmm
* | Add trap types for interrupts. Ad definitions to get the interrupt leveljake2001-08-101-5/+17
| | | | | | | | from the trap type.
* | 1. Add code to demap pages from the tlb for user contexts.jake2001-08-101-20/+43
| | | | | | | | | | | | | | 2. Add a context argument to most functions, instead of extracting it from from the tte. Submitted by: tmm (1).
* | Add fields that point to per-cpu interrupt data.jake2001-08-102-0/+6
| |
* | Add a field to trapframe for saving the pil.jake2001-08-101-0/+1
| |
* | Incorporate feedback about the level of security that WEP gives you:imp2001-08-101-8/+19
| | | | | | | | | | | | | | | | | | | | Not much, but it is better than nothing as it discourages the extremely lazy. Please read the actual text (the last text was softer than the commit message about it) before giving me feedback. Also, in the last commit I also tagged the newly optional elements in the command line as optional.
* | Add asis for interrupt registers.jake2001-08-101-0/+14
| |
* | Return DITEM_SUCCESS from configInetd(), as apparently a success orrwatson2001-08-102-0/+2
| | | | | | | | | | | | failure value is expected. Spotted by: gcc
* | Axe spl's obsoleted by the callout mutex.jhb2001-08-101-26/+4
| |
* | Fix unaligned access (fault) on alpha with ndp -p/-r and sysctl -a.simokawa2001-08-101-2/+2
| | | | | | | | | | | | Discussed on users@jp.ipv6.org MFC candidate.
* | Add a note that says:imp2001-08-091-20/+69
| | | | | | | | | | | | | | | | | | | | | | | | WEP IS INSECURE. DO NOT USE IT. and point people to details on the attack: http://www.cs.rice.edu/~astubble/wep/wep_attack.html and recommend people use ipsec instead if possible. Approved by: kris Mandoc police: Please do your worst. I'd like to merge similar text into ancontrol and ifconfig.
* | Allow for text section alignment to properly align the "end" symbol at themp2001-08-094-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | actual end of the section. The new gas (binutils) puts in additional padding which was misaligning the concatenated btx loader. Reported by: Oliver Hartmann <ohartman@klima.physik.uni-mainz.de>, Harti Brandt <brandt@fokus.gmd.de> Tested by: Oliver Hartmann <ohartman@klima.physik.uni-mainz.de>, David Wolfskill <dhw@whistle.com>, ps Reviewed by: jhb MFC after: 1 day
* | Do not delete 'goto ours' routes when using -c option.sumikawa2001-08-091-0/+5
| | | | | | | | Obtained from: KAME
* | Expand the usage info to include the possible options for -i,dougb2001-08-091-2/+2
| | | | | | | | and fix the printf so that the line actually gets printed.
* | Trim trailing whitespace.jhb2001-08-094-24/+24
| |
* | o Remove some misleading and incomplete information about searchmike2001-08-091-11/+8
| | | | | | | | | | | | | | | | permissions. o Add a reference to intro(2) where it is properly documented. Reviewed by: bde MFC after: 3 days
* | o Various mdoc fixes.mike2001-08-091-10/+50
| | | | | | | | | | | | | | | | | | | | o Replace strncpy examples with less confusing ones from OpenBSD. These examples give more detail and also suggest using strlcpy(3). Reviewed by: des, ru, sheldonh Obtained from: OpenBSD MFC after: 3 days
* | Document zdestroy().tmm2001-08-092-0/+16
| | | | | | | | Reviewed by: des
* | Fix xrefs.sobomax2001-08-092-4/+4
| | | | | | | | | | | | | | | | times.3: gettimeofday(3) --> gettimeofday(2) rc.conf.5: isndn(8) --> isdnd(8) idsnd(8) --> isdnd(8) MFC after: 2 weeks
* | Skip empty calls in the NAME section after the .Nm macro call.ru2001-08-091-0/+1
| | | | | | | | | | | | | | This makes the following difference: -groff_mdoc(7), -(7) - groff_mdoc reference for groff's mdoc implementation +groff_mdoc(7) - reference for groff's mdoc implementation
* | Fix minor typo.obrien2001-08-092-2/+2
| |
* | An empty request (single dot on the line) is treated as anru2001-08-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | empty line by troff(1) and is ignored. Teach makewhatis(1) about this. This makes the following difference: -groff_man(7), . groff_man(7) - groff `man' macros to support generation of man pages +groff_man(7) - groff `man' macros to support generation of man pages -groff_mdoc(7), -(7) - . groff_mdoc reference for groff's mdoc implementation +groff_mdoc(7), -(7) - groff_mdoc reference for groff's mdoc implementation -troff(1), . . troff(1) - format documents +troff(1) - format documents Noticed by: yar
* | Teach makewhatis(1) about mdoc(7) .Xr macro.ru2001-08-091-3/+9
| | | | | | | | | | | | | | | | | | | | % whatis finger.conf finger.conf(5) - finger 1 alias configuration file % whatis finger.conf finger.conf(5) - finger(1) alias configuration file Reviewed by: MAINTAINER timeout
* | Update for 3.36.ru2001-08-091-1/+1
| |
* | Update for 3.36.ru2001-08-091-193/+223
| | | | | | | | | | Reduce diffs to distributed, man(7) format, version. Markup nits.
* | Use the ``.Rv -std'' mdoc(7) macro in appropriate cases.yar2001-08-0966-291/+66
| | | | | | | | Reviewed by: ru
* | Tiny markup fix: `to' isn't a variableyar2001-08-091-1/+2
| |
* | A minor markup fix:yar2001-08-091-2/+3
| | | | | | | | | | | | - `to' isn't a variable - don't omit the first `E' in `ERANGE', even though .Er is able to take care of it
* | Add a missing backslash.jhay2001-08-091-1/+1
| |
* | Style fix: use .else where appropriate.dd2001-08-091-2/+2
| | | | | | | | | | PR: 29489 Submitted by: Joseph Mallett <jmallett@xMach.org>
* | Don't build/install game-related documents when building with NOGAMES.dd2001-08-091-1/+5
| | | | | | | | | | | | | | | | | | This fixes buildworld when src/games doesn't exist (this may not be "officially" supported, but there's no sense in making it harder for somebody that wants to do it). PR: 29162 Submitted by: Stewart Morgan <stewart@nameless-uk.com>
* | Print the peer's name and address in the "Connection establish"dd2001-08-091-2/+25
| | | | | | | | | | | | | | | | | | message. Similar information is given by the talk daemon when a connection is requested, but that part isn't on the screen when the main "talk" screen appears, and sometimes it's nice to know who you're talking to. Reviewed by: ru
* | Document how to cancel a scheduled shutdown.dd2001-08-091-0/+12
| | | | | | | | Obtained from: OpenBSD
* | Don't free memory that was never allocated. This fixes a core dump indd2001-08-091-1/+0
| | | | | | | | | | | | | | the case where both the config file and the default MTA don't exist. PR: 29521 Submitted by: marius@alchemy.franken.de
* | Fix markup and a couple of thinkos.dd2001-08-091-13/+13
| | | | | | | | Submitted by: ru
* | This commit was generated by cvs2svn to compensate for changes in r81340,asmodai2001-08-091-1/+4
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import of BIND fix for the fact that HMAC-MD5 keys have keyid 0asmodai2001-08-091-1/+4
| | |
* | | Reorganization of FreeBSD README document. This change adds no newbmah2001-08-091-127/+137
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | content or whitespace changes; it just moves sections around for better organization; the content of this file used to be fairly fragmented because it originally was derived from parts of several other documents. The first half of "About FreeBSD" has been pulled into the Introduction section. The remainder of "About FreeBSD" plus the "Release Documentation" section now make up a new <sect1></sect1> level section entitled "Further Reading".
* | | Forced commit; Previous commit was to remove check_sigacts() that waspeter2001-08-090-0/+0
| | | | | | | | | | | | added with the linuxthreads commit but appears to have never been used.
* | | The author isn't a [UC] Regents. Correct the copyright language.obrien2001-08-0920-42/+42
| | |
* | | Fix VCS ID spamage.obrien2001-08-091-2/+0
| | |
* | | Restore the proper copyright on this and remove the gratuitous changes fromobrien2001-08-091-29/+56
| | | | | | | | | | | | sys/alpha/include/elf.h.
* | | The author isn't a [UC] Regents. Correct the copyright language.obrien2001-08-0930-60/+60
| | |
* | | *** empty log message ***peter2001-08-092-21/+0
| | |
* | | Handle keys consistently.eric2001-08-092-2/+10
| | |
* | | Collapse the seven *.sgml files containing the content of the READMEbmah2001-08-0910-427/+331
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | document into article.sgml. Move the $FreeBSD$ tag from a comment to a <pubdate></pubdate> entry, but no other content or whitespace changes. The two reasons for doing this are to: 1) Get rid of a bunch of itty-bitty files and 2) help with a reorganization of the README that will be much simpler if all the content is in a single file.
OpenPOWER on IntegriCloud