提交 39dab9d7 编写于 作者: E Eric Sandeen 提交者: Lachlan McIlroy

[XFS] remove shouting-indirection macros from xfs_trans.h

SGI-PV: 981498

SGI-Modid: xfs-linux-melb:xfs-kern:31758a
Signed-off-by: NEric Sandeen <sandeen@sandeen.net>
Signed-off-by: NNiv Sardi <xaiki@sgi.com>
Signed-off-by: NLachlan McIlroy <lachlan@sgi.com>
上级 db7a2c71
...@@ -6096,7 +6096,7 @@ xfs_bmap_get_bp( ...@@ -6096,7 +6096,7 @@ xfs_bmap_get_bp(
tp = cur->bc_tp; tp = cur->bc_tp;
licp = &tp->t_items; licp = &tp->t_items;
while (!bp && licp != NULL) { while (!bp && licp != NULL) {
if (XFS_LIC_ARE_ALL_FREE(licp)) { if (xfs_lic_are_all_free(licp)) {
licp = licp->lic_next; licp = licp->lic_next;
continue; continue;
} }
...@@ -6106,11 +6106,11 @@ xfs_bmap_get_bp( ...@@ -6106,11 +6106,11 @@ xfs_bmap_get_bp(
xfs_buf_log_item_t *bip; xfs_buf_log_item_t *bip;
xfs_buf_t *lbp; xfs_buf_t *lbp;
if (XFS_LIC_ISFREE(licp, i)) { if (xfs_lic_isfree(licp, i)) {
continue; continue;
} }
lidp = XFS_LIC_SLOT(licp, i); lidp = xfs_lic_slot(licp, i);
lip = lidp->lid_item; lip = lidp->lid_item;
if (lip->li_type != XFS_LI_BUF) if (lip->li_type != XFS_LI_BUF)
continue; continue;
......
...@@ -254,7 +254,7 @@ _xfs_trans_alloc( ...@@ -254,7 +254,7 @@ _xfs_trans_alloc(
tp->t_mountp = mp; tp->t_mountp = mp;
tp->t_items_free = XFS_LIC_NUM_SLOTS; tp->t_items_free = XFS_LIC_NUM_SLOTS;
tp->t_busy_free = XFS_LBC_NUM_SLOTS; tp->t_busy_free = XFS_LBC_NUM_SLOTS;
XFS_LIC_INIT(&(tp->t_items)); xfs_lic_init(&(tp->t_items));
XFS_LBC_INIT(&(tp->t_busy)); XFS_LBC_INIT(&(tp->t_busy));
return tp; return tp;
} }
...@@ -283,7 +283,7 @@ xfs_trans_dup( ...@@ -283,7 +283,7 @@ xfs_trans_dup(
ntp->t_mountp = tp->t_mountp; ntp->t_mountp = tp->t_mountp;
ntp->t_items_free = XFS_LIC_NUM_SLOTS; ntp->t_items_free = XFS_LIC_NUM_SLOTS;
ntp->t_busy_free = XFS_LBC_NUM_SLOTS; ntp->t_busy_free = XFS_LBC_NUM_SLOTS;
XFS_LIC_INIT(&(ntp->t_items)); xfs_lic_init(&(ntp->t_items));
XFS_LBC_INIT(&(ntp->t_busy)); XFS_LBC_INIT(&(ntp->t_busy));
ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES); ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
...@@ -1170,7 +1170,7 @@ xfs_trans_cancel( ...@@ -1170,7 +1170,7 @@ xfs_trans_cancel(
while (licp != NULL) { while (licp != NULL) {
lidp = licp->lic_descs; lidp = licp->lic_descs;
for (i = 0; i < licp->lic_unused; i++, lidp++) { for (i = 0; i < licp->lic_unused; i++, lidp++) {
if (XFS_LIC_ISFREE(licp, i)) { if (xfs_lic_isfree(licp, i)) {
continue; continue;
} }
...@@ -1316,7 +1316,7 @@ xfs_trans_committed( ...@@ -1316,7 +1316,7 @@ xfs_trans_committed(
* Special case the chunk embedded in the transaction. * Special case the chunk embedded in the transaction.
*/ */
licp = &(tp->t_items); licp = &(tp->t_items);
if (!(XFS_LIC_ARE_ALL_FREE(licp))) { if (!(xfs_lic_are_all_free(licp))) {
xfs_trans_chunk_committed(licp, tp->t_lsn, abortflag); xfs_trans_chunk_committed(licp, tp->t_lsn, abortflag);
} }
...@@ -1325,7 +1325,7 @@ xfs_trans_committed( ...@@ -1325,7 +1325,7 @@ xfs_trans_committed(
*/ */
licp = licp->lic_next; licp = licp->lic_next;
while (licp != NULL) { while (licp != NULL) {
ASSERT(!XFS_LIC_ARE_ALL_FREE(licp)); ASSERT(!xfs_lic_are_all_free(licp));
xfs_trans_chunk_committed(licp, tp->t_lsn, abortflag); xfs_trans_chunk_committed(licp, tp->t_lsn, abortflag);
next_licp = licp->lic_next; next_licp = licp->lic_next;
kmem_free(licp); kmem_free(licp);
...@@ -1388,7 +1388,7 @@ xfs_trans_chunk_committed( ...@@ -1388,7 +1388,7 @@ xfs_trans_chunk_committed(
lidp = licp->lic_descs; lidp = licp->lic_descs;
for (i = 0; i < licp->lic_unused; i++, lidp++) { for (i = 0; i < licp->lic_unused; i++, lidp++) {
if (XFS_LIC_ISFREE(licp, i)) { if (xfs_lic_isfree(licp, i)) {
continue; continue;
} }
......
...@@ -210,62 +210,52 @@ typedef struct xfs_log_item_chunk { ...@@ -210,62 +210,52 @@ typedef struct xfs_log_item_chunk {
* lic_unused to the right value (0 matches all free). The * lic_unused to the right value (0 matches all free). The
* lic_descs.lid_index values are set up as each desc is allocated. * lic_descs.lid_index values are set up as each desc is allocated.
*/ */
#define XFS_LIC_INIT(cp) xfs_lic_init(cp)
static inline void xfs_lic_init(xfs_log_item_chunk_t *cp) static inline void xfs_lic_init(xfs_log_item_chunk_t *cp)
{ {
cp->lic_free = XFS_LIC_FREEMASK; cp->lic_free = XFS_LIC_FREEMASK;
} }
#define XFS_LIC_INIT_SLOT(cp,slot) xfs_lic_init_slot(cp, slot)
static inline void xfs_lic_init_slot(xfs_log_item_chunk_t *cp, int slot) static inline void xfs_lic_init_slot(xfs_log_item_chunk_t *cp, int slot)
{ {
cp->lic_descs[slot].lid_index = (unsigned char)(slot); cp->lic_descs[slot].lid_index = (unsigned char)(slot);
} }
#define XFS_LIC_VACANCY(cp) xfs_lic_vacancy(cp)
static inline int xfs_lic_vacancy(xfs_log_item_chunk_t *cp) static inline int xfs_lic_vacancy(xfs_log_item_chunk_t *cp)
{ {
return cp->lic_free & XFS_LIC_FREEMASK; return cp->lic_free & XFS_LIC_FREEMASK;
} }
#define XFS_LIC_ALL_FREE(cp) xfs_lic_all_free(cp)
static inline void xfs_lic_all_free(xfs_log_item_chunk_t *cp) static inline void xfs_lic_all_free(xfs_log_item_chunk_t *cp)
{ {
cp->lic_free = XFS_LIC_FREEMASK; cp->lic_free = XFS_LIC_FREEMASK;
} }
#define XFS_LIC_ARE_ALL_FREE(cp) xfs_lic_are_all_free(cp)
static inline int xfs_lic_are_all_free(xfs_log_item_chunk_t *cp) static inline int xfs_lic_are_all_free(xfs_log_item_chunk_t *cp)
{ {
return ((cp->lic_free & XFS_LIC_FREEMASK) == XFS_LIC_FREEMASK); return ((cp->lic_free & XFS_LIC_FREEMASK) == XFS_LIC_FREEMASK);
} }
#define XFS_LIC_ISFREE(cp,slot) xfs_lic_isfree(cp,slot)
static inline int xfs_lic_isfree(xfs_log_item_chunk_t *cp, int slot) static inline int xfs_lic_isfree(xfs_log_item_chunk_t *cp, int slot)
{ {
return (cp->lic_free & (1 << slot)); return (cp->lic_free & (1 << slot));
} }
#define XFS_LIC_CLAIM(cp,slot) xfs_lic_claim(cp,slot)
static inline void xfs_lic_claim(xfs_log_item_chunk_t *cp, int slot) static inline void xfs_lic_claim(xfs_log_item_chunk_t *cp, int slot)
{ {
cp->lic_free &= ~(1 << slot); cp->lic_free &= ~(1 << slot);
} }
#define XFS_LIC_RELSE(cp,slot) xfs_lic_relse(cp,slot)
static inline void xfs_lic_relse(xfs_log_item_chunk_t *cp, int slot) static inline void xfs_lic_relse(xfs_log_item_chunk_t *cp, int slot)
{ {
cp->lic_free |= 1 << slot; cp->lic_free |= 1 << slot;
} }
#define XFS_LIC_SLOT(cp,slot) xfs_lic_slot(cp,slot)
static inline xfs_log_item_desc_t * static inline xfs_log_item_desc_t *
xfs_lic_slot(xfs_log_item_chunk_t *cp, int slot) xfs_lic_slot(xfs_log_item_chunk_t *cp, int slot)
{ {
return &(cp->lic_descs[slot]); return &(cp->lic_descs[slot]);
} }
#define XFS_LIC_DESC_TO_SLOT(dp) xfs_lic_desc_to_slot(dp)
static inline int xfs_lic_desc_to_slot(xfs_log_item_desc_t *dp) static inline int xfs_lic_desc_to_slot(xfs_log_item_desc_t *dp)
{ {
return (uint)dp->lid_index; return (uint)dp->lid_index;
...@@ -278,7 +268,6 @@ static inline int xfs_lic_desc_to_slot(xfs_log_item_desc_t *dp) ...@@ -278,7 +268,6 @@ static inline int xfs_lic_desc_to_slot(xfs_log_item_desc_t *dp)
* All of this yields the address of the chunk, which is * All of this yields the address of the chunk, which is
* cast to a chunk pointer. * cast to a chunk pointer.
*/ */
#define XFS_LIC_DESC_TO_CHUNK(dp) xfs_lic_desc_to_chunk(dp)
static inline xfs_log_item_chunk_t * static inline xfs_log_item_chunk_t *
xfs_lic_desc_to_chunk(xfs_log_item_desc_t *dp) xfs_lic_desc_to_chunk(xfs_log_item_desc_t *dp)
{ {
......
...@@ -1021,16 +1021,16 @@ xfs_trans_buf_item_match( ...@@ -1021,16 +1021,16 @@ xfs_trans_buf_item_match(
bp = NULL; bp = NULL;
len = BBTOB(len); len = BBTOB(len);
licp = &tp->t_items; licp = &tp->t_items;
if (!XFS_LIC_ARE_ALL_FREE(licp)) { if (!xfs_lic_are_all_free(licp)) {
for (i = 0; i < licp->lic_unused; i++) { for (i = 0; i < licp->lic_unused; i++) {
/* /*
* Skip unoccupied slots. * Skip unoccupied slots.
*/ */
if (XFS_LIC_ISFREE(licp, i)) { if (xfs_lic_isfree(licp, i)) {
continue; continue;
} }
lidp = XFS_LIC_SLOT(licp, i); lidp = xfs_lic_slot(licp, i);
blip = (xfs_buf_log_item_t *)lidp->lid_item; blip = (xfs_buf_log_item_t *)lidp->lid_item;
if (blip->bli_item.li_type != XFS_LI_BUF) { if (blip->bli_item.li_type != XFS_LI_BUF) {
continue; continue;
...@@ -1074,7 +1074,7 @@ xfs_trans_buf_item_match_all( ...@@ -1074,7 +1074,7 @@ xfs_trans_buf_item_match_all(
bp = NULL; bp = NULL;
len = BBTOB(len); len = BBTOB(len);
for (licp = &tp->t_items; licp != NULL; licp = licp->lic_next) { for (licp = &tp->t_items; licp != NULL; licp = licp->lic_next) {
if (XFS_LIC_ARE_ALL_FREE(licp)) { if (xfs_lic_are_all_free(licp)) {
ASSERT(licp == &tp->t_items); ASSERT(licp == &tp->t_items);
ASSERT(licp->lic_next == NULL); ASSERT(licp->lic_next == NULL);
return NULL; return NULL;
...@@ -1083,11 +1083,11 @@ xfs_trans_buf_item_match_all( ...@@ -1083,11 +1083,11 @@ xfs_trans_buf_item_match_all(
/* /*
* Skip unoccupied slots. * Skip unoccupied slots.
*/ */
if (XFS_LIC_ISFREE(licp, i)) { if (xfs_lic_isfree(licp, i)) {
continue; continue;
} }
lidp = XFS_LIC_SLOT(licp, i); lidp = xfs_lic_slot(licp, i);
blip = (xfs_buf_log_item_t *)lidp->lid_item; blip = (xfs_buf_log_item_t *)lidp->lid_item;
if (blip->bli_item.li_type != XFS_LI_BUF) { if (blip->bli_item.li_type != XFS_LI_BUF) {
continue; continue;
......
...@@ -53,11 +53,11 @@ xfs_trans_add_item(xfs_trans_t *tp, xfs_log_item_t *lip) ...@@ -53,11 +53,11 @@ xfs_trans_add_item(xfs_trans_t *tp, xfs_log_item_t *lip)
* Initialize the chunk, and then * Initialize the chunk, and then
* claim the first slot in the newly allocated chunk. * claim the first slot in the newly allocated chunk.
*/ */
XFS_LIC_INIT(licp); xfs_lic_init(licp);
XFS_LIC_CLAIM(licp, 0); xfs_lic_claim(licp, 0);
licp->lic_unused = 1; licp->lic_unused = 1;
XFS_LIC_INIT_SLOT(licp, 0); xfs_lic_init_slot(licp, 0);
lidp = XFS_LIC_SLOT(licp, 0); lidp = xfs_lic_slot(licp, 0);
/* /*
* Link in the new chunk and update the free count. * Link in the new chunk and update the free count.
...@@ -88,14 +88,14 @@ xfs_trans_add_item(xfs_trans_t *tp, xfs_log_item_t *lip) ...@@ -88,14 +88,14 @@ xfs_trans_add_item(xfs_trans_t *tp, xfs_log_item_t *lip)
*/ */
licp = &tp->t_items; licp = &tp->t_items;
while (licp != NULL) { while (licp != NULL) {
if (XFS_LIC_VACANCY(licp)) { if (xfs_lic_vacancy(licp)) {
if (licp->lic_unused <= XFS_LIC_MAX_SLOT) { if (licp->lic_unused <= XFS_LIC_MAX_SLOT) {
i = licp->lic_unused; i = licp->lic_unused;
ASSERT(XFS_LIC_ISFREE(licp, i)); ASSERT(xfs_lic_isfree(licp, i));
break; break;
} }
for (i = 0; i <= XFS_LIC_MAX_SLOT; i++) { for (i = 0; i <= XFS_LIC_MAX_SLOT; i++) {
if (XFS_LIC_ISFREE(licp, i)) if (xfs_lic_isfree(licp, i))
break; break;
} }
ASSERT(i <= XFS_LIC_MAX_SLOT); ASSERT(i <= XFS_LIC_MAX_SLOT);
...@@ -108,12 +108,12 @@ xfs_trans_add_item(xfs_trans_t *tp, xfs_log_item_t *lip) ...@@ -108,12 +108,12 @@ xfs_trans_add_item(xfs_trans_t *tp, xfs_log_item_t *lip)
* If we find a free descriptor, claim it, * If we find a free descriptor, claim it,
* initialize it, and return it. * initialize it, and return it.
*/ */
XFS_LIC_CLAIM(licp, i); xfs_lic_claim(licp, i);
if (licp->lic_unused <= i) { if (licp->lic_unused <= i) {
licp->lic_unused = i + 1; licp->lic_unused = i + 1;
XFS_LIC_INIT_SLOT(licp, i); xfs_lic_init_slot(licp, i);
} }
lidp = XFS_LIC_SLOT(licp, i); lidp = xfs_lic_slot(licp, i);
tp->t_items_free--; tp->t_items_free--;
lidp->lid_item = lip; lidp->lid_item = lip;
lidp->lid_flags = 0; lidp->lid_flags = 0;
...@@ -136,9 +136,9 @@ xfs_trans_free_item(xfs_trans_t *tp, xfs_log_item_desc_t *lidp) ...@@ -136,9 +136,9 @@ xfs_trans_free_item(xfs_trans_t *tp, xfs_log_item_desc_t *lidp)
xfs_log_item_chunk_t *licp; xfs_log_item_chunk_t *licp;
xfs_log_item_chunk_t **licpp; xfs_log_item_chunk_t **licpp;
slot = XFS_LIC_DESC_TO_SLOT(lidp); slot = xfs_lic_desc_to_slot(lidp);
licp = XFS_LIC_DESC_TO_CHUNK(lidp); licp = xfs_lic_desc_to_chunk(lidp);
XFS_LIC_RELSE(licp, slot); xfs_lic_relse(licp, slot);
lidp->lid_item->li_desc = NULL; lidp->lid_item->li_desc = NULL;
tp->t_items_free++; tp->t_items_free++;
...@@ -154,7 +154,7 @@ xfs_trans_free_item(xfs_trans_t *tp, xfs_log_item_desc_t *lidp) ...@@ -154,7 +154,7 @@ xfs_trans_free_item(xfs_trans_t *tp, xfs_log_item_desc_t *lidp)
* Also decrement the transaction structure's count of free items * Also decrement the transaction structure's count of free items
* by the number in a chunk since we are freeing an empty chunk. * by the number in a chunk since we are freeing an empty chunk.
*/ */
if (XFS_LIC_ARE_ALL_FREE(licp) && (licp != &(tp->t_items))) { if (xfs_lic_are_all_free(licp) && (licp != &(tp->t_items))) {
licpp = &(tp->t_items.lic_next); licpp = &(tp->t_items.lic_next);
while (*licpp != licp) { while (*licpp != licp) {
ASSERT(*licpp != NULL); ASSERT(*licpp != NULL);
...@@ -207,20 +207,20 @@ xfs_trans_first_item(xfs_trans_t *tp) ...@@ -207,20 +207,20 @@ xfs_trans_first_item(xfs_trans_t *tp)
/* /*
* If it's not in the first chunk, skip to the second. * If it's not in the first chunk, skip to the second.
*/ */
if (XFS_LIC_ARE_ALL_FREE(licp)) { if (xfs_lic_are_all_free(licp)) {
licp = licp->lic_next; licp = licp->lic_next;
} }
/* /*
* Return the first non-free descriptor in the chunk. * Return the first non-free descriptor in the chunk.
*/ */
ASSERT(!XFS_LIC_ARE_ALL_FREE(licp)); ASSERT(!xfs_lic_are_all_free(licp));
for (i = 0; i < licp->lic_unused; i++) { for (i = 0; i < licp->lic_unused; i++) {
if (XFS_LIC_ISFREE(licp, i)) { if (xfs_lic_isfree(licp, i)) {
continue; continue;
} }
return XFS_LIC_SLOT(licp, i); return xfs_lic_slot(licp, i);
} }
cmn_err(CE_WARN, "xfs_trans_first_item() -- no first item"); cmn_err(CE_WARN, "xfs_trans_first_item() -- no first item");
return NULL; return NULL;
...@@ -242,18 +242,18 @@ xfs_trans_next_item(xfs_trans_t *tp, xfs_log_item_desc_t *lidp) ...@@ -242,18 +242,18 @@ xfs_trans_next_item(xfs_trans_t *tp, xfs_log_item_desc_t *lidp)
xfs_log_item_chunk_t *licp; xfs_log_item_chunk_t *licp;
int i; int i;
licp = XFS_LIC_DESC_TO_CHUNK(lidp); licp = xfs_lic_desc_to_chunk(lidp);
/* /*
* First search the rest of the chunk. The for loop keeps us * First search the rest of the chunk. The for loop keeps us
* from referencing things beyond the end of the chunk. * from referencing things beyond the end of the chunk.
*/ */
for (i = (int)XFS_LIC_DESC_TO_SLOT(lidp) + 1; i < licp->lic_unused; i++) { for (i = (int)xfs_lic_desc_to_slot(lidp) + 1; i < licp->lic_unused; i++) {
if (XFS_LIC_ISFREE(licp, i)) { if (xfs_lic_isfree(licp, i)) {
continue; continue;
} }
return XFS_LIC_SLOT(licp, i); return xfs_lic_slot(licp, i);
} }
/* /*
...@@ -266,13 +266,13 @@ xfs_trans_next_item(xfs_trans_t *tp, xfs_log_item_desc_t *lidp) ...@@ -266,13 +266,13 @@ xfs_trans_next_item(xfs_trans_t *tp, xfs_log_item_desc_t *lidp)
} }
licp = licp->lic_next; licp = licp->lic_next;
ASSERT(!XFS_LIC_ARE_ALL_FREE(licp)); ASSERT(!xfs_lic_are_all_free(licp));
for (i = 0; i < licp->lic_unused; i++) { for (i = 0; i < licp->lic_unused; i++) {
if (XFS_LIC_ISFREE(licp, i)) { if (xfs_lic_isfree(licp, i)) {
continue; continue;
} }
return XFS_LIC_SLOT(licp, i); return xfs_lic_slot(licp, i);
} }
ASSERT(0); ASSERT(0);
/* NOTREACHED */ /* NOTREACHED */
...@@ -300,9 +300,9 @@ xfs_trans_free_items( ...@@ -300,9 +300,9 @@ xfs_trans_free_items(
/* /*
* Special case the embedded chunk so we don't free it below. * Special case the embedded chunk so we don't free it below.
*/ */
if (!XFS_LIC_ARE_ALL_FREE(licp)) { if (!xfs_lic_are_all_free(licp)) {
(void) xfs_trans_unlock_chunk(licp, 1, abort, NULLCOMMITLSN); (void) xfs_trans_unlock_chunk(licp, 1, abort, NULLCOMMITLSN);
XFS_LIC_ALL_FREE(licp); xfs_lic_all_free(licp);
licp->lic_unused = 0; licp->lic_unused = 0;
} }
licp = licp->lic_next; licp = licp->lic_next;
...@@ -311,7 +311,7 @@ xfs_trans_free_items( ...@@ -311,7 +311,7 @@ xfs_trans_free_items(
* Unlock each item in each chunk and free the chunks. * Unlock each item in each chunk and free the chunks.
*/ */
while (licp != NULL) { while (licp != NULL) {
ASSERT(!XFS_LIC_ARE_ALL_FREE(licp)); ASSERT(!xfs_lic_are_all_free(licp));
(void) xfs_trans_unlock_chunk(licp, 1, abort, NULLCOMMITLSN); (void) xfs_trans_unlock_chunk(licp, 1, abort, NULLCOMMITLSN);
next_licp = licp->lic_next; next_licp = licp->lic_next;
kmem_free(licp); kmem_free(licp);
...@@ -347,7 +347,7 @@ xfs_trans_unlock_items(xfs_trans_t *tp, xfs_lsn_t commit_lsn) ...@@ -347,7 +347,7 @@ xfs_trans_unlock_items(xfs_trans_t *tp, xfs_lsn_t commit_lsn)
/* /*
* Special case the embedded chunk so we don't free. * Special case the embedded chunk so we don't free.
*/ */
if (!XFS_LIC_ARE_ALL_FREE(licp)) { if (!xfs_lic_are_all_free(licp)) {
freed = xfs_trans_unlock_chunk(licp, 0, 0, commit_lsn); freed = xfs_trans_unlock_chunk(licp, 0, 0, commit_lsn);
} }
licpp = &(tp->t_items.lic_next); licpp = &(tp->t_items.lic_next);
...@@ -358,10 +358,10 @@ xfs_trans_unlock_items(xfs_trans_t *tp, xfs_lsn_t commit_lsn) ...@@ -358,10 +358,10 @@ xfs_trans_unlock_items(xfs_trans_t *tp, xfs_lsn_t commit_lsn)
* and free empty chunks. * and free empty chunks.
*/ */
while (licp != NULL) { while (licp != NULL) {
ASSERT(!XFS_LIC_ARE_ALL_FREE(licp)); ASSERT(!xfs_lic_are_all_free(licp));
freed += xfs_trans_unlock_chunk(licp, 0, 0, commit_lsn); freed += xfs_trans_unlock_chunk(licp, 0, 0, commit_lsn);
next_licp = licp->lic_next; next_licp = licp->lic_next;
if (XFS_LIC_ARE_ALL_FREE(licp)) { if (xfs_lic_are_all_free(licp)) {
*licpp = next_licp; *licpp = next_licp;
kmem_free(licp); kmem_free(licp);
freed -= XFS_LIC_NUM_SLOTS; freed -= XFS_LIC_NUM_SLOTS;
...@@ -402,7 +402,7 @@ xfs_trans_unlock_chunk( ...@@ -402,7 +402,7 @@ xfs_trans_unlock_chunk(
freed = 0; freed = 0;
lidp = licp->lic_descs; lidp = licp->lic_descs;
for (i = 0; i < licp->lic_unused; i++, lidp++) { for (i = 0; i < licp->lic_unused; i++, lidp++) {
if (XFS_LIC_ISFREE(licp, i)) { if (xfs_lic_isfree(licp, i)) {
continue; continue;
} }
lip = lidp->lid_item; lip = lidp->lid_item;
...@@ -421,7 +421,7 @@ xfs_trans_unlock_chunk( ...@@ -421,7 +421,7 @@ xfs_trans_unlock_chunk(
*/ */
if (!(freeing_chunk) && if (!(freeing_chunk) &&
(!(lidp->lid_flags & XFS_LID_DIRTY) || abort)) { (!(lidp->lid_flags & XFS_LID_DIRTY) || abort)) {
XFS_LIC_RELSE(licp, i); xfs_lic_relse(licp, i);
freed++; freed++;
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册