Lines Matching refs:space
104 int cycle, space; in xlog_grant_sub_space() local
106 xlog_crack_grant_head_val(head_val, &cycle, &space); in xlog_grant_sub_space()
108 space -= bytes; in xlog_grant_sub_space()
109 if (space < 0) { in xlog_grant_sub_space()
110 space += log->l_logsize; in xlog_grant_sub_space()
115 new = xlog_assign_grant_head_val(cycle, space); in xlog_grant_sub_space()
131 int cycle, space; in xlog_grant_add_space() local
133 xlog_crack_grant_head_val(head_val, &cycle, &space); in xlog_grant_add_space()
135 tmp = log->l_logsize - space; in xlog_grant_add_space()
137 space += bytes; in xlog_grant_add_space()
139 space = bytes - tmp; in xlog_grant_add_space()
144 new = xlog_assign_grant_head_val(cycle, space); in xlog_grant_add_space()
3511 int cycle, space; in xlog_verify_grant_tail() local
3513 xlog_crack_grant_head(&log->l_write_head.grant, &cycle, &space); in xlog_verify_grant_tail()
3523 if (space > BBTOB(tail_blocks) && in xlog_verify_grant_tail()