Kconfig.iosched
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:1k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. menu "IO Schedulers"
  2. config IOSCHED_NOOP
  3. bool
  4. default y
  5. ---help---
  6.   The no-op I/O scheduler is a minimal scheduler that does basic merging
  7.   and sorting. Its main uses include non-disk based block devices like
  8.   memory devices, and specialised software or hardware environments
  9.   that do their own scheduling and require only minimal assistance from
  10.   the kernel.
  11. config IOSCHED_AS
  12. tristate "Anticipatory I/O scheduler"
  13. default y
  14. ---help---
  15.   The anticipatory I/O scheduler is the default disk scheduler. It is
  16.   generally a good choice for most environments, but is quite large and
  17.   complex when compared to the deadline I/O scheduler, it can also be
  18.   slower in some cases especially some database loads.
  19. config IOSCHED_DEADLINE
  20. tristate "Deadline I/O scheduler"
  21. default y
  22. ---help---
  23.   The deadline I/O scheduler is simple and compact, and is often as
  24.   good as the anticipatory I/O scheduler, and in some database
  25.   workloads, better. In the case of a single process performing I/O to
  26.   a disk at any one time, its behaviour is almost identical to the
  27.   anticipatory I/O scheduler and so is a good choice.
  28. config IOSCHED_CFQ
  29. tristate "CFQ I/O scheduler"
  30. default y
  31. ---help---
  32.   The CFQ I/O scheduler tries to distribute bandwidth equally
  33.   among all processes in the system. It should provide a fair
  34.   working environment, suitable for desktop systems.
  35. endmenu