]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
23 years agoclarify problem with inbound AH.
ume [Wed, 27 Jun 2001 19:41:20 +0000 (19:41 +0000)]
clarify problem with inbound AH.
spdadd A B -P in ipsec esp/tunnel/C-D/use ah/tunnel/C-D/require;
does not work due to 1-bit validation bit we are using with inbound
policy checking.

Submitted by: itojun
Obtained from: KAME
MFC after: 1 week

23 years agorefresh default router list on nd6_purge(), only if we are an
ume [Wed, 27 Jun 2001 17:56:17 +0000 (17:56 +0000)]
refresh default router list on nd6_purge(), only if we are an
autoconfigured host.

Obtained from: KAME

23 years agoVarious changes to the messages so that they are now appropriate for both
nik [Wed, 27 Jun 2001 17:48:43 +0000 (17:48 +0000)]
Various changes to the messages so that they are now appropriate for both
CD and DVD releases of FreeBSD.

23 years agoCatch up to mbuf allocator changes from last September so this compiles
jhb [Wed, 27 Jun 2001 14:57:17 +0000 (14:57 +0000)]
Catch up to mbuf allocator changes from last September so this compiles
again.

23 years agoMake this compile again. Broken since June 1.
jhb [Wed, 27 Jun 2001 14:46:44 +0000 (14:46 +0000)]
Make this compile again.  Broken since June 1.

23 years agoFixed the brain-o in rev. 1.10: the logic check was reversed.
ru [Wed, 27 Jun 2001 14:11:25 +0000 (14:11 +0000)]
Fixed the brain-o in rev. 1.10: the logic check was reversed.

Reported by: Bernd Fuerwitt <bf@fuerwitt.de>

23 years agoForced commit after problems with previous commit.
benno [Wed, 27 Jun 2001 12:35:12 +0000 (12:35 +0000)]
Forced commit after problems with previous commit.

Enable decrementer exceptions and set up a timecounter.

With this commit I can now (with KTR enabled) see the system attempting to
schedule clock swi's.

23 years agoCode for dealing with external interrupts.
benno [Wed, 27 Jun 2001 12:33:51 +0000 (12:33 +0000)]
Code for dealing with external interrupts.

Obtained from: NetBSD

23 years agoForced commit due to mishap in the previous commit.
benno [Wed, 27 Jun 2001 12:24:21 +0000 (12:24 +0000)]
Forced commit due to mishap in the previous commit.

Add in an implementation of pmap_new_proc.

23 years agoForced commit due to commit mishap.
benno [Wed, 27 Jun 2001 12:23:40 +0000 (12:23 +0000)]
Forced commit due to commit mishap.

Change the name of the entry point symbol from 'start' to '__start' to be in
sync with the ldscript.

23 years agoFix comment breakage.
benno [Wed, 27 Jun 2001 12:20:48 +0000 (12:20 +0000)]
Fix comment breakage.

23 years agoAnd he does it again...
benno [Wed, 27 Jun 2001 12:19:07 +0000 (12:19 +0000)]
And he does it again...

This commit was meant to be to add inline functions for manipulation of
various privileged registers and to convert some functions to using them.

As it is, it's my second forced commit of the evening.

23 years agoFix the atomic_*_32 operations. These were written before I had the ability
benno [Wed, 27 Jun 2001 12:17:23 +0000 (12:17 +0000)]
Fix the atomic_*_32 operations.  These were written before I had the ability
to test them properly and before I had a working knowledge of GCC asm
constraints.

23 years agoBracket this file in the usual #ifndef/#define/#endif stuff to prevent
benno [Wed, 27 Jun 2001 12:15:58 +0000 (12:15 +0000)]
Bracket this file in the usual #ifndef/#define/#endif stuff to prevent
multiple inclusion.

23 years agoGarbage collect some debug code.
benno [Wed, 27 Jun 2001 12:15:12 +0000 (12:15 +0000)]
Garbage collect some debug code.

23 years agoOops, this was meant to be done in a later commit but I goofed.
benno [Wed, 27 Jun 2001 12:14:22 +0000 (12:14 +0000)]
Oops, this was meant to be done in a later commit but I goofed.

This commit was meant to add entries for extintr.c (used partially by the
new clock/timecounter which is coming in a later commit) and entries for
bits of DDB source, which is also coming soon.

23 years agoAdd -msoft-float to COPTS to stop GCC attempting to be "smart" and using
benno [Wed, 27 Jun 2001 12:10:25 +0000 (12:10 +0000)]
Add -msoft-float to COPTS to stop GCC attempting to be "smart" and using
floating point registers for various optimisation tweaks.

23 years agoFix a race condition in pthread_join(). All of the following must occur
jasone [Wed, 27 Jun 2001 11:41:15 +0000 (11:41 +0000)]
Fix a race condition in pthread_join().  All of the following must occur
atomically:

1) Search _thread_list for the thread to join.
2) Search _dead_list for the thread to join.
3) Set the running thread as the joiner.

While we're at it, fix a race in the case where multiple threads try to
join on the same thread.  POSIX says that the behavior of multiple joiners
is undefined, but the fix is cheap as a result of the other fix.

23 years ago- Add trylock variants of shared and exclusive locks.
jhb [Wed, 27 Jun 2001 06:39:37 +0000 (06:39 +0000)]
- Add trylock variants of shared and exclusive locks.
- The sx assertions don't actually need the internal sx mutex lock, so
  don't bother doing so.
- Add a new assertion SX_ASSERT_LOCKED() that asserts that either a
  shared or exclusive lock should be held.  This assertion should be used
  instead of SX_ASSERT_SLOCKED() in almost all cases.
- Adjust some KASSERT()'s to include file and line information.
- Use the new witness_assert() function in the WITNESS case for sx slock
  asserts to verify that the current thread actually owns a slock.

23 years ago- Add a new witness_assert() to perform arbitrary locking assertions.
jhb [Wed, 27 Jun 2001 06:27:29 +0000 (06:27 +0000)]
- Add a new witness_assert() to perform arbitrary locking assertions.
- Clean up the KTR tracepoints to be slighlty more consistent and useful
- Fix a bug in WITNESS where we would recurse indefinitely and blow the
  stack when acquiring Giant after sleeping with a sleepable lock held.

Reported by: tanimura (3)

23 years ago- Always use the proc lock of the task leader to protect the peers list of
jhb [Wed, 27 Jun 2001 06:15:44 +0000 (06:15 +0000)]
- Always use the proc lock of the task leader to protect the peers list of
  processes.
- Don't construct fake call args and then call kill().  psignal is not
  anymore complicated and is quicker and not prone to locking problems.
  Calling psignal() avoids having to do a pfind() since we already have a
  proc pointer and also allows us to keep the task leader locked while we
  kill all the peer processes so the list is kept coherent.
- When a kthread exits, do a wakeup() on its proc pointers.  This can be
  used by kernel modules that have kthreads and want to ensure they have
  safely exited before completely the MOD_UNLOAD event.

Connectivity provided by: Usenix wireless

23 years agoTypo fix: requires -> reacquires
gshapiro [Wed, 27 Jun 2001 06:01:17 +0000 (06:01 +0000)]
Typo fix: requires -> reacquires

Submitted by: Murray S. Kucherawy <msk@sendmail.com>
MFC after: 3 days

23 years agoCorrect path to wtmp.
dd [Wed, 27 Jun 2001 06:00:26 +0000 (06:00 +0000)]
Correct path to wtmp.

PR: 28433
Submitted by: Joseph Mallett <jmallett@xMach.org>

23 years agoopenbsd 2.9 (2001/6/1)
itojun [Wed, 27 Jun 2001 04:41:58 +0000 (04:41 +0000)]
openbsd 2.9 (2001/6/1)

23 years agoRemove an extra word "fo" in the sentence "there is no process whose
chris [Wed, 27 Jun 2001 04:21:28 +0000 (04:21 +0000)]
Remove an extra word "fo" in the sentence "there is no process whose
process ID equals fo pid".

PR: 28436
Submitted by: Gregory Bond <gnb@itga.com.au>

23 years agoSync manpage and usage. Also fix bug that would always interpret a -c as a
mikeh [Wed, 27 Jun 2001 02:52:57 +0000 (02:52 +0000)]
Sync manpage and usage. Also fix bug that would always interpret a -c as a
process clear.

PR: bin/15456
MFC after: 2 weeks

23 years agoTypo fix (modifes -> modifies)
gshapiro [Wed, 27 Jun 2001 01:48:02 +0000 (01:48 +0000)]
Typo fix (modifes -> modifies)

23 years agostpo --> stop (typo).
dan [Tue, 26 Jun 2001 23:19:45 +0000 (23:19 +0000)]
stpo --> stop (typo).

23 years agoStaticize, constize, de-registerize; don't shadow global definitions;
dd [Tue, 26 Jun 2001 22:22:19 +0000 (22:22 +0000)]
Staticize, constize, de-registerize; don't shadow global definitions;
set WARNS=2.

Submitted by: Mike Barcroft <mike@q9media.com>

23 years agoNow that we've got it, use FDOPT_NOERRLOG for fdformat and fdwrite to
joerg [Tue, 26 Jun 2001 22:19:32 +0000 (22:19 +0000)]
Now that we've got it, use FDOPT_NOERRLOG for fdformat and fdwrite to
avoid blasting the syslog with error messages from bad floppies.  Both
tools have their own error reporting anyway (which could easily be
cluttered by the syslog output on your terminal).

23 years agoImplement the -I option that uses the FD_READID ioctl in order to read
joerg [Tue, 26 Jun 2001 22:17:21 +0000 (22:17 +0000)]
Implement the -I option that uses the FD_READID ioctl in order to read
sector ID fields from a floppy, and display them.

23 years agoImplement a new ioctl command for floppies: FD_READID
joerg [Tue, 26 Jun 2001 22:16:30 +0000 (22:16 +0000)]
Implement a new ioctl command for floppies: FD_READID

Reads one sector ID field from a given track.  Useful for analyzing
floppies.

23 years agoAdd appropriate includes and prototypes; staticize; set WARNS=2. Also
dd [Tue, 26 Jun 2001 22:11:13 +0000 (22:11 +0000)]
Add appropriate includes and prototypes; staticize; set WARNS=2.  Also
minor Makefile nits.

Submitted by: Mike Barcroft <mike@q9media.com>

23 years agoSome more cosmetics: kill another couple of K&R function definitions
joerg [Tue, 26 Jun 2001 22:07:25 +0000 (22:07 +0000)]
Some more cosmetics: kill another couple of K&R function definitions
that survived from old days, fix style of return type in fdcpio(),
kill old Emacs hints that are no longer working that way anyway.

23 years agoadd a tunable/sysctl, hw.snd.autovchans. if this is set to a value n where
cg [Tue, 26 Jun 2001 21:54:55 +0000 (21:54 +0000)]
add a tunable/sysctl, hw.snd.autovchans.  if this is set to a value n where
n > 0, n vchans will be assigned to any devices that subsequently register
with a single playback channel.

23 years agoUse tabs where tabs are supposed to go!
imp [Tue, 26 Jun 2001 20:50:34 +0000 (20:50 +0000)]
Use tabs where tabs are supposed to go!

23 years agoAdd dell wireless card
imp [Tue, 26 Jun 2001 20:44:27 +0000 (20:44 +0000)]
Add dell wireless card

Submitted by: keichi

23 years agoIncrease column widths when using -i (they are now wide enough to
schweikh [Tue, 26 Jun 2001 18:49:10 +0000 (18:49 +0000)]
Increase column widths when using -i (they are now wide enough to
hold a 64bit or 32bit ~0 value, i.e. 20 and 10; this anticipates
soon-to-be machines with Exahertz rtc interrupt frequencies. :-)

PR: bin/16206
Submitted by: John Capo <jc@irbs.com>
MFC after: 1 week

23 years agoStyle fix.
obrien [Tue, 26 Jun 2001 18:32:20 +0000 (18:32 +0000)]
Style fix.

23 years agoAdd the IA-64 unwind handling (needed for readelf).
obrien [Tue, 26 Jun 2001 18:29:47 +0000 (18:29 +0000)]
Add the IA-64 unwind handling (needed for readelf).

23 years agoThis commit was generated by cvs2svn to compensate for changes in r78844,
obrien [Tue, 26 Jun 2001 18:26:26 +0000 (18:26 +0000)]
This commit was generated by cvs2svn to compensate for changes in r78844,
which included commits to RCS files with non-trunk default branches.

23 years agoImport of GNU Binutils version 2.11.2.
obrien [Tue, 26 Jun 2001 18:26:26 +0000 (18:26 +0000)]
Import of GNU Binutils version 2.11.2.

23 years agoAdd support for linksys instant wireless.
dan [Tue, 26 Jun 2001 18:22:12 +0000 (18:22 +0000)]
Add support for linksys instant wireless.

Approved by: imp

23 years agoUpgrade to Binutils 2.11.2.
obrien [Tue, 26 Jun 2001 18:20:46 +0000 (18:20 +0000)]
Upgrade to Binutils 2.11.2.

23 years agoMerge rev 1.2 (teach `ld' how to access FreeBSD's ld ELF hints)
obrien [Tue, 26 Jun 2001 17:57:37 +0000 (17:57 +0000)]
Merge rev 1.2 (teach `ld' how to access FreeBSD's ld ELF hints)
into Binutils 2.11.2.

23 years agoWe use the stock (2.11.2) version of this now.
obrien [Tue, 26 Jun 2001 17:56:02 +0000 (17:56 +0000)]
We use the stock (2.11.2) version of this now.

23 years agoMerge rev 1.2 (FreeBSD configuration support) into Binutils 2.11.2.
obrien [Tue, 26 Jun 2001 17:54:12 +0000 (17:54 +0000)]
Merge rev 1.2 (FreeBSD configuration support) into Binutils 2.11.2.

23 years agoWe use the stock (2.11.2) version of this file now.
obrien [Tue, 26 Jun 2001 17:53:08 +0000 (17:53 +0000)]
We use the stock (2.11.2) version of this file now.

23 years agoUse the stock (2.11.2) version of this now.
obrien [Tue, 26 Jun 2001 17:51:35 +0000 (17:51 +0000)]
Use the stock (2.11.2) version of this now.

23 years agoUse the vendor's 2.11.2 version of this file as in rev 1.4.
obrien [Tue, 26 Jun 2001 17:45:23 +0000 (17:45 +0000)]
Use the vendor's 2.11.2 version of this file as in rev 1.4.

23 years agoMerge rev 1.2 (configuration changes to support FreeBSD) into Binutils 2.11.2.
obrien [Tue, 26 Jun 2001 17:44:22 +0000 (17:44 +0000)]
Merge rev 1.2 (configuration changes to support FreeBSD) into Binutils 2.11.2.

23 years agoReally wish this could back on the vendor branch...
obrien [Tue, 26 Jun 2001 17:43:37 +0000 (17:43 +0000)]
Really wish this could back on the vendor branch...
Commit the stock 2.11.2 version.

23 years agoMerge rev 1.6 (only define "ELF_DYNAMIC_INTERPRETER" if it isn't defined
obrien [Tue, 26 Jun 2001 17:17:04 +0000 (17:17 +0000)]
Merge rev 1.6 (only define "ELF_DYNAMIC_INTERPRETER" if it isn't defined
elsewhere) into Binutils 2.11.2.

23 years agoMerge rev 1.8 (only define "ELF_DYNAMIC_INTERPRETER" if it isn't defined
obrien [Tue, 26 Jun 2001 17:15:34 +0000 (17:15 +0000)]
Merge rev 1.8 (only define "ELF_DYNAMIC_INTERPRETER" if it isn't defined
elsewhere.) into Binutils 2.11.2.

23 years agoMerge our ELF branding into Binutils 2.11.2.
obrien [Tue, 26 Jun 2001 17:14:56 +0000 (17:14 +0000)]
Merge our ELF branding into Binutils 2.11.2.

23 years agoUpgrade to 2.11.2.
obrien [Tue, 26 Jun 2001 17:13:11 +0000 (17:13 +0000)]
Upgrade to 2.11.2.

23 years agoImport of GNU Binutils version 2.11.2.
obrien [Tue, 26 Jun 2001 16:57:43 +0000 (16:57 +0000)]
Import of GNU Binutils version 2.11.2.

23 years agoThis commit was generated by cvs2svn to compensate for changes in r78828,
obrien [Tue, 26 Jun 2001 16:57:43 +0000 (16:57 +0000)]
This commit was generated by cvs2svn to compensate for changes in r78828,
which included commits to RCS files with non-trunk default branches.

23 years agoBack out the last change which is probably actually a red herring. Argh!
green [Tue, 26 Jun 2001 15:15:22 +0000 (15:15 +0000)]
Back out the last change which is probably actually a red herring.  Argh!

23 years agoDon't pointlessly kill a channel because the first (forced)
green [Tue, 26 Jun 2001 14:17:35 +0000 (14:17 +0000)]
Don't pointlessly kill a channel because the first (forced)
non-blocking read returns 0.

Now I can finally tunnel CVSUP again...

23 years ago"host name and user" -> "host and user name"
nik [Tue, 26 Jun 2001 14:04:28 +0000 (14:04 +0000)]
"host name and user" -> "host and user name"

Submitted by: Rich Morin <rdm@cfcl.com>

23 years agoDocument dist/, cdrom/, compat/, and /usr/compat/, fix a couple of
nik [Tue, 26 Jun 2001 14:03:11 +0000 (14:03 +0000)]
Document dist/, cdrom/, compat/, and /usr/compat/, fix a couple of
{typ,think}os.

Submitted by: Rich Morin <rdm@cfcl.com>

23 years agoDon't initialise ret in atomic_cmpset_32.
benno [Tue, 26 Jun 2001 13:54:17 +0000 (13:54 +0000)]
Don't initialise ret in atomic_cmpset_32.
Add more synchronisation.

23 years agoMention the path to the README file in the header comment.
nik [Tue, 26 Jun 2001 13:50:33 +0000 (13:50 +0000)]
Mention the path to the README file in the header comment.

Submitted by: Rich Morin <rdm@cfcl.com>

23 years agoAdd awi.4
onoe [Tue, 26 Jun 2001 13:27:47 +0000 (13:27 +0000)]
Add awi.4

23 years agoDelete the note from BUGS: "Doesn't support WEP".
onoe [Tue, 26 Jun 2001 13:26:16 +0000 (13:26 +0000)]
Delete the note from BUGS: "Doesn't support WEP".
minor updates from NetBSD.

23 years agoThe information about how to integrate this driver into BSDs is obsoleted,
onoe [Tue, 26 Jun 2001 13:15:14 +0000 (13:15 +0000)]
The information about how to integrate this driver into BSDs is obsoleted,
and no longer needed.

23 years agoFix capability information in association request to reflect ESS/IBSS mode.
onoe [Tue, 26 Jun 2001 13:10:30 +0000 (13:10 +0000)]
Fix capability information in association request to reflect ESS/IBSS mode.
This fix is required to interoperate with Cisco's access point.
Obtained from: NetBSD current

23 years agoFix keyid bit position of encrypted packet to make non-first key usable.
onoe [Tue, 26 Jun 2001 13:08:44 +0000 (13:08 +0000)]
Fix keyid bit position of encrypted packet to make non-first key usable.
Obtained from: NetBSD current

23 years agoFix previous enhancement to add support for new ifconfig interface.
onoe [Tue, 26 Jun 2001 13:06:12 +0000 (13:06 +0000)]
Fix previous enhancement to add support for new ifconfig interface.

23 years agoMerged from the following changes.
nyan [Tue, 26 Jun 2001 11:53:12 +0000 (11:53 +0000)]
Merged from the following changes.

  sys/isa/ppc.c      revisions from 1.27 to 1.34
  sys/isa/ppcreg.h   revisions from 1.10 to 1.15
  sys/isa/isareg.h   revision 1.6

23 years agoMerged from sys/isa/sio.c revision 1.335.
nyan [Tue, 26 Jun 2001 11:48:17 +0000 (11:48 +0000)]
Merged from sys/isa/sio.c revision 1.335.

23 years agoMerged from sys/i386/isa/isa_dma.c revision 1.7.
nyan [Tue, 26 Jun 2001 11:47:24 +0000 (11:47 +0000)]
Merged from sys/i386/isa/isa_dma.c revision 1.7.

23 years agoMerged from sys/isa/syscons_isa.c revision 1.16.
nyan [Tue, 26 Jun 2001 11:46:42 +0000 (11:46 +0000)]
Merged from sys/isa/syscons_isa.c revision 1.16.

23 years agoMerged from sys/dev/syscons/scterm-sc.c revison 1.15.
nyan [Tue, 26 Jun 2001 11:45:54 +0000 (11:45 +0000)]
Merged from sys/dev/syscons/scterm-sc.c revison 1.15.

23 years agoMerged from sys/dev/syscons/syscons.c revisons 1.358 and 1.360.
nyan [Tue, 26 Jun 2001 11:45:01 +0000 (11:45 +0000)]
Merged from sys/dev/syscons/syscons.c revisons 1.358 and 1.360.

23 years agoMerged from sys/isa/fd.c revisions 1.198, 1.199, 1.200, 1.202 and 1.204.
nyan [Tue, 26 Jun 2001 11:44:21 +0000 (11:44 +0000)]
Merged from sys/isa/fd.c revisions 1.198, 1.199, 1.200, 1.202 and 1.204.

23 years agoMerged from sys/i386/include/bus_at386.h revision 1.14.
nyan [Tue, 26 Jun 2001 11:36:45 +0000 (11:36 +0000)]
Merged from sys/i386/include/bus_at386.h revision 1.14.

23 years agoMerged from sys/dev/aic/aic_isa.c revision 1.8.
nyan [Tue, 26 Jun 2001 11:35:46 +0000 (11:35 +0000)]
Merged from sys/dev/aic/aic_isa.c revision 1.8.

23 years agoUse the correct printf format to print a long.
dwmalone [Tue, 26 Jun 2001 11:11:30 +0000 (11:11 +0000)]
Use the correct printf format to print a long.

Approved by: cracauer

23 years agoBring in fix from NetBSD's revision 1.16:
ru [Tue, 26 Jun 2001 09:00:50 +0000 (09:00 +0000)]
Bring in fix from NetBSD's revision 1.16:

Pass the correct destination address for the route-to-gateway case.

PR: kern/10607
MFC after: 2 weeks

23 years agoCommented out pcm hints.
kato [Tue, 26 Jun 2001 08:27:00 +0000 (08:27 +0000)]
Commented out pcm hints.

Pointed out by: nyan

23 years agoSubmitted by: hm
ru [Tue, 26 Jun 2001 08:00:43 +0000 (08:00 +0000)]
Submitted by: hm

23 years agoBack out previous commit; this can't compile with WARNS=2 because
dd [Tue, 26 Jun 2001 07:31:00 +0000 (07:31 +0000)]
Back out previous commit; this can't compile with WARNS=2 because
xdr.h isn't warning-free.

Submitted by: ru

23 years agoShare my DOB with the world!
dan [Tue, 26 Jun 2001 05:04:03 +0000 (05:04 +0000)]
Share my DOB with the world!

23 years agoOriginally stated wrong birthplace, thought it was current location.
dwcjr [Tue, 26 Jun 2001 04:11:19 +0000 (04:11 +0000)]
Originally stated wrong birthplace, thought it was current location.

23 years agoRecognize FC-PGA2 Pentium III (Tualatin).
kato [Tue, 26 Jun 2001 03:02:30 +0000 (03:02 +0000)]
Recognize FC-PGA2 Pentium III (Tualatin).

23 years agoRemove two duplicate tips and correct formatting of an attribution.
dd [Tue, 26 Jun 2001 02:36:26 +0000 (02:36 +0000)]
Remove two duplicate tips and correct formatting of an attribution.

23 years agoThe `file' argument is optional.
dd [Tue, 26 Jun 2001 02:14:13 +0000 (02:14 +0000)]
The `file' argument is optional.

Obtained from: OpenBSD

23 years agoCorrect usage.
dd [Tue, 26 Jun 2001 02:11:48 +0000 (02:11 +0000)]
Correct usage.

23 years agoConvert to nl_langinfo(CODESET)
ache [Tue, 26 Jun 2001 01:43:52 +0000 (01:43 +0000)]
Convert to nl_langinfo(CODESET)

23 years agoFixed miss merging from revision 1.102.
nyan [Tue, 26 Jun 2001 00:47:54 +0000 (00:47 +0000)]
Fixed miss merging from revision 1.102.

23 years agoFix name for de manpages dir
ache [Tue, 26 Jun 2001 00:43:28 +0000 (00:43 +0000)]
Fix name for de manpages dir

23 years agoRemove aliases not needed for new man version
ache [Tue, 26 Jun 2001 00:41:07 +0000 (00:41 +0000)]
Remove aliases not needed for new man version

23 years agoActually implement -a as documented since import (set access point density).
brooks [Tue, 26 Jun 2001 00:12:58 +0000 (00:12 +0000)]
Actually implement -a as documented since import (set access point density).
Remove documentation for short-lived usage as "print keys in ASCII."

PR: bin/21803
MFC after: 1 week

23 years agoOutput the current TX rate when showing status.
brooks [Tue, 26 Jun 2001 00:00:58 +0000 (00:00 +0000)]
Output the current TX rate when showing status.

PR: bin/25470

23 years agoAllow the clock lock to recurse.
jhb [Mon, 25 Jun 2001 23:56:56 +0000 (23:56 +0000)]
Allow the clock lock to recurse.

23 years ago- Grab the vm lock around all of pmap_emulate_reference() as it manipulates
jhb [Mon, 25 Jun 2001 23:52:25 +0000 (23:52 +0000)]
- Grab the vm lock around all of pmap_emulate_reference() as it manipulates
  vm_page_t's.
- Add a KTR_TRAP tracepoint to trap() on the alpha that displays the
  contents of a0, a1, and a2 to make debugging of nested traps that
  panic before displaying any useful output easier.

23 years ago- Move the 'clk' spinlock below other spin locks since KTR trace events
jhb [Mon, 25 Jun 2001 23:17:52 +0000 (23:17 +0000)]
- Move the 'clk' spinlock below other spin locks since KTR trace events
  may need the clock lock for nanotime().
- Add KTR trace events for lock list manipulations and other witness
  operations.
- Use a temporary variable instead of setting the lock list head directly
  and then setting up the links to add a new lock list entry to the lock
  list.  This small race could result in witness "forgetting" about all
  the locks held by this process temporarily during an interrupt.
- Close a more fatal race condition when removing a lock from a list.
  Removing a lock from the list entails both decrementing the count of
  items in this bucket as well as shuffling items in the current bucket up
  a notch to replace the gap left by the removed item.  Wrap these
  operations in a critical section.

23 years ago- Replace the unused KTR_IDLELOOP trace class with a new KTR_WITNESS trace
jhb [Mon, 25 Jun 2001 23:09:31 +0000 (23:09 +0000)]
- Replace the unused KTR_IDLELOOP trace class with a new KTR_WITNESS trace
  class to trace witness events.
- Make the ktr_cpu field of ktr_entry be a standard field rather than one
  present only in the KTR_EXTEND case.
- Move the default definition of KTR_ENTRIES from sys/ktr.h to
  kern/kern_ktr.c.  It has not been needed in the header file since KTR
  was un-inlined.
- Minor include cleanup in kern/kern_ktr.c.
- Fiddle with the ktr_cpumask in ktr_tracepoint() to disable KTR events
  on the current CPU while we are processing an event.
- Set the current CPU inside of the critical section to ensure we don't
  migrate CPU's after the critical section but before we set the CPU.