recategorized by
684 views
4 votes
4 votes
Free disk space can be kept track of using a free list or a bitmap. Disk addresses require $\text{D bits}$. For a disk with $\text{B blocks}$ and $\text{D}$ having the value $\text{32 bits},$ the percentage of the disk space that must be free for free list to use same memory as bitmap will be _________ (up to three decimal place).
recategorized by

2 Answers

Best answer
5 votes
5 votes
Let block size be $k$ and $F$ be the number of free blocks.

Free list size $=F*D*k$ bits

Bitmap size $=B*k$ bits

So, we require $F*D*k = B*k \implies F *D=B.$

When $D=32$ bits,

$\implies F/B = 1/32 = 3.125\%.$
selected by
Answer:

Related questions

6 votes
6 votes
2 answers
1
gatecse asked Jan 26, 2021
602 views
Consider a secondary storage system of size $\text{8 TB},$ with $\text{2048-byte}$ sized blocks. Assume that the file system uses a multilevel inode data structure to tra...