gc.h 2.9 KB

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