OpenBSD CVS

CVS log for src/sys/ddb/db_command.c


[BACK] Up to [local] / src / sys / ddb

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.101 / (download) - annotate - [select for diffs], Mon May 13 01:15:50 2024 UTC (4 weeks ago) by jsg
Branch: MAIN
CVS Tags: HEAD
Changes since 1.100: +1 -2 lines
Diff to previous 1.100 (colored)

remove prototypes with no matching function
ok mpi@

Revision 1.100 / (download) - annotate - [select for diffs], Tue Sep 19 11:35:30 2023 UTC (8 months, 3 weeks ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4
Changes since 1.99: +8 -1 lines
Diff to previous 1.99 (colored)

Improve the output of ddb "show proc" command

Include missing fields -- like the sleep channel and message -- and
show both the PID and TID of the proc.
Also add '/t' as an argument that can be used to specify a proc by TID
instead of by address.
OK mpi@

Revision 1.99 / (download) - annotate - [select for diffs], Sun Jul 2 19:02:27 2023 UTC (11 months, 1 week ago) by cheloha
Branch: MAIN
Changes since 1.98: +1 -3 lines
Diff to previous 1.98 (colored)

all platforms, kernel: remove __HAVE_CLOCKINTR symbol

Every platform made the clockintr switch at least six months ago.
The __HAVE_CLOCKINTR symbol is now redundant.  Remove it.

Prompted by claudio@.

Link: https://marc.info/?l=openbsd-tech&m=168826181015032&w=2

"makes sense" mlarkin@

Revision 1.98 / (download) - annotate - [select for diffs], Wed Mar 8 04:43:07 2023 UTC (15 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_7_3_BASE, OPENBSD_7_3
Changes since 1.97: +1 -21 lines
Diff to previous 1.97 (colored)

Delete obsolete /* ARGSUSED */ lint comments.

ok miod@ millert@

Revision 1.97 / (download) - annotate - [select for diffs], Sat Nov 5 19:29:45 2022 UTC (19 months ago) by cheloha
Branch: MAIN
Changes since 1.96: +4 -1 lines
Diff to previous 1.96 (colored)

clockintr(9): initial commit

clockintr(9) is a machine-independent clock interrupt scheduler.  It
emulates most of what the machine-dependent clock interrupt code is
doing on every platform.  Every CPU has a work schedule based on the
system uptime clock.  For now, every CPU has a hardclock(9) and a
statclock().  If schedhz is set, every CPU has a schedclock(), too.

This commit only contains the MI pieces.  All code is conditionally
compiled with __HAVE_CLOCKINTR.  This commit changes no behavior yet.

At a high level, clockintr(9) is configured and used as follows:

1. During boot, the primary CPU calls clockintr_init(9).  Global state
   is initialized.
2. Primary CPU calls clockintr_cpu_init(9).  Local, per-CPU state is
   initialized.  An "intrclock" struct may be installed, too.
3. Secondary CPUs call clockintr_cpu_init(9) to initialize their
   local state.
4. All CPUs repeatedly call clockintr_dispatch(9) from the MD clock
   interrupt handler.  The CPUs complete work and rearm their local
   interrupt clock, if any, during the dispatch.
5. Repeat step (4) until the system shuts down, suspends, or hibernates.
6. During resume, the primary CPU calls inittodr(9) and advances the
   system uptime.
7. Go to step (2).  This time around, clockintr_cpu_init(9) also
   advances the work schedule on the calling CPU to skip events that
   expired during suspend.  This prevents a "thundering herd" of
   useless work during the first clock interrupt.

In the long term, we need an MI clock interrupt scheduler in order to
(1) provide control over the clock interrupt to MI subsystems like
timeout(9) and dt(4) to improve their accuracy, (2) provide drivers
like acpicpu(4) a means for slowing or stopping the clock interrupt on
idle CPUs to conserve power, and (3) reduce the amount of duplicated
code in the MD clock interrupt code.

Before we can do any of that, though, we need to switch every platform
over to using clockintr(9) and do some cleanup.

Prompted by "the vmm(4) time bug," among other problems, and a
discussion at a2k19 on the subject.  Lots of design input from
kettenis@.  Early versions reviewed by kettenis@ and mlarkin@.
Platform-specific help and testing from kettenis@, gkoehler@,
mlarkin@, miod@, aoyama@, visa@, and dv@.  Babysitting and spiritual
guidance from mlarkin@ and kettenis@.

Link: https://marc.info/?l=openbsd-tech&m=166697497302283&w=2

ok kettenis@ mlarkin@

Revision 1.96 / (download) - annotate - [select for diffs], Fri Jul 29 17:47:11 2022 UTC (22 months, 1 week ago) by semarie
Branch: MAIN
CVS Tags: OPENBSD_7_2_BASE, OPENBSD_7_2
Changes since 1.95: +10 -1 lines
Diff to previous 1.95 (colored)

Replace the swap extent(9) usage by a blist data structure.

It makes uvm_swap_free() faster: extents have a cost of O(n*n) which doesn't
really scale with gigabytes of swap.

Based on initial work from mpi@
The blist implementation comes from DragonFlyBSD.

The diff adds also a ddb(4) 'show swap' command to show the blist and help
debugging, and fix some off-by-one in size printed during hibernate.

ok mpi@

Revision 1.95 / (download) - annotate - [select for diffs], Thu Jul 28 22:19:09 2022 UTC (22 months, 1 week ago) by bluhm
Branch: MAIN
Changes since 1.94: +28 -1 lines
Diff to previous 1.94 (colored)

In the kernel exist functions to print routes, but they were not
accessible from ddb.  Implement "show all routes" to print routing
tables, and "show route 0xfffffd807e9b0000" for a single route
entry.  Note that the rtable id is not part of a route entry, so
it makes no sense to print it there.
OK deraadt@

Revision 1.94 / (download) - annotate - [select for diffs], Thu Apr 14 19:47:12 2022 UTC (2 years, 1 month ago) by naddy
Branch: MAIN
Changes since 1.93: +17 -14 lines
Diff to previous 1.93 (colored)

ddb: constify command tables

ok jca@

Revision 1.93 / (download) - annotate - [select for diffs], Tue Apr 12 19:44:32 2022 UTC (2 years, 1 month ago) by naddy
Branch: MAIN
Changes since 1.92: +2 -14 lines
Diff to previous 1.92 (colored)

ddb: simplify machine command handling

Define a consistently named db_machine_command_table[] across all
archs that implement the MD "machine" command, and hook this into
the main command table instead of patching it at runtime.

ok mpi@ jca@

Revision 1.92 / (download) - annotate - [select for diffs], Tue Nov 16 13:53:14 2021 UTC (2 years, 6 months ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.91: +36 -1 lines
Diff to previous 1.91 (colored)

To debug IPsec and tdb refcounting it is useful to have "show tdb"
and "show all tdbs" in ddb.
tested by Hrvoje Popovski; OK mvs@

Revision 1.91 / (download) - annotate - [select for diffs], Wed Jun 2 00:39:25 2021 UTC (3 years ago) by cheloha
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0
Changes since 1.90: +14 -8 lines
Diff to previous 1.90 (colored)

kernel: introduce per-CPU panic(9) message buffers

Add a 512-byte buffer (ci_panicbuf) to each cpu_info struct on each
platform for use by panic(9).  The first panic on a given CPU writes
its message to this buffer.  Subsequent panics on a given CPU print
the panic message to the console but do not modify the buffer.  This
aids debugging in two cases:

- If 2+ CPUs panic simultaneously there is no risk of garbled messages
  in the panic buffer.

- If a CPU panics and then the operator causes a second panic while
  using ddb(4), the operator can still recall the first failure on
  a particular CPU.

Misc. changes to support this bigger change:

- Set panicstr atomically to identify the first CPU to reach panic().

- Tweak db_show_panic_cmd() to print all panic messages across all
  CPUs.  Prefix the first panic with an asterisk ('*').

- Prefer db_printf() to printf() during a panic if we have it.
  Apparently it disturbs less global state.

- On amd64, tweak fault() to write the local panic buffer.  This needs
  more work.

Prompted by bluhm@ and deraadt@.  Mostly written by deraadt@.
Discussed with bluhm@, deraadt@ and kettenis@.

Borne from a discussion on tech@ about making panic(9) more MP-safe:

https://marc.info/?l=openbsd-tech&m=162086462316143&w=2

ok kettenis@, visa@, bluhm@, deraadt@

Revision 1.90 / (download) - annotate - [select for diffs], Mon Oct 26 18:53:20 2020 UTC (3 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_9_BASE, OPENBSD_6_9
Changes since 1.89: +2 -1 lines
Diff to previous 1.89 (colored)

add a top-level "reboot" command, for people who keep forgetting "boot reboot"
ok kn

Revision 1.89 / (download) - annotate - [select for diffs], Thu Oct 15 03:14:00 2020 UTC (3 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.88: +175 -194 lines
Diff to previous 1.88 (colored)

sick of the CMU, let's make this KNF

Revision 1.88 / (download) - annotate - [select for diffs], Thu Nov 7 13:16:25 2019 UTC (4 years, 7 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7
Changes since 1.87: +9 -9 lines
Diff to previous 1.87 (colored)

db_addr_t -> vaddr_t

ok deraadt@

Revision 1.87 / (download) - annotate - [select for diffs], Wed Nov 6 07:30:08 2019 UTC (4 years, 7 months ago) by mpi
Branch: MAIN
Changes since 1.86: +35 -40 lines
Diff to previous 1.86 (colored)

Substitute boolean_t/TRUE/FALSE by int/1/0.

ok dlg@, jasper@, anton@

Revision 1.86 / (download) - annotate - [select for diffs], Mon Apr 1 09:28:24 2019 UTC (5 years, 2 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.85: +1 -2 lines
Diff to previous 1.85 (colored)

remove prototype from earlier version of reboot code. spotted by anton

Revision 1.85 / (download) - annotate - [select for diffs], Mon Apr 1 07:00:52 2019 UTC (5 years, 2 months ago) by tedu
Branch: MAIN
Changes since 1.84: +3 -2 lines
Diff to previous 1.84 (colored)

fast track ddb> reboot command to skip anything which might panic again.
ok deraadt

Revision 1.84 / (download) - annotate - [select for diffs], Tue Sep 18 18:36:27 2018 UTC (5 years, 8 months ago) by anton
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.83: +2 -2 lines
Diff to previous 1.83 (colored)

whitespace fix; no binary change

Revision 1.83 / (download) - annotate - [select for diffs], Fri Jan 5 11:10:25 2018 UTC (6 years, 5 months ago) by pirofti
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.82: +7 -1 lines
Diff to previous 1.82 (colored)

Show uvm_fault and trace when typing show panic on a page fault'd kernel

Currently there is only support for amd64, if this change settles
I will add support for the rest of the architectures.

OK kettenis@.

Revision 1.82 / (download) - annotate - [select for diffs], Wed Dec 13 08:34:04 2017 UTC (6 years, 5 months ago) by mpi
Branch: MAIN
Changes since 1.81: +2 -1 lines
Diff to previous 1.81 (colored)

Add 'bt' an alias for 'trace'.

ok pirofti@

Revision 1.81 / (download) - annotate - [select for diffs], Mon Dec 11 05:27:40 2017 UTC (6 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.80: +16 -7 lines
Diff to previous 1.80 (colored)

In uvm Chuck decided backing store would not be allocated proactively
for blocks re-fetchable from the filesystem.  However at reboot time,
filesystems are unmounted, and since processes lack backing store they
are killed. Since the scheduler is still running, in some cases init is
killed... which drops us to ddb [noted by bluhm].  Solution is to convert
filesystems to read-only [proposed by kettenis]. The tale follows:
sys_reboot() should pass proc * to MD boot() to vfs_shutdown() which
completes current IO with vfs_busy VB_WRITE|VB_WAIT, then calls VFS_MOUNT()
with MNT_UPDATE | MNT_RDONLY, soon teaching us that *fs_mount() calls a
copyin() late... so store the sizes in vfsconflist[] and move the copyin()
to sys_mount()... and notice nfs_mount copyin() is size-variant, so kill
legacy struct nfs_args3.  Next we learn ffs_mount()'s MNT_UPDATE code is
sharp and rusty especially wrt softdep, so fix some bugs adn add
~MNT_SOFTDEP to the downgrade.  Some vnodes need a little more help,
so tie them to &dead_vnops.

ffs_mount calling DIOCCACHESYNC is causing a bit of grief still but
this issue is seperate and will be dealt with in time.
couple hundred reboots by bluhm and myself, advice from guenther and
others at the hut

Revision 1.80 / (download) - annotate - [select for diffs], Mon Nov 27 09:23:44 2017 UTC (6 years, 6 months ago) by mpi
Branch: MAIN
Changes since 1.79: +1 -10 lines
Diff to previous 1.79 (colored)

Remove MALLOC_DEBUG left overs.

From Klemens Nanni.

Revision 1.79 / (download) - annotate - [select for diffs], Thu Oct 19 16:58:05 2017 UTC (6 years, 7 months ago) by bluhm
Branch: MAIN
Changes since 1.78: +4 -2 lines
Diff to previous 1.78 (colored)

ddb "show all mounts" showed everything except the address of the
mount point.  Print it to allow debugging through the data structures
from there.
OK krw@

Revision 1.78 / (download) - annotate - [select for diffs], Fri Sep 29 09:36:04 2017 UTC (6 years, 8 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.77: +2 -1 lines
Diff to previous 1.77 (colored)

New ddb(4) command: kill.

Send an uncatchable SIGABRT to the process specified by the pid
argument.  Useful in case of CPU exhaustion to kill the DoSing
process and generate a core for later inspection.

ok phessler@, visa@, kettenis@, miod@

Revision 1.77 / (download) - annotate - [select for diffs], Tue Sep 12 08:23:42 2017 UTC (6 years, 8 months ago) by mpi
Branch: MAIN
Changes since 1.76: +1 -4 lines
Diff to previous 1.76 (colored)

Remove option DDB_STRUCTINFO.  Now that ddb(4) is CTF aware, similar
functionnalities are available in GENERIC.

ok jasper@, deraadt@, guenther@, dlg@

Revision 1.76 / (download) - annotate - [select for diffs], Wed Sep 6 04:47:26 2017 UTC (6 years, 9 months ago) by dlg
Branch: MAIN
Changes since 1.75: +3 -5 lines
Diff to previous 1.75 (colored)

replace the DDB_STRUCT backend for "show struct" with ctf code.

this lets you inspect arbitrary memory in the kernel as a specified
struct.

ok mpi@ jasper@

Revision 1.75 / (download) - annotate - [select for diffs], Mon Aug 14 19:57:05 2017 UTC (6 years, 9 months ago) by uwe
Branch: MAIN
Changes since 1.74: +4 -3 lines
Diff to previous 1.74 (colored)

Restore "print" in ddb; add "pp[rint]" for pretty-printing

Changing the "print" command to use db_ctf_pprint_cmd() broke all documented
uses and "examine" does not allow printing variables, or individual registers.

For now it is better to leave the "print" command intact, and in sync with the
ddb(4) man page, but we still want "pp[rint]" to replace the "print" command
when it works better.

ok mpi@

Revision 1.74 / (download) - annotate - [select for diffs], Fri Aug 11 20:50:15 2017 UTC (6 years, 10 months ago) by mpi
Branch: MAIN
Changes since 1.73: +1 -5 lines
Diff to previous 1.73 (colored)

Merge DDBCTF into DDB.

Revision 1.73 / (download) - annotate - [select for diffs], Thu Aug 10 19:39:38 2017 UTC (6 years, 10 months ago) by mpi
Branch: MAIN
Changes since 1.72: +7 -1 lines
Diff to previous 1.72 (colored)

With a CTF kernel, DDB's print command will now pretty-print symbols.

Casting a type is not yet supported.

ok kettenis@, jasper@

Revision 1.72 / (download) - annotate - [select for diffs], Thu Apr 20 12:59:36 2017 UTC (7 years, 1 month ago) by visa
Branch: MAIN
Changes since 1.71: +13 -1 lines
Diff to previous 1.71 (colored)

Add a port of witness(4) lock validation tool from FreeBSD.

Go-ahead from kettenis@, guenther@, deraadt@

Revision 1.71 / (download) - annotate - [select for diffs], Tue Apr 19 12:23:25 2016 UTC (8 years, 1 month ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.70: +36 -3 lines
Diff to previous 1.70 (colored)

Do not expose private functions.

Revision 1.70 / (download) - annotate - [select for diffs], Tue Apr 19 10:12:36 2016 UTC (8 years, 1 month ago) by mpi
Branch: MAIN
Changes since 1.69: +67 -1 lines
Diff to previous 1.69 (colored)

Keep db_write_cmd() in the only place where it is used, just like we did
with db_show_regs().

Revision 1.69 / (download) - annotate - [select for diffs], Wed Mar 9 09:04:15 2016 UTC (8 years, 3 months ago) by mpi
Branch: MAIN
Changes since 1.68: +28 -1 lines
Diff to previous 1.68 (colored)

Move db_show_regs() in the only file where it is used and turn it private.

ok mlarkin@

Revision 1.68 / (download) - annotate - [select for diffs], Mon Jan 25 14:30:30 2016 UTC (8 years, 4 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.67: +14 -14 lines
Diff to previous 1.67 (colored)

Kill trailing whitespaces.  No object change.

Revision 1.67 / (download) - annotate - [select for diffs], Fri Jan 15 11:21:58 2016 UTC (8 years, 4 months ago) by dlg
Branch: MAIN
Changes since 1.66: +9 -1 lines
Diff to previous 1.66 (colored)

add a "show socket" command to ddb

should help inspecting socket issues in the future.

enthusiasm from mpi@ bluhm@ deraadt@

Revision 1.66 / (download) - annotate - [select for diffs], Wed Dec 23 01:39:02 2015 UTC (8 years, 5 months ago) by mmcc
Branch: MAIN
Changes since 1.65: +2 -2 lines
Diff to previous 1.65 (colored)

assign pointers NULL rather than 0

Revision 1.65 / (download) - annotate - [select for diffs], Sat Mar 14 03:38:46 2015 UTC (9 years, 2 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.64: +1 -2 lines
Diff to previous 1.64 (colored)

Remove some includes include-what-you-use claims don't
have any direct symbols used.  Tested for indirect use by compiling
amd64/i386/sparc64 kernels.

ok tedu@ deraadt@

Revision 1.64 / (download) - annotate - [select for diffs], Fri Jul 11 14:36:44 2014 UTC (9 years, 11 months ago) by uebayasi
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7, OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.63: +7 -7 lines
Diff to previous 1.63 (colored)

reboot(9): Add MI reboot entry function

Now, for kernel to "reboot" (reboot, halt, or shutdown), MD boot(9) is called
in some places.  This change introduces a new MI function reboot(9) which is
simply a wrapper to call MD boot(9).

OK kettenis@ deraadt@

Revision 1.63 / (download) - annotate - [select for diffs], Sun Dec 1 16:40:56 2013 UTC (10 years, 6 months ago) by krw
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.62: +2 -2 lines
Diff to previous 1.62 (colored)

Change 'mountlist' from CIRCLEQ to TAILQ. Be paranoid and
use TAILQ_*_SAFE more than might be needed.

Bulk ports build by sthen@ showed nobody sticking their fingers
so deep into the kernel.

Feedback and suggestions from millert@. ok jsing@

Revision 1.62 / (download) - annotate - [select for diffs], Fri Nov 5 15:17:50 2010 UTC (13 years, 7 months ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.61: +9 -1 lines
Diff to previous 1.61 (colored)

Implement m_print as real ddb command "show mbuf addr" in the way other
such commands are implemented.
"Ja! You'll need to update ddb.4 as well, of course." miod@

Revision 1.61 / (download) - annotate - [select for diffs], Tue Jan 19 01:08:16 2010 UTC (14 years, 4 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.60: +3 -3 lines
Diff to previous 1.60 (colored)

A couple #ifdefs were missed when the final name of the DDB_STRUCT
option was settled on.  Fix those last couple so that the new
commands are actually accessible.

"Oops" miod@

Revision 1.60 / (download) - annotate - [select for diffs], Mon Aug 17 13:11:58 2009 UTC (14 years, 9 months ago) by jasper
Branch: MAIN
Changes since 1.59: +15 -2 lines
Diff to previous 1.59 (colored)

dd 'show all bufs' to show all the buffers in the system

ok beck@ thib@

Revision 1.59 / (download) - annotate - [select for diffs], Fri Aug 14 21:16:13 2009 UTC (14 years, 9 months ago) by thib
Branch: MAIN
Changes since 1.58: +19 -3 lines
Diff to previous 1.58 (colored)

add ddb functions to be able to show all the nfsnodes in the system
and rewrite the nfsreq code to use pool_walk().

OK beck@, blambert@

Revision 1.58 / (download) - annotate - [select for diffs], Thu Aug 13 15:42:03 2009 UTC (14 years, 10 months ago) by thib
Branch: MAIN
Changes since 1.57: +1 -1 lines
Diff to previous 1.57 (colored)

fix a typo its supposed to be show all vnodes not show all vnodes,

ddb does keyword matching so i missed this.
spotted by jasper@

Revision 1.57 / (download) - annotate - [select for diffs], Thu Aug 13 13:49:20 2009 UTC (14 years, 10 months ago) by thib
Branch: MAIN
Changes since 1.56: +14 -1 lines
Diff to previous 1.56 (colored)

add a show all vnodes command, use dlg's nice pool_walk() to accomplish
this.

ok beck@, dlg@

Revision 1.56 / (download) - annotate - [select for diffs], Sun Aug 9 23:04:49 2009 UTC (14 years, 10 months ago) by miod
Branch: MAIN
Changes since 1.55: +10 -4 lines
Diff to previous 1.55 (colored)

Introduce option DDB_STRUCT. Kernels compiled with this option (except on
a few arches where toolchain limitations apply) will embed some symbolic
information about the various structs used within the kernel, and have
new ddb commands allowing struct display and some useful information
gathering. Kernel rodata increase varies accross platforms from ~150KB to
~300KB.
This option is not enabled by default.

Revision 1.55 / (download) - annotate - [select for diffs], Sat Aug 8 15:04:43 2009 UTC (14 years, 10 months ago) by beck
Branch: MAIN
Changes since 1.54: +10 -0 lines
Diff to previous 1.54 (colored)

two things:
1) fix buffer cache low water mark to allow for extremely low memory machines
without dying
2) Add "show bcstats" to ddb to allow for looking at the buffer cache statistics in ddb

ok art@ oga@

Revision 1.54 / (download) - annotate - [select for diffs], Wed Jul 15 19:05:14 2009 UTC (14 years, 10 months ago) by miod
Branch: MAIN
Changes since 1.53: +3 -2 lines
Diff to previous 1.53 (colored)

Check db_recover for NULL before longjmp(db_recover) in db_error(), as it can
be NULL on panic. Of course, panic usually never produce enough output to
hit db_more(), except when it's cold and we run an automatic traceback;
aborting the traceback with `q' would then lead to undefined behaviour.

Revision 1.53 / (download) - annotate - [select for diffs], Wed Jun 17 01:30:30 2009 UTC (14 years, 11 months ago) by thib
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6
Changes since 1.52: +1 -16 lines
Diff to previous 1.52 (colored)

Revert bufq's. this is inline with the major midlayer reverts that
have been going on. this appears to bring us back to stable state.

lots of testing by oga and ariane and my self.

Revision 1.52 / (download) - annotate - [select for diffs], Wed Jun 3 22:09:30 2009 UTC (15 years ago) by thib
Branch: MAIN
Changes since 1.51: +15 -0 lines
Diff to previous 1.51 (colored)

add a flexible buffer queue (bufq) api, based on the never used
one by tedu@. It doesn't do anything smart yet, it just uses
plain old disksort. we also keep the old method of queueing bufs
since some miods have crazy MD drivers that need some love.

ok beck@, art@
tested by many on many archs.

Revision 1.51 / (download) - annotate - [select for diffs], Tue Jan 20 22:46:49 2009 UTC (15 years, 4 months ago) by thib
Branch: MAIN
CVS Tags: OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.50: +7 -1 lines
Diff to previous 1.50 (colored)

Let this compile on landisk (and other configs) by wrapping the nfs
debug stuff inside #ifdef NFSCLIENT.

prompted by todd, miod

Revision 1.50 / (download) - annotate - [select for diffs], Sun Jan 18 13:36:56 2009 UTC (15 years, 4 months ago) by thib
Branch: MAIN
Changes since 1.49: +16 -1 lines
Diff to previous 1.49 (colored)

Add nfs ddb hooks, for now only to show all the outstanding nfsreq's
and to print out struct nfsreq.

"get it in so people can pound on it" blambert@
OK and information_s_ on the manpage from miod@

Revision 1.49 / (download) - annotate - [select for diffs], Sun Mar 23 12:31:57 2008 UTC (16 years, 2 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.48: +16 -1 lines
Diff to previous 1.48 (colored)

show all mounts command for ddb. From mickey a long time ago.

Revision 1.48 / (download) - annotate - [select for diffs], Wed Nov 14 17:52:36 2007 UTC (16 years, 6 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.47: +2 -2 lines
Diff to previous 1.47 (colored)

Be consistent in db_cmd_loop_done declaration.

Revision 1.47 / (download) - annotate - [select for diffs], Mon Nov 5 19:23:24 2007 UTC (16 years, 7 months ago) by miod
Branch: MAIN
Changes since 1.46: +2 -2 lines
Diff to previous 1.46 (colored)

temporary ddb buffers need to be a bit larger on 64 bit systems to cope with
some radix configurations.

Revision 1.46 / (download) - annotate - [select for diffs], Sat Sep 1 11:54:03 2007 UTC (16 years, 9 months ago) by miod
Branch: MAIN
Changes since 1.45: +4 -2 lines
Diff to previous 1.45 (colored)

Use db_format() instead of ddb-specific format specifiers; no functional
change inteded.
ok ray@

Revision 1.45 / (download) - annotate - [select for diffs], Sat Sep 30 14:31:28 2006 UTC (17 years, 8 months ago) by mickey
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.44: +3 -2 lines
Diff to previous 1.44 (colored)

no malloc debug but configured kmemstats allow 'sh mal' to print smth useful; miod@ ok

Revision 1.44 / (download) - annotate - [select for diffs], Thu Aug 24 21:10:14 2006 UTC (17 years, 9 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.43: +2 -2 lines
Diff to previous 1.43 (colored)

Off-by-one in ``dmesg'' command; it takes a vax to find such bugs.

Revision 1.43 / (download) - annotate - [select for diffs], Tue Jul 11 21:17:58 2006 UTC (17 years, 11 months ago) by mickey
Branch: MAIN
Changes since 1.42: +42 -1 lines
Diff to previous 1.42 (colored)

add mount/vnode/buf and softdep printing commands; tested on a few archs and will make pedro happy too (;

Revision 1.42 / (download) - annotate - [select for diffs], Sat May 20 18:29:23 2006 UTC (18 years ago) by mickey
Branch: MAIN
Changes since 1.41: +2 -1 lines
Diff to previous 1.41 (colored)

add show all pools command listing all pools as vmstat -m does; miod@ ok

Revision 1.41 / (download) - annotate - [select for diffs], Mon Mar 13 06:23:20 2006 UTC (18 years, 3 months ago) by jsg
Branch: MAIN
Changes since 1.40: +30 -110 lines
Diff to previous 1.40 (colored)

ansi/deregister. No binary change.

Revision 1.40 / (download) - annotate - [select for diffs], Tue May 10 10:50:16 2005 UTC (19 years, 1 month ago) by uwe
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

db_printf(s) -> db_printf("%s", s) from NetBSD

Revision 1.39 / (download) - annotate - [select for diffs], Mon Jan 3 16:49:56 2005 UTC (19 years, 5 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.38: +15 -1 lines
Diff to previous 1.38 (colored)

Add "show panic" command to ddb, to easily retrieve the panic message.
Will hopefully bring us better panic reports.

From Joris Vink.

Revision 1.38 / (download) - annotate - [select for diffs], Fri Jun 25 08:41:19 2004 UTC (19 years, 11 months ago) by art
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

Instead of accessing ci_dev (that's an MI field), provide a marco that
translates a cpu_info structure into a human-readable cpu number.

drahn@ deraadt@ ok

Revision 1.37 / (download) - annotate - [select for diffs], Mon Jun 21 22:41:12 2004 UTC (19 years, 11 months ago) by andreas
Branch: MAIN
Changes since 1.36: +2 -25 lines
Diff to previous 1.36 (colored)

Make 'machine ddbcpu' work, and use CPU device number instead of APIC id
KNF lesson and ok from niklas@

Revision 1.36 / (download) - annotate - [select for diffs], Sun Jun 13 21:49:23 2004 UTC (20 years ago) by niklas
Branch: MAIN
Changes since 1.35: +29 -1 lines
Diff to previous 1.35 (colored)

debranch SMP, have fun

Revision 1.17.6.12 / (download) - annotate - [select for diffs], Sat Jun 5 23:12:36 2004 UTC (20 years ago) by niklas
Branch: SMP
Changes since 1.17.6.11: +8 -8 lines
Diff to previous 1.17.6.11 (colored) to branchpoint 1.17 (colored) next main 1.18 (colored)

Merge with the trunk

Revision 1.35 / (download) - annotate - [select for diffs], Sun Apr 25 03:21:50 2004 UTC (20 years, 1 month ago) by itojun
Branch: MAIN
CVS Tags: SMP_SYNC_B, SMP_SYNC_A
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

kill unbounded string op.  deraadt ok

Revision 1.34 / (download) - annotate - [select for diffs], Mon Mar 15 12:56:29 2004 UTC (20 years, 3 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored)

Remove errant semi-colon. miod@ ok

Revision 1.33 / (download) - annotate - [select for diffs], Wed Mar 10 23:02:53 2004 UTC (20 years, 3 months ago) by tom
Branch: MAIN
Changes since 1.32: +7 -7 lines
Diff to previous 1.32 (colored)

Ensure that we obey a user's ddb> boot reboot command even if the system
is cold (during startup).

This adds RB_USERREQ to sys/reboot.h, uses it in the ddb commands, and
ensures that */*/machdep.c:boot() won't set RB_HALT when cold if this
flag is set.

ok deraadt@

Revision 1.17.6.11 / (download) - annotate - [select for diffs], Thu Feb 19 10:56:12 2004 UTC (20 years, 3 months ago) by niklas
Branch: SMP
Changes since 1.17.6.10: +28 -1 lines
Diff to previous 1.17.6.10 (colored) to branchpoint 1.17 (colored)

Merge of current from two weeks agointo the SMP branch

Revision 1.32 / (download) - annotate - [select for diffs], Wed Dec 3 12:50:33 2003 UTC (20 years, 6 months ago) by markus
Branch: MAIN
Changes since 1.31: +28 -1 lines
Diff to previous 1.31 (colored)

add dmesg command; ok deraadt, mcbride, henning and more

Revision 1.24.2.3 / (download) - annotate - [select for diffs], Mon May 19 21:52:44 2003 UTC (21 years ago) by tedu
Branch: UBC
Changes since 1.24.2.2: +23 -1 lines
Diff to previous 1.24.2.2 (colored) to branchpoint 1.24 (colored) next main 1.25 (colored)

sync

Revision 1.17.6.10 / (download) - annotate - [select for diffs], Sat May 17 16:07:37 2003 UTC (21 years ago) by andreas
Branch: SMP
Changes since 1.17.6.9: +29 -1 lines
Diff to previous 1.17.6.9 (colored) to branchpoint 1.17 (colored)

Some i386-specific stuff:
Stop other CPUs when entering ddb
'machine sysregs' shows system registers not usually used by applications
'machine cpuinfo' shows the status of the processors
'machine startcpu n' starts CPU n
'machine stopcpu n' stops CPU n
'machine ddbcpu n' transfers ddb control to CPU n (not very useful yet
though since the second processor can't use the keyboard...)

Niklas said that I should test this first to at least make sure it
compiles, but I'm too anxious to do my first commit. :)

Revision 1.17.6.9 / (download) - annotate - [select for diffs], Fri May 16 00:29:41 2003 UTC (21 years, 1 month ago) by niklas
Branch: SMP
Changes since 1.17.6.8: +15 -0 lines
Diff to previous 1.17.6.8 (colored) to branchpoint 1.17 (colored)

merge the trunk so we will get the genfs and locking fixes

Revision 1.31 / (download) - annotate - [select for diffs], Mon May 12 19:56:03 2003 UTC (21 years, 1 month ago) by mickey
Branch: MAIN
CVS Tags: UBC_SYNC_A, OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.30: +16 -1 lines
Diff to previous 1.30 (colored)

sho proc [addr] to print some proc's field; art@ ok

Revision 1.17.6.8 / (download) - annotate - [select for diffs], Fri Mar 28 00:00:19 2003 UTC (21 years, 2 months ago) by niklas
Branch: SMP
Changes since 1.17.6.7: +14 -0 lines
Diff to previous 1.17.6.7 (colored) to branchpoint 1.17 (colored)

Sync the SMP branch with 3.3

Revision 1.30 / (download) - annotate - [select for diffs], Wed Feb 12 14:41:07 2003 UTC (21 years, 4 months ago) by jason
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.29: +8 -1 lines
Diff to previous 1.29 (colored)

Remove commons; inspired by netbsd.

Revision 1.24.2.2 / (download) - annotate - [select for diffs], Tue Jun 11 03:28:48 2002 UTC (22 years ago) by art
Branch: UBC
Changes since 1.24.2.1: +11 -4 lines
Diff to previous 1.24.2.1 (colored) to branchpoint 1.24 (colored)

Sync UBC branch to -current

Revision 1.29 / (download) - annotate - [select for diffs], Sat May 18 09:49:17 2002 UTC (22 years ago) by art
Branch: MAIN
CVS Tags: UBC_SYNC_B, OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.28: +8 -1 lines
Diff to previous 1.28 (colored)

Rename the MD db_stack_trace_cmd to db_stack_trace_print. Add an argument
that specifies which printf funciton it should use. Implement
db_stack_trace_cmd in MI code.

Thanks to miod@ for all the tests.

Revision 1.17.6.7 / (download) - annotate - [select for diffs], Thu Mar 28 11:43:03 2002 UTC (22 years, 2 months ago) by niklas
Branch: SMP
Changes since 1.17.6.6: +3 -3 lines
Diff to previous 1.17.6.6 (colored) to branchpoint 1.17 (colored)

Merge in -current from about a week ago

Revision 1.28 / (download) - annotate - [select for diffs], Thu Mar 14 03:16:03 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.27: +2 -2 lines
Diff to previous 1.27 (colored)

Final __P removal plus some cosmetic fixups

Revision 1.27 / (download) - annotate - [select for diffs], Thu Mar 14 01:26:51 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
Changes since 1.26: +4 -4 lines
Diff to previous 1.26 (colored)

First round of __P removal in sys

Revision 1.17.6.6 / (download) - annotate - [select for diffs], Wed Mar 6 02:07:09 2002 UTC (22 years, 3 months ago) by niklas
Branch: SMP
Changes since 1.17.6.5: +70 -6 lines
Diff to previous 1.17.6.5 (colored) to branchpoint 1.17 (colored)

Merge in trunk

Revision 1.24.2.1 / (download) - annotate - [select for diffs], Thu Jan 31 22:55:29 2002 UTC (22 years, 4 months ago) by niklas
Branch: UBC
Changes since 1.24: +70 -6 lines
Diff to previous 1.24 (colored)

Merge in -current, builds on i386, otherwise untested

Revision 1.26 / (download) - annotate - [select for diffs], Mon Jan 28 19:31:56 2002 UTC (22 years, 4 months ago) by miod
Branch: MAIN
Changes since 1.25: +23 -1 lines
Diff to previous 1.25 (colored)

Add "boot reboot" to please jason@ and "boot poweroff" to please drahn@.

Revision 1.25 / (download) - annotate - [select for diffs], Wed Jan 2 22:22:00 2002 UTC (22 years, 5 months ago) by miod
Branch: MAIN
Changes since 1.24: +48 -6 lines
Diff to previous 1.24 (colored)

Add more vocabulary (commands) to ddb, from NetBSD.
ok art@
(manual page update coming soon)

Revision 1.17.6.5 / (download) - annotate - [select for diffs], Wed Dec 5 00:43:29 2001 UTC (22 years, 6 months ago) by niklas
Branch: SMP
Changes since 1.17.6.4: +2 -2 lines
Diff to previous 1.17.6.4 (colored) to branchpoint 1.17 (colored)

Merge in -current

Revision 1.24 / (download) - annotate - [select for diffs], Wed Nov 28 16:13:29 2001 UTC (22 years, 6 months ago) by art
Branch: MAIN
CVS Tags: UBC_BASE
Branch point for: UBC
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored)

zap some typedefs.
vm_map_t -> struct vm_map *
vm_map_entry_t -> struct vm_map_entry *
simple_lock_data_t -> struct simplelock

(uvm not done yet, coming in the next commit)

Revision 1.17.6.4 / (download) - annotate - [select for diffs], Tue Nov 13 21:05:48 2001 UTC (22 years, 7 months ago) by niklas
Branch: SMP
Changes since 1.17.6.3: +2 -5 lines
Diff to previous 1.17.6.3 (colored) to branchpoint 1.17 (colored)

Merge in -current

Revision 1.23 / (download) - annotate - [select for diffs], Tue Nov 6 19:53:18 2001 UTC (22 years, 7 months ago) by miod
Branch: MAIN
Changes since 1.22: +2 -5 lines
Diff to previous 1.22 (colored)

Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.
(Look ma, I might have broken the tree)

Revision 1.17.6.3 / (download) - annotate - [select for diffs], Wed Oct 31 03:11:47 2001 UTC (22 years, 7 months ago) by nate
Branch: SMP
Changes since 1.17.6.2: +2 -2 lines
Diff to previous 1.17.6.2 (colored) to branchpoint 1.17 (colored)

Sync the SMP branch to something just after 3.0

Revision 1.22 / (download) - annotate - [select for diffs], Wed Jul 4 22:15:15 2001 UTC (22 years, 11 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored)

missed EOL at EOF

Revision 1.17.6.2 / (download) - annotate - [select for diffs], Wed Jul 4 10:40:05 2001 UTC (22 years, 11 months ago) by niklas
Branch: SMP
Changes since 1.17.6.1: +13 -12 lines
Diff to previous 1.17.6.1 (colored) to branchpoint 1.17 (colored)

Merge in -current from two days ago in the SMP branch.
As usual with merges, they do not indicate progress, so do not hold
your breath for working SMP, and do not mail me and ask about the
state of it.  It has not changed.  There is work ongoing, but very, very
slowly.  The commit is done in parts as to not lock up the tree in too
big chunks at a time.

Revision 1.21 / (download) - annotate - [select for diffs], Wed Jun 27 04:58:42 2001 UTC (22 years, 11 months ago) by art
Branch: MAIN
Changes since 1.20: +1 -11 lines
Diff to previous 1.20 (colored)

Remove old vm.

Revision 1.17.6.1 / (download) - annotate - [select for diffs], Mon May 14 22:06:56 2001 UTC (23 years, 1 month ago) by niklas
Branch: SMP
Changes since 1.17: +21 -1 lines
Diff to previous 1.17 (colored)

merge in approximately 2.9 into SMP branch

Revision 1.20 / (download) - annotate - [select for diffs], Wed Apr 18 23:17:25 2001 UTC (23 years, 1 month ago) by art
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.19: +13 -2 lines
Diff to previous 1.19 (colored)

New boot command: boot halt.
Don't sync, don't dump, just halt.

Revision 1.19 / (download) - annotate - [select for diffs], Wed Jun 7 11:21:39 2000 UTC (24 years ago) by art
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.18: +6 -3 lines
Diff to previous 1.18 (colored)

Allow passing an address to 'show malloc' and print out some information about
that address.

Revision 1.18 / (download) - annotate - [select for diffs], Wed Jun 7 09:40:02 2000 UTC (24 years ago) by art
Branch: MAIN
Changes since 1.17: +18 -1 lines
Diff to previous 1.17 (colored)

Add 'show malloc' that prints out malloc debugging information if available.

Revision 1.17 / (download) - annotate - [select for diffs], Fri Feb 26 01:38:22 1999 UTC (25 years, 3 months ago) by art
Branch: MAIN
CVS Tags: kame_19991208, SMP_BASE, OPENBSD_2_7_BASE, OPENBSD_2_7, OPENBSD_2_6_BASE, OPENBSD_2_6, OPENBSD_2_5_BASE, OPENBSD_2_5
Branch point for: SMP
Changes since 1.16: +14 -1 lines
Diff to previous 1.16 (colored)

uvm compat

Revision 1.16 / (download) - annotate - [select for diffs], Tue Sep 1 04:26:59 1998 UTC (25 years, 9 months ago) by art
Branch: MAIN
CVS Tags: OPENBSD_2_4_BASE, OPENBSD_2_4
Changes since 1.15: +0 -17 lines
Diff to previous 1.15 (colored)

the sync command does not work, back it out

Revision 1.15 / (download) - annotate - [select for diffs], Sun Aug 30 15:38:25 1998 UTC (25 years, 9 months ago) by art
Branch: MAIN
Changes since 1.14: +18 -1 lines
Diff to previous 1.14 (colored)

add a sync command that does not reboot

Revision 1.14 / (download) - annotate - [select for diffs], Wed Feb 25 19:53:46 1998 UTC (26 years, 3 months ago) by weingart
Branch: MAIN
CVS Tags: OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.13: +14 -1 lines
Diff to previous 1.13 (colored)

Add command to print out extents.  This helps in debugging PnP stuff,
and "it's just plain cool".

Revision 1.13 / (download) - annotate - [select for diffs], Mon Sep 8 19:46:37 1997 UTC (26 years, 9 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2
Changes since 1.12: +8 -20 lines
Diff to previous 1.12 (colored)

put 'help' in front of 'hangman'

Revision 1.12 / (download) - annotate - [select for diffs], Mon Jul 7 19:45:20 1997 UTC (26 years, 11 months ago) by niklas
Branch: MAIN
Changes since 1.11: +3 -3 lines
Diff to previous 1.11 (colored)

Do not wrap lines so often, much prettier x output

Revision 1.11 / (download) - annotate - [select for diffs], Mon Jan 27 07:53:53 1997 UTC (27 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

change prompt to ddb to match man page ddb(4)

Revision 1.10 / (download) - annotate - [select for diffs], Thu Jan 16 08:03:56 1997 UTC (27 years, 4 months ago) by kstailey
Branch: MAIN
Changes since 1.9: +3 -3 lines
Diff to previous 1.9 (colored)

use RB_TIMEBAD to indicate that the time is wrong and should not be copied
to the battery backed up clock via resettodr() in boot().

Revision 1.9 / (download) - annotate - [select for diffs], Fri May 31 10:37:24 1996 UTC (28 years ago) by niklas
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.8: +15 -7 lines
Diff to previous 1.8 (colored)

-Wall and -Wstrict-prototypes cleanup

Revision 1.8 / (download) - annotate - [select for diffs], Sun May 5 12:23:09 1996 UTC (28 years, 1 month ago) by mickey
Branch: MAIN
Changes since 1.7: +2 -1 lines
Diff to previous 1.7 (colored)

add advanced hang analyzer.
idea by theo.

Revision 1.7 / (download) - annotate - [select for diffs], Sun Apr 21 22:18:57 1996 UTC (28 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored)

partial sync with netbsd 960418, more to come

Revision 1.6 / (download) - annotate - [select for diffs], Fri Apr 19 16:08:30 1996 UTC (28 years, 1 month ago) by niklas
Branch: MAIN
Changes since 1.5: +1 -0 lines
Diff to previous 1.5 (colored)

NetBSD 960317 merge

Revision 1.5 / (download) - annotate - [select for diffs], Fri Apr 19 07:43:48 1996 UTC (28 years, 1 month ago) by mickey
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

Fix according to the last changes.
dev_conf.h deleted, longjmp proto changed.

Revision 1.4 / (download) - annotate - [select for diffs], Mon Mar 11 11:16:01 1996 UTC (28 years, 3 months ago) by mickey
Branch: MAIN
Changes since 1.3: +6 -5 lines
Diff to previous 1.3 (colored)

Debbuger changed towards the latest Mach.
Some minor changes for Linux ;) emulation.
Small bug fixes from NetBSD.

Revision 1.3 / (download) - annotate - [select for diffs], Tue Feb 20 13:35:33 1996 UTC (28 years, 3 months ago) by mickey
Branch: MAIN
Changes since 1.2: +95 -70 lines
Diff to previous 1.2 (colored)

netbsd-current import & 'boot' cmd addition.

Revision 1.2 / (download) - annotate - [select for diffs], Thu Dec 14 05:02:15 1995 UTC (28 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.1: +5 -3 lines
Diff to previous 1.1 (colored)

update from netbsd

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:52:27 1995 UTC (28 years, 7 months ago) by deraadt
CVS Tags: netbsd_1_1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

initial import of NetBSD tree

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 18 08:52:27 1995 UTC (28 years, 7 months ago) by deraadt
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.