Home | History | Annotate | Download | only in common
History log of /src/sys/compat/common/vm_12.c
RevisionDateAuthorComments
 1.21  27-Jan-2019  pgoyette Merge the [pgoyette-compat] branch
 1.20  19-Jan-2011  tsutsui branches: 1.20.56; 1.20.58;
Remove includes <sys/mount.h> and <sys/sched.h> added for <sys/syscallargs.h>.
Now they are handled by $sysarghdrextra in sys/kern/syscalls.conf.
 1.19  17-Jun-2008  tsutsui branches: 1.19.18; 1.19.24;
Include <sys/sched.h> before <sys/syscallargs.h> for cpuset_t.
 1.18  29-May-2008  mrg branches: 1.18.2;
remove clause #3 from my license where there are no other
copyright holders involved.
 1.17  20-Dec-2007  dsl branches: 1.17.6; 1.17.8; 1.17.10; 1.17.12;
Convert all the system call entry points from:
int foo(struct lwp *l, void *v, register_t *retval)
to:
int foo(struct lwp *l, const struct foo_args *uap, register_t *retval)
Fixup compat code to not write into 'uap' and (in some cases) to actually
pass a correctly formatted 'uap' structure with the right name to the
next routine.
A few 'compat' routines that just call standard ones have been deleted.
All the 'compat' code compiles (along with the kernels required to test
build it).
98% done by automated scripts.
 1.16  04-Mar-2007  christos branches: 1.16.16; 1.16.24; 1.16.28;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
 1.15  09-Feb-2007  ad branches: 1.15.2;
Merge newlock2 to head.
 1.14  11-Dec-2005  christos branches: 1.14.20;
merge ktrace-lwp.
 1.13  29-May-2005  christos branches: 1.13.2;
- sprinkle const.
- add XXXUNCONST to the emul_find() pbuf argument free'ing. XXX: this needs
an api change.
- avoid variable shadowing.
 1.12  20-Jan-2003  simonb branches: 1.12.2;
The Double-Semi-Colon Police.
 1.11  18-Jan-2003  thorpej Merge the nathanw_sa branch.
 1.10  13-Nov-2001  lukem add RCSIDs (including regeneration of files as appropriate)
 1.9  29-Aug-1998  mrg branches: 1.9.24; 1.9.26;
move <vm/vm_swap.h> to <sys/swap.h>. <vm/vm_swap.h> still works for now (goes away later)
 1.8  20-Oct-1997  thorpej Fix the shared library versioning snafu caused by the recent changes
to the stat(2) family and msync(2). This uses a primitive function
versioning scheme.

This reverts the libc shared library major version from 13 to 12, and
adds a few new interfaces to bring us to libc version 12.20.

From Frank van der Linden <fvdl@NetBSD.ORG>.
 1.7  16-Oct-1997  christos PR/4269: msync is missing MS_*
 1.6  10-Oct-1997  mrg remove advertising clause from all my licenses.
 1.5  13-Jun-1997  thorpej branches: 1.5.4;
Don't #ifdef compat_12_sys_swapon() so that it can be used by other compat
modules.
 1.4  12-Jun-1997  mrg put the front end into libc.
 1.3  12-Jun-1997  mrg make this sys_swapon() for now.
 1.2  12-Jun-1997  mrg bring mrg-vm-swap2 onto mainline.
 1.1  14-Feb-1997  mrg branches: 1.1.2;
file vm_swap_12.c was initially added on branch mrg-vm-swap.
 1.1.2.2  14-Feb-1997  mrg branches: 1.1.2.2.2;
make this more likely to work; follow naming conventions
 1.1.2.1  14-Feb-1997  mrg emulate old swapon().
 1.1.2.2.2.3  01-Jun-1997  mrg it is called sys_swapctl() now.
 1.1.2.2.2.2  06-May-1997  pk Cast away `const' from old swapon's `name' argument.
Include <sys/systm.h>
 1.1.2.2.2.1  06-May-1997  mrg add <sys/syscallargs.h> as required, and <sys/mount.h> as previous requires.
 1.5.4.1  14-Oct-1997  thorpej Update marc-pcmcia branch from trunk.
 1.9.26.1  10-Jan-2002  thorpej Sync kqueue branch with -current.
 1.9.24.3  29-May-2002  nathanw #include <sys/sa.h> before <sys/syscallargs.h>, to provide sa_upcall_t
now that <sys/param.h> doesn't include <sys/sa.h>.

(Behold the Power of Ed)
 1.9.24.2  14-Nov-2001  nathanw Catch up to -current.
 1.9.24.1  05-Mar-2001  nathanw Initial commit of scheduler activations and lightweight process support.
 1.12.2.1  10-Nov-2005  skrll Sync with HEAD. Here we go again...
 1.13.2.3  21-Jan-2008  yamt sync with head
 1.13.2.2  03-Sep-2007  yamt sync with head.
 1.13.2.1  26-Feb-2007  yamt sync with head.
 1.14.20.1  30-Jan-2007  ad Remove support for SA. Ok core@.
 1.15.2.1  12-Mar-2007  rmind Sync with HEAD.
 1.16.28.1  02-Jan-2008  bouyer Sync with HEAD
 1.16.24.1  26-Dec-2007  ad Sync with head.
 1.16.16.1  09-Jan-2008  matt sync with HEAD
 1.17.12.3  23-Jun-2008  wrstuden Sync w/ -current. 34 merge conflicts to follow.
 1.17.12.2  14-May-2008  wrstuden Per discussion with ad, remove most of the #include <sys/sa.h> lines
as they were including sa.h just for the type(s) needed for syscallargs.h.

Instead, create a new file, sys/satypes.h, which contains just the
types needed for syscallargs.h. Yes, there's only one now, but that
may change and it's probably more likely to change if it'd be difficult
to handle. :-)

Per discussion with matt at n dot o, add an include of satypes.h to
sigtypes.h. Upcall handlers are kinda signal handlers, and signalling
is the header file that's already included for syscallargs.h that
closest matches SA.

This shaves about 3000 lines off of the diff of the branch relative
to the base. That also represents about 18% of the total before this
checkin.

I think this reduction is very good thing.
 1.17.12.1  10-May-2008  wrstuden Initial checkin of re-adding SA. Everything except kern_sa.c
compiles in GENERIC for i386. This is still a work-in-progress, but
this checkin covers most of the mechanical work (changing signalling
to be able to accomidate SA's process-wide signalling and re-adding
includes of sys/sa.h and savar.h). Subsequent changes will be much
more interesting.

Also, kern_sa.c has received partial cleanup. There's still more
to do, though.
 1.17.10.1  04-May-2009  yamt sync with head.
 1.17.8.1  04-Jun-2008  yamt sync with head
 1.17.6.2  29-Jun-2008  mjf Sync with HEAD.
 1.17.6.1  02-Jun-2008  mjf Sync with HEAD.
 1.18.2.1  18-Jun-2008  simonb Sync with head.
 1.19.24.1  06-Jun-2011  jruoho Sync with HEAD.
 1.19.18.1  05-Mar-2011  rmind sync with head
 1.20.58.1  10-Jun-2019  christos Sync with HEAD
 1.20.56.2  22-Sep-2018  pgoyette #include "opt_compat_netbsd.h" for all sources that provide compat code.
 1.20.56.1  31-Mar-2018  pgoyette create the compat_12 module

RSS XML Feed