filesystemsnfsext3

What is orphan list in ext3?


I've been looking at the ext3 source code to get some hints for my current work and orphan list is a term which I'm coming across very often. Please explain what is it.

I'm aware of the directory and the block map structure and wanted to study the transaction management for truncate.


Solution

  • Orphan files are files that are still open by a process, but have been deleted (hence have no link to any directory in the filesystem). Does that help?