public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Andres Salomon <dilinger@voxel.net>
To: Adrian Bunk <bunk@fs.tum.de>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] register_ioctl32_conversion symbol exports fix
Date: 28 May 2003 04:05:28 -0400	[thread overview]
Message-ID: <1054109128.598.4.camel@nrop> (raw)
In-Reply-To: <20030528074701.GA17449@fs.tum.de>

[-- Attachment #1: Type: text/plain, Size: 388 bytes --]

Oops, sorry.  One of these days, I will find an NNTP client that suck..


On Wed, 2003-05-28 at 03:47, Adrian Bunk wrote:
> On Wed, May 28, 2003 at 01:45:33AM -0400, Andres Salomon wrote:
> >...
> > altogether from the arch-specific stuff; so, that's what this patch does
> > (to both {,un}register_ioctl32_conversion).  Please apply (or correct me
> >...
> 
> -ENOPATCH
> 
> cu
> Adrian

[-- Attachment #2: ioctl32.diff --]
[-- Type: text/x-patch, Size: 1949 bytes --]

diff -urN a/arch/ppc64/kernel/ppc_ksyms.c b/arch/ppc64/kernel/ppc_ksyms.c
--- a/arch/ppc64/kernel/ppc_ksyms.c	2003-05-26 21:00:25.000000000 -0400
+++ b/arch/ppc64/kernel/ppc_ksyms.c	2003-05-28 01:15:26.000000000 -0400
@@ -49,8 +49,6 @@
 
 extern int sys_ioctl(unsigned int fd, unsigned int cmd, unsigned long arg);
 extern int do_signal(sigset_t *, struct pt_regs *);
-extern int register_ioctl32_conversion(unsigned int cmd, int (*handler)(unsigned int, unsigned int, unsigned long, struct file *));
-extern int unregister_ioctl32_conversion(unsigned int cmd);
 
 int abs(int);
 
@@ -66,9 +64,6 @@
 EXPORT_SYMBOL(synchronize_irq);
 #endif /* CONFIG_SMP */
 
-EXPORT_SYMBOL(register_ioctl32_conversion);
-EXPORT_SYMBOL(unregister_ioctl32_conversion);
-
 EXPORT_SYMBOL(isa_io_base);
 EXPORT_SYMBOL(pci_io_base);
 
diff -urN a/arch/sparc64/kernel/sparc64_ksyms.c b/arch/sparc64/kernel/sparc64_ksyms.c
--- a/arch/sparc64/kernel/sparc64_ksyms.c	2003-05-26 21:00:46.000000000 -0400
+++ b/arch/sparc64/kernel/sparc64_ksyms.c	2003-05-28 01:14:54.000000000 -0400
@@ -94,8 +94,6 @@
 extern int compat_sys_ioctl(unsigned int fd, unsigned int cmd, u32 arg);
 extern int (*handle_mathemu)(struct pt_regs *, struct fpustate *);
 extern long sparc32_open(const char * filename, int flags, int mode);
-extern int register_ioctl32_conversion(unsigned int cmd, int (*handler)(unsigned int, unsigned int, unsigned long, struct file *));
-extern int unregister_ioctl32_conversion(unsigned int cmd);
 extern int io_remap_page_range(struct vm_area_struct *vma, unsigned long from, unsigned long offset, unsigned long size, pgprot_t prot, int space);
                 
 extern int __ashrdi3(int, int);
@@ -234,10 +232,6 @@
 EXPORT_SYMBOL(pci_dma_supported);
 #endif
 
-/* IOCTL32 emulation hooks. */
-EXPORT_SYMBOL(register_ioctl32_conversion);
-EXPORT_SYMBOL(unregister_ioctl32_conversion);
-
 /* I/O device mmaping on Sparc64. */
 EXPORT_SYMBOL(io_remap_page_range);
 

  parent reply	other threads:[~2003-05-28  7:54 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-05-27  2:08 Linux 2.5.70 Linus Torvalds
2003-05-27  2:45 ` Linux 2.5.70 (Compiler warnings) Udo A. Steinberg
2003-05-27  3:09   ` YOSHIFUJI Hideaki / 吉藤英明
2003-05-27  7:10     ` David S. Miller
2003-05-27  8:48 ` Linux 2.5.70 compile error DevilKin
2003-05-27 13:05   ` William Lee Irwin III
2003-05-27 15:29     ` DevilKin-LKML
2003-05-27 15:36       ` William Lee Irwin III
2003-05-27 15:48         ` John Stoffel
2003-05-27 15:52           ` William Lee Irwin III
2003-05-27 16:35             ` John Stoffel
2003-05-27 16:43               ` William Lee Irwin III
2003-05-27 17:50                 ` John Stoffel
2003-05-27 17:56                   ` William Lee Irwin III
2003-05-27 21:56                   ` Martin J. Bligh
2003-05-27 18:19           ` Roman Zippel
2003-05-27 18:40             ` Dave Jones
2003-05-27 18:50               ` William Lee Irwin III
2003-05-27 21:59               ` Martin J. Bligh
2003-05-27 23:40                 ` Dave Jones
2003-05-28  3:20                   ` Martin J. Bligh
2003-05-28  3:34                 ` William Lee Irwin III
2003-05-28  6:11                   ` Martin J. Bligh
2003-05-28  7:43                     ` William Lee Irwin III
2003-05-28 15:28                       ` Martin J. Bligh
2003-05-29  1:14                         ` William Lee Irwin III
2003-05-28  6:52                   ` Dave Jones
2003-05-28 22:08                 ` Bill Davidsen
2003-05-29  0:36                   ` Martin J. Bligh
2003-05-27 19:46             ` John Stoffel
2003-05-27 15:38       ` Sean Neakums
2003-05-27 15:52         ` Martin J. Bligh
2003-05-27 16:58 ` Linux 2.5.70 Ricky Beam
2003-05-27 17:26   ` Linus Torvalds
2003-05-27 16:48     ` Alan Cox
2003-05-27 17:53       ` Linus Torvalds
2003-05-27 21:15         ` Hans Reiser
2003-05-27 18:09     ` Ricky Beam
2003-05-27 18:22       ` Jeff Garzik
2003-05-27 18:31       ` Robert Love
2003-05-27 19:18       ` Adrian Bunk
2003-05-28 16:08       ` Bill Davidsen
2003-05-28 15:58     ` Bill Davidsen
2003-05-28 16:14       ` Linus Torvalds
2003-05-28 19:22         ` ismail (cartman) donmez
2003-05-29 11:14           ` Dave Jones
2003-05-29 11:14             ` ismail (cartman) donmez
2003-05-28 22:40         ` Bill Davidsen
2003-05-27 21:06   ` Andreas Boman
2003-05-28  2:30   ` Daniel Phillips
2003-05-27 21:42 ` John Cherry
2003-05-28 17:55   ` John Cherry
2003-05-28  5:45 ` [PATCH] register_ioctl32_conversion symbol exports fix Andres Salomon
     [not found]   ` <20030528074701.GA17449@fs.tum.de>
2003-05-28  8:05     ` Andres Salomon [this message]
2003-05-28 14:59 ` Linux 2.5.70 Paweł Gołaszewski

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=1054109128.598.4.camel@nrop \
    --to=dilinger@voxel.net \
    --cc=bunk@fs.tum.de \
    --cc=linux-kernel@vger.kernel.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