mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Stephen Rothwell <sfr@canb.auug.org.au>
To: torvalds@transmeta.com
Cc: linux-kernel@vger.kernel.org, anton@samba.org, davem@redhat.com,
	ak@muc.de, davidm@hpl.hp.com, schwidefsky@de.ibm.com,
	ralf@gnu.org, willy@debian.org
Subject: Re: [PATCH] compatibility syscall layer (lets try again)
Date: Wed, 4 Dec 2002 18:33:13 +1100	[thread overview]
Message-ID: <20021204183313.4282f40e.sfr@canb.auug.org.au> (raw)
In-Reply-To: <20021204180224.406d143c.sfr@canb.auug.org.au>

On Wed, 4 Dec 2002 18:02:24 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Below is the generic part of the start of the compatibility syscall layer.
> I think I have made it generic enough that each architecture can define
> what compatibility means.

Across all the arhitectures, the diffstat of the patch so far looks
like this:

 arch/ia64/Kconfig                  |    5 
 arch/ia64/ia32/ia32_entry.S        |    8 -
 arch/ia64/ia32/ia32_signal.c       |    5 
 arch/ia64/ia32/sys_ia32.c          |  186 ++++----------------------
 arch/mips64/Kconfig                |    5 
 arch/mips64/kernel/ioctl32.c       |    8 -
 arch/mips64/kernel/linux32.c       |  168 ++---------------------
 arch/mips64/kernel/scall_o32.S     |    8 -
 arch/mips64/kernel/signal32.c      |    3 
 arch/parisc/Kconfig                |    5 
 arch/parisc/kernel/binfmt_elf32.c  |   10 -
 arch/parisc/kernel/ioctl32.c       |    7 
 arch/parisc/kernel/signal32.c      |    3 
 arch/parisc/kernel/sys32.h         |    5 
 arch/parisc/kernel/sys_parisc32.c  |  195 +++++----------------------
 arch/ppc64/Kconfig                 |    4 
 arch/ppc64/kernel/binfmt_elf32.c   |   18 --
 arch/ppc64/kernel/ioctl32.c        |   12 -
 arch/ppc64/kernel/misc.S           |    8 -
 arch/ppc64/kernel/signal32.c       |   11 -
 arch/ppc64/kernel/sys32.S          |    4 
 arch/ppc64/kernel/sys_ppc32.c      |  262 ++++++++-----------------------------
 arch/s390x/Kconfig                 |    5 
 arch/s390x/kernel/binfmt_elf32.c   |   14 -
 arch/s390x/kernel/entry.S          |    8 -
 arch/s390x/kernel/ioctl32.c        |    5 
 arch/s390x/kernel/linux32.c        |  240 ++++++++-------------------------
 arch/s390x/kernel/linux32.h        |    6 
 arch/s390x/kernel/wrapper32.S      |   34 ++--
 arch/sparc64/Kconfig               |    5 
 arch/sparc64/kernel/binfmt_elf32.c |   18 --
 arch/sparc64/kernel/ioctl32.c      |   12 -
 arch/sparc64/kernel/signal32.c     |    3 
 arch/sparc64/kernel/sys32.S        |    4 
 arch/sparc64/kernel/sys_sparc32.c  |  225 +++++++------------------------
 arch/sparc64/kernel/sys_sunos32.c  |   20 +-
 arch/sparc64/kernel/systbls.S      |   12 -
 arch/sparc64/solaris/misc.c        |    7 
 arch/sparc64/solaris/socket.c      |    5 
 arch/x86_64/Kconfig                |    5 
 arch/x86_64/ia32/ia32_binfmt.c     |   14 -
 arch/x86_64/ia32/ia32_ioctl.c      |   12 -
 arch/x86_64/ia32/ia32entry.S       |    8 -
 arch/x86_64/ia32/ipc32.c           |   35 ++--
 arch/x86_64/ia32/socket32.c        |    9 -
 arch/x86_64/ia32/sys_ia32.c        |  214 ++----------------------------
 fs/open.c                          |   18 +-
 include/asm-ia64/compat.h          |   19 ++
 include/asm-ia64/ia32.h            |    8 -
 include/asm-mips64/compat.h        |   18 ++
 include/asm-mips64/posix_types.h   |    3 
 include/asm-mips64/stat.h          |    7 
 include/asm-parisc/compat.h        |   18 ++
 include/asm-parisc/posix_types.h   |    3 
 include/asm-ppc64/compat.h         |   18 ++
 include/asm-ppc64/ppc32.h          |   12 -
 include/asm-s390x/compat.h         |   18 ++
 include/asm-sparc64/compat.h       |   18 ++
 include/asm-sparc64/posix_types.h  |    3 
 include/asm-sparc64/signal.h       |    3 
 include/asm-sparc64/stat.h         |    7 
 include/asm-x86_64/compat.h        |   18 ++
 include/asm-x86_64/ia32.h          |    3 
 include/asm-x86_64/socket32.h      |    8 -
 include/linux/compat.h             |   29 ++++
 include/linux/time.h               |    2 
 kernel/Makefile                    |    1 
 kernel/compat.c                    |  114 ++++++++++++++++
 kernel/timer.c                     |   32 ++--
 69 files changed, 777 insertions(+), 1463 deletions(-)

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

  parent reply	other threads:[~2002-12-04  7:27 UTC|newest]

Thread overview: 78+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-12-04  7:02 Stephen Rothwell
2002-12-04  7:07 ` [PATCH] compatibility syscall layer - PPC64 Stephen Rothwell
2002-12-06 23:03   ` Anton Blanchard
2002-12-04  7:16 ` [PATCH] compatibility syscall layer - SPARC64 Stephen Rothwell
2002-12-04  7:18 ` [PATCH] compatibility syscall layer - X86_64 Stephen Rothwell
2002-12-04 11:29   ` Andi Kleen
2002-12-04  7:26 ` [PATCH] compatibility syscall layer - IA64 Stephen Rothwell
2002-12-04  7:37   ` David Mosberger
2002-12-04  7:28 ` [PATCH] compatibility syscall layer (lets try again) Stephen Rothwell
2002-12-04  7:29 ` [PATCH] compatibility syscall layer - PARISC Stephen Rothwell
2002-12-04  7:30 ` [PATCH] compatibility syscall layer (lets try again) Stephen Rothwell
2002-12-04  7:33 ` Stephen Rothwell [this message]
2002-12-04 11:57 ` Pavel Machek
2002-12-04 16:54 ` Linus Torvalds
2002-12-04 16:54   ` David S. Miller
2002-12-04 17:05     ` Linus Torvalds
2002-12-04 19:56 ` george anzinger
2002-12-04 20:07   ` Linus Torvalds
2002-12-04 20:56     ` Daniel Jacobowitz
2002-12-04 22:09       ` David S. Miller
2002-12-04 22:31         ` george anzinger
2002-12-04 22:39           ` David S. Miller
2002-12-04 22:42           ` Linus Torvalds
2002-12-04 23:42     ` Jim Houston
2002-12-05  0:18       ` Linus Torvalds
2002-12-05  2:01         ` george anzinger
2002-12-05  2:51           ` Linus Torvalds
2002-12-05  3:10             ` Andi Kleen
2002-12-05  3:46             ` george anzinger
2002-12-05  4:11               ` Linus Torvalds
2002-12-05  7:10                 ` george anzinger
2002-12-05  9:48                 ` george anzinger
2002-12-05 15:24                   ` Jim Houston
2002-12-05 16:35                     ` george anzinger
2002-12-06  0:03                       ` Richard Henderson
2002-12-05 17:03                   ` Linus Torvalds
2002-12-06  9:17                     ` george anzinger
2002-12-06 17:57                       ` Linus Torvalds
2002-12-06 19:20                         ` Linus Torvalds
2002-12-06 20:09                           ` [PATCH] compatibility syscall layer (let's " Jim Houston
2002-12-06 20:33                             ` george anzinger
2002-12-06 20:18                           ` [PATCH] compatibility syscall layer (lets " george anzinger
2002-12-06 21:12                             ` Linus Torvalds
2002-12-06 21:56                               ` Jim Houston
2002-12-06 22:58                                 ` Linus Torvalds
2002-12-07  2:25                                   ` george anzinger
2002-12-06 23:08                                 ` george anzinger
2002-12-08 20:41                           ` David S. Miller
2002-12-09  6:18                             ` Stephen Rothwell
2002-12-09 15:41                         ` Daniel Jacobowitz
2002-12-09 16:48                           ` Linus Torvalds
2002-12-09 17:27                             ` David Mosberger
2002-12-09 20:22                               ` David S. Miller
2002-12-09 17:49                             ` Jim Houston
2002-12-09 17:57                               ` Linus Torvalds
2002-12-09 23:30                             ` Paul Mackerras
2002-12-10 23:07                           ` george anzinger
2002-12-11  7:10                             ` Daniel Jacobowitz
2002-12-11  8:11                               ` george anzinger
2002-12-11  8:26                                 ` Daniel Jacobowitz
2002-12-10 11:08             ` Jamie Lokier
2002-12-05  2:27         ` Jim Houston
2002-12-09 16:58 Mikael Starvik
2002-12-09 17:35 ` Linus Torvalds
2002-12-09 18:46   ` David Mosberger
2002-12-10  0:13   ` Paul Mackerras
2002-12-10 23:11     ` george anzinger
2002-12-09 17:16 Martin Schwidefsky
2002-12-09 17:33 ` Linus Torvalds
2002-12-09 20:18 ` David S. Miller
2002-12-09 17:56 Martin Schwidefsky
2002-12-09 18:20 ` Linus Torvalds
2002-12-10 14:40 ` Keith Owens
2002-12-09 18:41 Martin Schwidefsky
2002-12-09 18:52 ` Linus Torvalds
2002-12-10  8:20   ` george anzinger
2002-12-10  8:42 Martin Schwidefsky
2002-12-10 17:17 Martin Schwidefsky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20021204183313.4282f40e.sfr@canb.auug.org.au \
    --to=sfr@canb.auug.org.au \
    --cc=ak@muc.de \
    --cc=anton@samba.org \
    --cc=davem@redhat.com \
    --cc=davidm@hpl.hp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ralf@gnu.org \
    --cc=schwidefsky@de.ibm.com \
    --cc=torvalds@transmeta.com \
    --cc=willy@debian.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®