tree dbd4fd3cdfdb5a7695d2d44f698cdd757b8c67eb
parent 6cae60feb6709dea4cb94da93d4d2ea039aee59d
author Christoph Hellwig <[EMAIL PROTECTED]> Sun, 17 Apr 2005 05:25:48 -0700
committer Linus Torvalds <[EMAIL PROTECTED]> Sun, 17 Apr 2005 05:25:48 -0700
[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]>
feature-removal-schedule.txt | 8 ++++++++
linux/ioctl32.h | 6 ++++--
2 files changed, 12 insertions(+), 2 deletions(-)
Index: Documentation/feature-removal-schedule.txt
===================================================================
---
5aaf9fa7b025784924d66bd29fb4d5b4239a67e4/Documentation/feature-removal-schedule.txt
(mode:100644 sha1:b6b1f5ab5354b0fd53e4925f37f47a4ac28e6b25)
+++
dbd4fd3cdfdb5a7695d2d44f698cdd757b8c67eb/Documentation/feature-removal-schedule.txt
(mode:100644 sha1:56627c1546de4edb3c778a6c14856651438f2dd0)
@@ -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
===================================================================
--- 5aaf9fa7b025784924d66bd29fb4d5b4239a67e4/include/linux/ioctl32.h
(mode:100644 sha1:e1a6418194286396a720327e7a750b8c077e0402)
+++ dbd4fd3cdfdb5a7695d2d44f698cdd757b8c67eb/include/linux/ioctl32.h
(mode:100644 sha1:e8c4af32b3bb6ddcbd2005aa57a776d79216aef5)
@@ -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