Question
How does a free-list method track unused disk blocks?
Select an option. Your answer will be checked instantly.
Correct Answer: B. Free blocks are linked together, with the file system storing a pointer to the list
Explanation:
A free list chains available blocks so allocation can remove blocks from the list and deallocation can return them.
Finding large contiguous runs may be less efficient than with a bitmap.
Leave a Reply