ide-disk_ioctl.c 877 B

12345678910111213141516171819202122232425262728293031
  1. #include <linux/kernel.h>
  2. #include <linux/ide.h>
  3. #include <linux/hdreg.h>
  4. #include <linux/smp_lock.h>
  5. #include "ide-disk.h"
  6. static const struct ide_ioctl_devset ide_disk_ioctl_settings[] = {
  7. { HDIO_GET_ADDRESS, HDIO_SET_ADDRESS, &ide_devset_address },
  8. { HDIO_GET_MULTCOUNT, HDIO_SET_MULTCOUNT, &ide_devset_multcount },
  9. { HDIO_GET_NOWERR, HDIO_SET_NOWERR, &ide_devset_nowerr },
  10. { HDIO_GET_WCACHE, HDIO_SET_WCACHE, &ide_devset_wcache },
  11. { HDIO_GET_ACOUSTIC, HDIO_SET_ACOUSTIC, &ide_devset_acoustic },
  12. { 0 }
  13. };
  14. int ide_disk_ioctl(ide_drive_t *drive, struct block_device *bdev, fmode_t mode,
  15. unsigned int cmd, unsigned long arg)
  16. {
  17. int err;
  18. lock_kernel();
  19. err = ide_setting_ioctl(drive, bdev, cmd, arg, ide_disk_ioctl_settings);
  20. if (err != -EOPNOTSUPP)
  21. goto out;
  22. err = generic_ide_ioctl(drive, bdev, cmd, arg);
  23. out:
  24. unlock_kernel();
  25. return err;
  26. }