Tutorial Week 9

Questions


Q1: Consider a file currently consisting of 100 records of 400 bytes. The filesystem uses fixed blocking, i.e. one 400 byte record is stored per 512 byte block. Assume that the file control block (and the index block, in the case of indexed allocation) is already in memory. Calculate how many disk I/O operations are required for contiguous, linked, and indexed (single-level) allocation strategies, if, for one record, the following conditions hold. In the contiguous-allocation case, assume that there is no room to grow at the beginning, but there is room to grow at the end of the file. Assume that the record information to be added is stored in memory.

  1. The record is added at the beginning.
  2. The record is added in the middle.
  3. The record is added at the end.
  4. The record is removed from the beginning.
  5. The record is removed from the middle.
  6. The record is removed from the end.


Q2: Old versions of UNIX allowed you to write to directories. Newer ones do not even allow the superuser to write to them? Why? Note that many unices allow you read directories.


Q3: What persmissions would you have on the following files:

om:[/tmp]% ls -ld t* .
drwxrwxrwt    6 root     root         4096 May 21 12:19 .
-rw-rw----    1 nash     stud          216 May 18 18:59 t1
-rw--w----    1 nash     stud          260 May 18 18:59 t2
-rw-------    1 nash     stud          458 May 18 18:59 t3
-rwsrwsr-x    1 nash     stud          138 May 21 12:19 t4
-rwsrwxr-x    1 nash     stud          285 May 21 12:19 t5


Q4: Why is there VFS Layer in Unix?


Q5: Assume you have an inode-based filesystem. The filesystem has 512 byte blocks. Each inode has 10 direct, 1 single indirect, 1 double indirect, and 1 triple indirect block pointer. Block pointers are 4 bytes each. Assume the inode and any block free list is always in memory. Blocks are not cached.

  1. What is the maximum file size that can be stored before
    1. the single indirect pointer is needed?
    2. the double indirect pointer is needed?
    3. the triple indirect pointer is needed?
  2. What is the maximum file size supported?
  3. What is the number of disk block reads required to read 1 byte from a file
    1. in the best case?
    2. in the worst case?
  4. What is the number of disk block reads and writes required to write 1 byte to a file
    1. in the best case?
    2. in the worst case?


Q6: How does choice of block size affect file system performance. You should consider both sequential and random access.


Q7: A typical UNIX inode stores both the file's size and the number of blocks currently used to store the file. Why store both? Should not blocks = size / block size?


Q8: Why does Linux pre-allocate up to 8 blocks on a write to a file.


Q9: Why does Linux divide a partition up into smaller block groups?


Q10: Linux uses a buffer cache to improve performance. What is the drawback of such a cache? In what scenario is it problematic? What alternative would be more appropriate where a buffer cache is inappropriate?