Commit 4beb3709 authored by Cornelia Huck's avatar Cornelia Huck Committed by Linus Torvalds

[PATCH] s390: remove ioctl32 from dasdcmb

The ioctl32_conversion routines will be deprecated: Remove them from dasd_cmb
and handle the three cmb ioctls like all other dasd ioctls.
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent ec5883ab
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#define CODE #define CODE
#include "../../../fs/compat_ioctl.c" #include "../../../fs/compat_ioctl.c"
#include <asm/dasd.h> #include <asm/dasd.h>
#include <asm/cmb.h>
#include <asm/tape390.h> #include <asm/tape390.h>
static int do_ioctl32_pointer(unsigned int fd, unsigned int cmd, static int do_ioctl32_pointer(unsigned int fd, unsigned int cmd,
...@@ -58,7 +59,11 @@ COMPATIBLE_IOCTL(BIODASDPRRD) ...@@ -58,7 +59,11 @@ COMPATIBLE_IOCTL(BIODASDPRRD)
COMPATIBLE_IOCTL(BIODASDPSRD) COMPATIBLE_IOCTL(BIODASDPSRD)
COMPATIBLE_IOCTL(BIODASDGATTR) COMPATIBLE_IOCTL(BIODASDGATTR)
COMPATIBLE_IOCTL(BIODASDSATTR) COMPATIBLE_IOCTL(BIODASDSATTR)
#if defined(CONFIG_DASD_CMB) || defined(CONFIG_DASD_CMB_MODULE)
COMPATIBLE_IOCTL(BIODASDCMFENABLE)
COMPATIBLE_IOCTL(BIODASDCMFDISABLE)
COMPATIBLE_IOCTL(BIODASDREADALLCMB)
#endif
#endif #endif
#if defined(CONFIG_S390_TAPE) || defined(CONFIG_S390_TAPE_MODULE) #if defined(CONFIG_S390_TAPE) || defined(CONFIG_S390_TAPE_MODULE)
......
/* /*
* linux/drivers/s390/block/dasd_cmb.c ($Revision: 1.6 $) * linux/drivers/s390/block/dasd_cmb.c ($Revision: 1.9 $)
* *
* Linux on zSeries Channel Measurement Facility support * Linux on zSeries Channel Measurement Facility support
* (dasd device driver interface) * (dasd device driver interface)
...@@ -23,7 +23,6 @@ ...@@ -23,7 +23,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include <linux/init.h> #include <linux/init.h>
#include <linux/ioctl32.h>
#include <linux/module.h> #include <linux/module.h>
#include <asm/ccwdev.h> #include <asm/ccwdev.h>
#include <asm/cmb.h> #include <asm/cmb.h>
...@@ -84,27 +83,13 @@ dasd_ioctl_readall_cmb(struct block_device *bdev, int no, long args) ...@@ -84,27 +83,13 @@ dasd_ioctl_readall_cmb(struct block_device *bdev, int no, long args)
static inline int static inline int
ioctl_reg(unsigned int no, dasd_ioctl_fn_t handler) ioctl_reg(unsigned int no, dasd_ioctl_fn_t handler)
{ {
int ret; return dasd_ioctl_no_register(THIS_MODULE, no, handler);
ret = dasd_ioctl_no_register(THIS_MODULE, no, handler);
#ifdef CONFIG_COMPAT
if (ret)
return ret;
ret = register_ioctl32_conversion(no, NULL);
if (ret)
dasd_ioctl_no_unregister(THIS_MODULE, no, handler);
#endif
return ret;
} }
static inline void static inline void
ioctl_unreg(unsigned int no, dasd_ioctl_fn_t handler) ioctl_unreg(unsigned int no, dasd_ioctl_fn_t handler)
{ {
dasd_ioctl_no_unregister(THIS_MODULE, no, handler); dasd_ioctl_no_unregister(THIS_MODULE, no, handler);
#ifdef CONFIG_COMPAT
unregister_ioctl32_conversion(no);
#endif
} }
static void static void
......
...@@ -52,7 +52,7 @@ struct cmbdata { ...@@ -52,7 +52,7 @@ struct cmbdata {
#define BIODASDREADALLCMB _IOWR(DASD_IOCTL_LETTER,33,struct cmbdata) #define BIODASDREADALLCMB _IOWR(DASD_IOCTL_LETTER,33,struct cmbdata)
#ifdef __KERNEL__ #ifdef __KERNEL__
struct ccw_device;
/** /**
* enable_cmf() - switch on the channel measurement for a specific device * enable_cmf() - switch on the channel measurement for a specific device
* @cdev: The ccw device to be enabled * @cdev: The ccw device to be enabled
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment