See comments
This is a file system hang/deadlock problem caused by simulataneous
file system operations such as map, brk, pagefault in the presence of a
file system quiescing operation (caused by lockfs, fssnap commands etc)
The cyclic dependency is
* ufs_map() thread waits for brk() thread to be complete
* brk() thread is waiting for pagefault thread
* pagefault() thread is waiting for the file system quiesce thread
* quiesce thread is waiting for the ufs_map() thread