diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-28 14:02:03 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-28 14:02:03 -0700 |
commit | e5c465f5d957ab581bc79d3ce981281fe73021a3 (patch) | |
tree | d37f808b94d0cb46e88108d422da2c22deb721b7 /fs/ocfs2/dlm/dlmthread.c | |
parent | d0a9af809124c432297a7c4a3bcf98cbfdb4036a (diff) | |
parent | 2f5bf1f2d061dea5146aa283685ce2b00cea2f3d (diff) | |
download | linux-e5c465f5d957ab581bc79d3ce981281fe73021a3.tar.gz linux-e5c465f5d957ab581bc79d3ce981281fe73021a3.tar.bz2 linux-e5c465f5d957ab581bc79d3ce981281fe73021a3.zip |
Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2
* 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2:
ocfs2_dlm: Check for migrateable lockres in dlm_empty_lockres()
ocfs2_dlm: Fix lockres ref counting bug
Diffstat (limited to 'fs/ocfs2/dlm/dlmthread.c')
-rw-r--r-- | fs/ocfs2/dlm/dlmthread.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/fs/ocfs2/dlm/dlmthread.c b/fs/ocfs2/dlm/dlmthread.c index 6421a8fae1de..2b264c6ba039 100644 --- a/fs/ocfs2/dlm/dlmthread.c +++ b/fs/ocfs2/dlm/dlmthread.c @@ -256,20 +256,14 @@ static void dlm_run_purge_list(struct dlm_ctxt *dlm, break; } - mlog(0, "removing lockres %.*s:%p from purgelist\n", - lockres->lockname.len, lockres->lockname.name, lockres); - list_del_init(&lockres->purge); - dlm_lockres_put(lockres); - dlm->purge_count--; + dlm_lockres_get(lockres); /* This may drop and reacquire the dlm spinlock if it * has to do migration. */ - mlog(0, "calling dlm_purge_lockres!\n"); - dlm_lockres_get(lockres); if (dlm_purge_lockres(dlm, lockres)) BUG(); + dlm_lockres_put(lockres); - mlog(0, "DONE calling dlm_purge_lockres!\n"); /* Avoid adding any scheduling latencies */ cond_resched_lock(&dlm->spinlock); |