Home
last modified time | relevance | path

Searched refs:spindown (Results 1 – 7 of 7) sorted by relevance

/linux-4.4.14/Documentation/ioctl/
Dcdrom.txt47 CDROMGETSPINDOWN return 4-bit spindown value
48 CDROMSETSPINDOWN set 4-bit spindown value
567 char spindown;
568 ioctl(fd, CDROMGETSPINDOWN, &spindown);
573 The value of the current 4-bit spindown value.
582 char spindown
583 ioctl(fd, CDROMSETSPINDOWN, &spindown);
586 4-bit value used to control spindown (TODO: more detail here)
/linux-4.4.14/block/
Dcompat_ioctl.c219 compat_ulong_t spindown; member
369 err |= __get_user(f->spindown, &uf->spindown); in compat_fd_ioctl()
442 err |= __put_user(f->spindown, &uf->spindown); in compat_fd_ioctl()
/linux-4.4.14/include/uapi/linux/
Dfd.h140 unsigned long spindown; /* timeout needed for spindown */ member
/linux-4.4.14/drivers/ide/
Dide-cd.c1625 char spindown; in idecd_set_spindown() local
1627 if (copy_from_user(&spindown, (void __user *)arg, sizeof(char))) in idecd_set_spindown()
1636 buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f); in idecd_set_spindown()
1645 char spindown; in idecd_get_spindown() local
1653 spindown = buffer[11] & 0x0f; in idecd_get_spindown()
1654 if (copy_to_user((void __user *)arg, &spindown, sizeof(char))) in idecd_get_spindown()
/linux-4.4.14/Documentation/laptops/
Dlaptop-mode.txt57 * Most desktop hard drives have a very limited lifetime measured in spindown
123 Maximum time, in seconds, of hard drive spindown time that you are
142 The devices for which the spindown timeout should be adjusted by laptop mode.
200 of his regular 3 to 3.5 hours) using a spindown time of 5 seconds (BATT_HD=1).
237 # Maximum time, in seconds, of hard drive spindown time that you are
309 # Set the spindown timeout on a hard drive?
352 # Maximum time, in seconds, of hard drive spindown time that you are
372 # spindown time for HD (hdparm -S values)
/linux-4.4.14/Documentation/power/
Dswsusp.txt216 For devices like disk it does matter, you do not want to spindown for
/linux-4.4.14/drivers/block/
Dfloppy.c926 jiffies + UDP->spindown - delta; in floppy_off()