kernel -- ffs: Soft updates locking fixes
authorVenkatesh Srinivas <me@endeavour.zapto.org>
Sun, 22 Apr 2012 03:05:06 +0000 (20:05 -0700)
committerVenkatesh Srinivas <me@endeavour.zapto.org>
Tue, 1 May 2012 05:54:41 +0000 (22:54 -0700)
commitdf0bdd59624ebea358b2f3922d0e1990d83c686c
treed14fc8253db830ee0ededfcda807a4e779666235
parent753086a7af598105c605455998d711eb58e165ea
kernel -- ffs: Soft updates locking fixes

1) Do not take mplock in bioops callbacks; the lock was no longer synchronizing
   against mainline code.

2) Do not hold softdep lock around bwillinode()

3) Take softdep lock in softdep_process_worklist bioops callback. This callback
   was previously using the mplock for synchronization (insufficiently!)

4) Modify process_worklist_item to expect the softdep lock to be held on
   entry and release it at appropriate times.

Prevents a panic seen when running fsstress on a UFS+softdep fs, where fsync
finds a null buffer on vnode trees. This arose from a front-end/back-end
race in softdep_process_worklist.
sys/vfs/ufs/ffs_softdep.c