diff options
author | Christoph Hellwig <hch@lst.de> | 2006-01-09 23:52:12 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:01:32 -0500 |
commit | 8262037f406dc8e0908ad51f355c3dfd4d662aba (patch) | |
tree | 43d60f935d3e5eeb089c90cbca204ac7bfa61576 /drivers/s390/block/dasd.c | |
parent | ec3cad96901373ad0e21611cfbcc372fe09df1f7 (diff) |
[PATCH] add ->compat_ioctl to dasd
Add a compat_ioctl method to the dasd driver so the last entries in
arch/s390/kernel/compat_ioctl.c can go away. Unlike the previous attempt this
one does not replace the ioctl method with an unlocked_ioctl method so that
the ioctl_by_bdev calls in s390 partition code continue to work.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/s390/block/dasd.c')
-rw-r--r-- | drivers/s390/block/dasd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/s390/block/dasd.c b/drivers/s390/block/dasd.c index 2472fa1a1be1..9c25654b1e75 100644 --- a/drivers/s390/block/dasd.c +++ b/drivers/s390/block/dasd.c | |||
@@ -1751,6 +1751,7 @@ dasd_device_operations = { | |||
1751 | .open = dasd_open, | 1751 | .open = dasd_open, |
1752 | .release = dasd_release, | 1752 | .release = dasd_release, |
1753 | .ioctl = dasd_ioctl, | 1753 | .ioctl = dasd_ioctl, |
1754 | .compat_ioctl = dasd_compat_ioctl, | ||
1754 | .getgeo = dasd_getgeo, | 1755 | .getgeo = dasd_getgeo, |
1755 | }; | 1756 | }; |
1756 | 1757 | ||