Skip to content

Commit

Permalink
[XFS] Unwrap pagb_lock.
Browse files Browse the repository at this point in the history
Un-obfuscate pagb_lock, remove mutex_lock->spin_lock macros, call
spin_lock directly, remove extraneous cookie holdover from old xfs code,
and change lock type to spinlock_t.

SGI-PV: 970382
SGI-Modid: xfs-linux-melb:xfs-kern:29743a

Signed-off-by: Eric Sandeen <[email protected]>
Signed-off-by: Donald Douwsma <[email protected]>
Signed-off-by: Tim Shimmin <[email protected]>
  • Loading branch information
sandeen authored and Lachlan McIlroy committed Feb 7, 2008
1 parent 869b906 commit 64137e5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion fs/xfs/xfs_ag.h
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ typedef struct xfs_perag
xfs_agino_t pagi_count; /* number of allocated inodes */
int pagb_count; /* pagb slots in use */
#ifdef __KERNEL__
lock_t pagb_lock; /* lock for pagb_list */
spinlock_t pagb_lock; /* lock for pagb_list */
#endif
xfs_perag_busy_t *pagb_list; /* unstable blocks */
atomic_t pagf_fstrms; /* # of filestreams active in this AG */
Expand Down
17 changes: 7 additions & 10 deletions fs/xfs/xfs_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2500,10 +2500,9 @@ xfs_alloc_mark_busy(xfs_trans_t *tp,
xfs_mount_t *mp;
xfs_perag_busy_t *bsy;
int n;
SPLDECL(s);

mp = tp->t_mountp;
s = mutex_spinlock(&mp->m_perag[agno].pagb_lock);
spin_lock(&mp->m_perag[agno].pagb_lock);

/* search pagb_list for an open slot */
for (bsy = mp->m_perag[agno].pagb_list, n = 0;
Expand Down Expand Up @@ -2533,7 +2532,7 @@ xfs_alloc_mark_busy(xfs_trans_t *tp,
xfs_trans_set_sync(tp);
}

mutex_spinunlock(&mp->m_perag[agno].pagb_lock, s);
spin_unlock(&mp->m_perag[agno].pagb_lock);
}

void
Expand All @@ -2543,11 +2542,10 @@ xfs_alloc_clear_busy(xfs_trans_t *tp,
{
xfs_mount_t *mp;
xfs_perag_busy_t *list;
SPLDECL(s);

mp = tp->t_mountp;

s = mutex_spinlock(&mp->m_perag[agno].pagb_lock);
spin_lock(&mp->m_perag[agno].pagb_lock);
list = mp->m_perag[agno].pagb_list;

ASSERT(idx < XFS_PAGB_NUM_SLOTS);
Expand All @@ -2559,7 +2557,7 @@ xfs_alloc_clear_busy(xfs_trans_t *tp,
TRACE_UNBUSY("xfs_alloc_clear_busy", "missing", agno, idx, tp);
}

mutex_spinunlock(&mp->m_perag[agno].pagb_lock, s);
spin_unlock(&mp->m_perag[agno].pagb_lock);
}


Expand All @@ -2578,11 +2576,10 @@ xfs_alloc_search_busy(xfs_trans_t *tp,
xfs_agblock_t uend, bend;
xfs_lsn_t lsn;
int cnt;
SPLDECL(s);

mp = tp->t_mountp;

s = mutex_spinlock(&mp->m_perag[agno].pagb_lock);
spin_lock(&mp->m_perag[agno].pagb_lock);
cnt = mp->m_perag[agno].pagb_count;

uend = bno + len - 1;
Expand Down Expand Up @@ -2615,12 +2612,12 @@ xfs_alloc_search_busy(xfs_trans_t *tp,
if (cnt) {
TRACE_BUSYSEARCH("xfs_alloc_search_busy", "found", agno, bno, len, n, tp);
lsn = bsy->busy_tp->t_commit_lsn;
mutex_spinunlock(&mp->m_perag[agno].pagb_lock, s);
spin_unlock(&mp->m_perag[agno].pagb_lock);
xfs_log_force(mp, lsn, XFS_LOG_FORCE|XFS_LOG_SYNC);
} else {
TRACE_BUSYSEARCH("xfs_alloc_search_busy", "not-found", agno, bno, len, n, tp);
n = -1;
mutex_spinunlock(&mp->m_perag[agno].pagb_lock, s);
spin_unlock(&mp->m_perag[agno].pagb_lock);
}

return n;
Expand Down

0 comments on commit 64137e5

Please sign in to comment.