gc.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * fs/f2fs/gc.h
  3. *
  4. * Copyright (c) 2012 Samsung Electronics Co., Ltd.
  5. * http://www.samsung.com/
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #define GC_THREAD_MIN_WB_PAGES 1 /*
  12. * a threshold to determine
  13. * whether IO subsystem is idle
  14. * or not
  15. */
  16. #define DEF_GC_THREAD_URGENT_SLEEP_TIME 500 /* 500 ms */
  17. #define DEF_GC_THREAD_MIN_SLEEP_TIME 30000 /* milliseconds */
  18. #define DEF_GC_THREAD_MAX_SLEEP_TIME 60000
  19. #define DEF_GC_THREAD_NOGC_SLEEP_TIME 300000 /* wait 5 min */
  20. #define LIMIT_INVALID_BLOCK 40 /* percentage over total user space */
  21. #define LIMIT_FREE_BLOCK 40 /* percentage over invalid + free space */
  22. #define DEF_GC_FAILED_PINNED_FILES 2048
  23. /* Search max. number of dirty segments to select a victim segment */
  24. #define DEF_MAX_VICTIM_SEARCH 4096 /* covers 8GB */
  25. struct f2fs_gc_kthread {
  26. struct task_struct *f2fs_gc_task;
  27. wait_queue_head_t gc_wait_queue_head;
  28. /* for gc sleep time */
  29. unsigned int urgent_sleep_time;
  30. unsigned int min_sleep_time;
  31. unsigned int max_sleep_time;
  32. unsigned int no_gc_sleep_time;
  33. /* for changing gc mode */
  34. unsigned int gc_wake;
  35. };
  36. struct gc_inode_list {
  37. struct list_head ilist;
  38. struct radix_tree_root iroot;
  39. };
  40. /*
  41. * inline functions
  42. */
  43. static inline block_t free_user_blocks(struct f2fs_sb_info *sbi)
  44. {
  45. if (free_segments(sbi) < overprovision_segments(sbi))
  46. return 0;
  47. else
  48. return (free_segments(sbi) - overprovision_segments(sbi))
  49. << sbi->log_blocks_per_seg;
  50. }
  51. static inline block_t limit_invalid_user_blocks(struct f2fs_sb_info *sbi)
  52. {
  53. return (long)(sbi->user_block_count * LIMIT_INVALID_BLOCK) / 100;
  54. }
  55. static inline block_t limit_free_user_blocks(struct f2fs_sb_info *sbi)
  56. {
  57. block_t reclaimable_user_blocks = sbi->user_block_count -
  58. written_block_count(sbi);
  59. return (long)(reclaimable_user_blocks * LIMIT_FREE_BLOCK) / 100;
  60. }
  61. static inline void increase_sleep_time(struct f2fs_gc_kthread *gc_th,
  62. unsigned int *wait)
  63. {
  64. unsigned int min_time = gc_th->min_sleep_time;
  65. unsigned int max_time = gc_th->max_sleep_time;
  66. if (*wait == gc_th->no_gc_sleep_time)
  67. return;
  68. if ((long long)*wait + (long long)min_time > (long long)max_time)
  69. *wait = max_time;
  70. else
  71. *wait += min_time;
  72. }
  73. static inline void decrease_sleep_time(struct f2fs_gc_kthread *gc_th,
  74. unsigned int *wait)
  75. {
  76. unsigned int min_time = gc_th->min_sleep_time;
  77. if (*wait == gc_th->no_gc_sleep_time)
  78. *wait = gc_th->max_sleep_time;
  79. if ((long long)*wait - (long long)min_time < (long long)min_time)
  80. *wait = min_time;
  81. else
  82. *wait -= min_time;
  83. }
  84. static inline bool has_enough_invalid_blocks(struct f2fs_sb_info *sbi)
  85. {
  86. block_t invalid_user_blocks = sbi->user_block_count -
  87. written_block_count(sbi);
  88. /*
  89. * Background GC is triggered with the following conditions.
  90. * 1. There are a number of invalid blocks.
  91. * 2. There is not enough free space.
  92. */
  93. if (invalid_user_blocks > limit_invalid_user_blocks(sbi) &&
  94. free_user_blocks(sbi) < limit_free_user_blocks(sbi))
  95. return true;
  96. return false;
  97. }