tree c1ee2a54b89d471dc7087be83a4030ab2656becd
parent fd7aeae718ee9e7a471a01a4d9d7d2ae70a6e52c
author Christoph Hellwig <[EMAIL PROTECTED]> Tue Apr 12 08:26:16 2005
committer Linus Torvalds <[EMAIL PROTECTED]> Tue Apr 12 08:26:16 2005

[PATCH] officially deprecate register_ioctl32_conversion

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 <[EMAIL PROTECTED]>
Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>

 Documentation/feature-removal-schedule.txt |    8 ++++++++
 include/linux/ioctl32.h                    |    6 ++++--
 2 files changed, 12 insertions(+), 2 deletions(-)

Index: Documentation/feature-removal-schedule.txt
===================================================================
--- 
2856529c5f0964b00c7702b1eee706f8f11e31b8/Documentation/feature-removal-schedule.txt
  (mode:100644 sha1:ac1ce2341bbbeea038a3f8cab30ee81b24909a2d)
+++ 
c1ee2a54b89d471dc7087be83a4030ab2656becd/Documentation/feature-removal-schedule.txt
  (mode:100644 sha1:655020e30d5fa115638a2bbc1aab87b4822d02a4)
@@ -40,3 +40,11 @@
        addressabilty (by using a pfn) and supports sparc & sparc64
        iospace as part of the pfn.
 Who:   Randy Dunlap <[EMAIL PROTECTED]>
+
+---------------------------
+
+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 <[EMAIL PROTECTED]>, Christoph Hellwig <[EMAIL PROTECTED]>
Index: include/linux/ioctl32.h
===================================================================
--- 2856529c5f0964b00c7702b1eee706f8f11e31b8/include/linux/ioctl32.h  
(mode:100644 sha1:998e5f00e182bc760a73a55d5e54ecd5da95b92c)
+++ c1ee2a54b89d471dc7087be83a4030ab2656becd/include/linux/ioctl32.h  
(mode:100644 sha1:eb8f46228da71c78cb1561dab4258d442274edde)
@@ -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 @@
  */ 
 
 #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
 
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to