Lines Matching refs:space
126 int cycle, space; in xlog_grant_sub_space() local
128 xlog_crack_grant_head_val(head_val, &cycle, &space); in xlog_grant_sub_space()
130 space -= bytes; in xlog_grant_sub_space()
131 if (space < 0) { in xlog_grant_sub_space()
132 space += log->l_logsize; in xlog_grant_sub_space()
137 new = xlog_assign_grant_head_val(cycle, space); in xlog_grant_sub_space()
153 int cycle, space; in xlog_grant_add_space() local
155 xlog_crack_grant_head_val(head_val, &cycle, &space); in xlog_grant_add_space()
157 tmp = log->l_logsize - space; in xlog_grant_add_space()
159 space += bytes; in xlog_grant_add_space()
161 space = bytes - tmp; in xlog_grant_add_space()
166 new = xlog_assign_grant_head_val(cycle, space); in xlog_grant_add_space()
3771 int cycle, space; in xlog_verify_grant_tail() local
3773 xlog_crack_grant_head(&log->l_write_head.grant, &cycle, &space); in xlog_verify_grant_tail()
3783 if (space > BBTOB(tail_blocks) && in xlog_verify_grant_tail()