]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/ide/ide-disk_ioctl.c
drivers: autoconvert trivial BKL users to private mutex
[net-next-2.6.git] / drivers / ide / ide-disk_ioctl.c
CommitLineData
f8790489
BZ
1#include <linux/kernel.h>
2#include <linux/ide.h>
3#include <linux/hdreg.h>
8a6cfeb6 4#include <linux/smp_lock.h>
f8790489
BZ
5
6#include "ide-disk.h"
7
8static const struct ide_ioctl_devset ide_disk_ioctl_settings[] = {
9{ HDIO_GET_ADDRESS, HDIO_SET_ADDRESS, &ide_devset_address },
10{ HDIO_GET_MULTCOUNT, HDIO_SET_MULTCOUNT, &ide_devset_multcount },
11{ HDIO_GET_NOWERR, HDIO_SET_NOWERR, &ide_devset_nowerr },
12{ HDIO_GET_WCACHE, HDIO_SET_WCACHE, &ide_devset_wcache },
13{ HDIO_GET_ACOUSTIC, HDIO_SET_ACOUSTIC, &ide_devset_acoustic },
14{ 0 }
15};
16
badf8082 17int ide_disk_ioctl(ide_drive_t *drive, struct block_device *bdev, fmode_t mode,
f8790489
BZ
18 unsigned int cmd, unsigned long arg)
19{
f8790489
BZ
20 int err;
21
8a6cfeb6 22 lock_kernel();
f8790489
BZ
23 err = ide_setting_ioctl(drive, bdev, cmd, arg, ide_disk_ioctl_settings);
24 if (err != -EOPNOTSUPP)
8a6cfeb6 25 goto out;
f8790489 26
8a6cfeb6
AB
27 err = generic_ide_ioctl(drive, bdev, cmd, arg);
28out:
29 unlock_kernel();
30 return err;
f8790489 31}