[PATCH] officially deprecate register_ioctl32_conversion
authorChristoph Hellwig <hch@lst.de>
Sat, 16 Apr 2005 22:25:48 +0000 (15:25 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 16 Apr 2005 22:25:48 +0000 (15:25 -0700)
These have been deprecated since ->compat_ioctl when in, thus only a short
deprecation period.  There's four users left: i2o_config, s390/z90crypy,
s390/dasd and s390/zfcp and for the first two patches are about to be
submitted to get rid of it.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Documentation/feature-removal-schedule.txt
include/linux/ioctl32.h

index b6b1f5ab5354b0fd53e4925f37f47a4ac28e6b25..56627c1546de4edb3c778a6c14856651438f2dd0 100644 (file)
@@ -40,3 +40,11 @@ Why: Replaced by io_remap_pfn_range() which allows more memory space
        addressabilty (by using a pfn) and supports sparc & sparc64
        iospace as part of the pfn.
 Who:   Randy Dunlap <rddunlap@osdl.org>
+
+---------------------------
+
+What:  register_ioctl32_conversion() / unregister_ioctl32_conversion()
+When:  April 2005
+Why:   Replaced by ->compat_ioctl in file_operations and other method
+       vecors.
+Who:   Andi Kleen <ak@muc.de>, Christoph Hellwig <hch@lst.de>
index e1a6418194286396a720327e7a750b8c077e0402..e8c4af32b3bb6ddcbd2005aa57a776d79216aef5 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef IOCTL32_H
 #define IOCTL32_H 1
 
+#include <linux/compiler.h>    /* for __deprecated */
+
 struct file;
 
 typedef int (*ioctl_trans_handler_t)(unsigned int, unsigned int,
@@ -23,9 +25,9 @@ struct ioctl_trans {
  */ 
 
 #ifdef CONFIG_COMPAT
-extern int register_ioctl32_conversion(unsigned int cmd,
+extern int __deprecated register_ioctl32_conversion(unsigned int cmd,
                                ioctl_trans_handler_t handler);
-extern int unregister_ioctl32_conversion(unsigned int cmd);
+extern int __deprecated unregister_ioctl32_conversion(unsigned int cmd);
 
 #else