History log of /netbsd-src/lib/libkvm/kvm_vax.c (Results 1 – 21 of 21)
Revision Date Author Comments
# 104ea677 10-Jan-2022 christos <christos@NetBSD.org>

Get rid of usrstack/USRSTACK. Document that the old version of getargv is
broken because of ASLR.


# 7c166415 19-Feb-2014 dsl <dsl@NetBSD.org>

Remove the #include <sys/user.h> from all of libkvm.
sys/user.h is a stub that just #includes sys/pcb.h.
There are no 'struct pcb' anywhere in here, so I'm extremely doubtful
any of the builds will f

Remove the #include <sys/user.h> from all of libkvm.
sys/user.h is a stub that just #includes sys/pcb.h.
There are no 'struct pcb' anywhere in here, so I'm extremely doubtful
any of the builds will fail.
OTOH it might be relying on a header that pcb.h includes.
In any case i386 and amd64 build.

show more ...


# 0deb66df 27-Jan-2014 matt <matt@NetBSD.org>

Add missing __RCSID("$NetBSD$");


# 962a341d 20-Sep-2010 jym <jym@NetBSD.org>

Change kvm_pa2off() and kvm_kvatop() prototypes (private to kvm(3)):

-int _kvm_kvatop(kvm_t *, u_long, u_long *);
-off_t _kvm_pa2off(kvm_t *, u_long);
+int _kvm_kvatop(kvm_t *, vaddr_t, pa

Change kvm_pa2off() and kvm_kvatop() prototypes (private to kvm(3)):

-int _kvm_kvatop(kvm_t *, u_long, u_long *);
-off_t _kvm_pa2off(kvm_t *, u_long);
+int _kvm_kvatop(kvm_t *, vaddr_t, paddr_t *);
+off_t _kvm_pa2off(kvm_t *, paddr_t);

Basically, use vaddr_t for VA and paddr_t for PA. In addition, for variables
representing addresses, use paddr_t or vaddr_t, depending on the context.

For most arches, vaddr_t and paddr_t are equivalent to unsigned long. However,
the change was needed for exotic situations, like i386 PAE, were unsigned long
is not suitable for PA which are 64 bits long. As this required a complete
change of the function prototypes, all arches had to be adapted accordingly.

Core files from before this commit should still work with the new code; I did
not see any direct dependency between core's structure and kvatop/pa2off.

The change was compile tested for all arches, as it impacts all of them.

See also:

http://mail-index.netbsd.org/current-users/2010/09/07/msg014249.html

show more ...


# 6dc46b92 19-Sep-2010 jym <jym@NetBSD.org>

Ansify and KNF all functions within kvm(3). No objection on current-users@.

Used as ground for u_long => vaddr_t/paddr_t replacements in kvm(3)
private functions.

Compile tested for all arches. See

Ansify and KNF all functions within kvm(3). No objection on current-users@.

Used as ground for u_long => vaddr_t/paddr_t replacements in kvm(3)
private functions.

Compile tested for all arches. See also:

http://mail-index.netbsd.org/current-users/2010/09/07/msg014249.html

show more ...


# eb7c1594 07-Aug-2003 agc <agc@NetBSD.org>

Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22280, verified by myself.


# b976c559 16-May-2003 wiz <wiz@NetBSD.org>

Consistently spell "crash dump" as two separate words. From jmc@openbsd.


# 2c6ba846 29-Nov-2001 thorpej <thorpej@NetBSD.org>

Rename a local to avoid a -Wshadow warning.


# a089eada 07-Sep-2001 chuck <chuck@NetBSD.org>

include machine/vmparam.h so it will compile once again


# 6ea94941 27-Oct-2000 matt <matt@NetBSD.org>

be consistent in the use of u_long. eventually they should be uintptr_t.


# dd0d61e3 10-Oct-2000 he <he@NetBSD.org>

Use %lx instead of %x with _kvm_err when arg is u_long.


# 3b8ac18d 29-Jun-2000 mrg <mrg@NetBSD.org>

<vm/vm.h> -> <uvm/uvm_extern.h>


# 10a6db97 26-Jun-2000 mrg <mrg@NetBSD.org>

remove redundant vm includes


# f68ec00b 02-Jul-1999 simonb <simonb@NetBSD.org>

More trailing white space.


# 0b7831a3 03-Feb-1998 perry <perry@NetBSD.org>

remove obsolete register declarations


# 41d776ab 20-Oct-1997 ragge <ragge@NetBSD.org>

Fix warnings.


# f6385749 12-Aug-1997 gwr <gwr@NetBSD.org>

Add _kvm_mdopen()


# 5c3223d4 07-Jun-1997 ragge <ragge@NetBSD.org>

Vax now uses new libkvm.


# 346e67f8 18-Mar-1996 thorpej <thorpej@NetBSD.org>

RCS id police.


# 5993e442 25-Apr-1995 ragge <ragge@NetBSD.org>

kvm_vax.c added.


# 460abf61 17-Apr-1995 ragge <ragge@NetBSD.org>

kvm machine specific code for VAX.