Home | History | Annotate | Download | only in common
History log of /src/sys/compat/linux/common/linux_sg.c
RevisionDateAuthorComments
 1.14  21-Nov-2017  maxv This should be "linux_sg_version", not "version".
 1.13  21-Mar-2008  ad branches: 1.13.6; 1.13.48; 1.13.84;
Catch up with descriptor handling changes. See kern_descrip.c revision
1.173 for details.
 1.12  20-Dec-2007  dsl branches: 1.12.6;
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.11  19-Oct-2007  njoly branches: 1.11.4; 1.11.8;
Add compat_linux and exec_linux_elf lkm support for amd64:
- Add needed COMPAT_OSSAUDIO to GENERIC.
- Add missing includes needed by linux_syscallargs.h.
- Add lkm building.
 1.10  04-Mar-2007  christos branches: 1.10.14; 1.10.16; 1.10.20;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
 1.9  09-Feb-2007  ad branches: 1.9.2;
Merge newlock2 to head.
 1.8  13-Sep-2006  christos Avoid empty body in if
 1.7  11-Dec-2005  christos branches: 1.7.8; 1.7.20;
merge ktrace-lwp.
 1.6  04-Nov-2005  chs make this compile on m68k by including sys/device.h explicitly.
on other platforms it's apparently included implicitly, probably through cpu.h.
 1.5  26-Feb-2005  perry branches: 1.5.2; 1.5.4; 1.5.6;
nuke trailing whitespace
 1.4  13-Feb-2005  soren SG_GET_VERSION_NUM returns an int. Also make the version number patchable.
 1.3  13-Feb-2005  christos Don't zero out the linux request; we still need values from it.
Limit the sense len to the linux input buffer.
 1.2  13-Feb-2005  christos We were zeroing out the wrong struct.
 1.1  03-Feb-2005  christos branches: 1.1.2; 1.1.4;
Add linux scsi-generic to work for simple cases. Allows gendalia's change
to limp along. From soren with fixes from me.
 1.1.4.3  19-Mar-2005  yamt sync with head. xen and whitespace. xen part is not finished.
 1.1.4.2  12-Feb-2005  yamt sync with head.
 1.1.4.1  03-Feb-2005  yamt file linux_sg.c was added on branch yamt-km on 2005-02-12 18:17:41 +0000
 1.1.2.5  10-Nov-2005  skrll Sync with HEAD. Here we go again...
 1.1.2.4  04-Mar-2005  skrll Sync with HEAD.

Hi Perry!
 1.1.2.3  15-Feb-2005  skrll Sync with HEAD.
 1.1.2.2  04-Feb-2005  skrll Sync with HEAD.
 1.1.2.1  03-Feb-2005  skrll file linux_sg.c was added on branch ktrace-lwp on 2005-02-04 11:45:08 +0000
 1.5.6.7  24-Mar-2008  yamt sync with head.
 1.5.6.6  21-Jan-2008  yamt sync with head
 1.5.6.5  27-Oct-2007  yamt sync with head.
 1.5.6.4  03-Sep-2007  yamt sync with head.
 1.5.6.3  26-Feb-2007  yamt sync with head.
 1.5.6.2  30-Dec-2006  yamt sync with head.
 1.5.6.1  21-Jun-2006  yamt sync with head.
 1.5.4.2  29-Apr-2005  kent sync with -current
 1.5.4.1  26-Feb-2005  kent file linux_sg.c was added on branch kent-audio2 on 2005-04-29 11:28:40 +0000
 1.5.2.1  11-Oct-2006  ghen Pull up following revision(s) (requested by tsutsui in ticket #1526):
sys/compat/linux/common/linux_sg.c: revision 1.6
make this compile on m68k by including sys/device.h explicitly.
on other platforms it's apparently included implicitly, probably through cpu.h.
 1.7.20.2  30-Jan-2007  ad Remove support for SA. Ok core@.
 1.7.20.1  18-Nov-2006  ad Sync with head.
 1.7.8.1  14-Sep-2006  yamt sync with head.
 1.9.2.1  12-Mar-2007  rmind Sync with HEAD.
 1.10.20.1  25-Oct-2007  bouyer Sync with HEAD.
 1.10.16.2  09-Jan-2008  matt sync with HEAD
 1.10.16.1  06-Nov-2007  matt sync with HEAD
 1.10.14.1  26-Oct-2007  joerg Sync with HEAD.

Follow the merge of pmap.c on i386 and amd64 and move
pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup
code to restore CR4 before jumping back into kernel space as the large
page option might cover that.
 1.11.8.1  02-Jan-2008  bouyer Sync with HEAD
 1.11.4.1  26-Dec-2007  ad Sync with head.
 1.12.6.1  03-Apr-2008  mjf Sync with HEAD.
 1.13.84.1  30-Nov-2017  martin Pull up following revision(s) (requested by maxv in ticket #400):
sys/compat/linux/common/linux_sg.c: revision 1.14
This should be "linux_sg_version", not "version".
 1.13.48.1  03-Dec-2017  jdolecek update from HEAD
 1.13.6.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.13.6.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.

RSS XML Feed