• Home
  • Raw
  • Download

Lines Matching refs:head

43 	atomic64_t		*head);
119 atomic64_t *head, in xlog_grant_sub_space() argument
122 int64_t head_val = atomic64_read(head); in xlog_grant_sub_space()
138 head_val = atomic64_cmpxchg(head, old, new); in xlog_grant_sub_space()
145 atomic64_t *head, in xlog_grant_add_space() argument
148 int64_t head_val = atomic64_read(head); in xlog_grant_add_space()
167 head_val = atomic64_cmpxchg(head, old, new); in xlog_grant_add_space()
173 struct xlog_grant_head *head) in xlog_grant_head_init() argument
175 xlog_assign_grant_head(&head->grant, 1, 0); in xlog_grant_head_init()
176 INIT_LIST_HEAD(&head->waiters); in xlog_grant_head_init()
177 spin_lock_init(&head->lock); in xlog_grant_head_init()
182 struct xlog_grant_head *head) in xlog_grant_head_wake_all() argument
186 spin_lock(&head->lock); in xlog_grant_head_wake_all()
187 list_for_each_entry(tic, &head->waiters, t_queue) in xlog_grant_head_wake_all()
189 spin_unlock(&head->lock); in xlog_grant_head_wake_all()
195 struct xlog_grant_head *head, in xlog_ticket_reservation() argument
198 if (head == &log->l_write_head) { in xlog_ticket_reservation()
212 struct xlog_grant_head *head, in xlog_grant_head_wake() argument
219 list_for_each_entry(tic, &head->waiters, t_queue) { in xlog_grant_head_wake()
242 need_bytes = xlog_ticket_reservation(log, head, tic); in xlog_grant_head_wake()
261 struct xlog_grant_head *head, in xlog_grant_head_wait() argument
263 int need_bytes) __releases(&head->lock) in xlog_grant_head_wait()
264 __acquires(&head->lock) in xlog_grant_head_wait()
266 list_add_tail(&tic->t_queue, &head->waiters); in xlog_grant_head_wait()
274 spin_unlock(&head->lock); in xlog_grant_head_wait()
282 spin_lock(&head->lock); in xlog_grant_head_wait()
285 } while (xlog_space_left(log, &head->grant) < need_bytes); in xlog_grant_head_wait()
314 struct xlog_grant_head *head, in xlog_grant_head_check() argument
329 *need_bytes = xlog_ticket_reservation(log, head, tic); in xlog_grant_head_check()
330 free_bytes = xlog_space_left(log, &head->grant); in xlog_grant_head_check()
331 if (!list_empty_careful(&head->waiters)) { in xlog_grant_head_check()
332 spin_lock(&head->lock); in xlog_grant_head_check()
333 if (!xlog_grant_head_wake(log, head, &free_bytes) || in xlog_grant_head_check()
335 error = xlog_grant_head_wait(log, head, tic, in xlog_grant_head_check()
338 spin_unlock(&head->lock); in xlog_grant_head_check()
340 spin_lock(&head->lock); in xlog_grant_head_check()
341 error = xlog_grant_head_wait(log, head, tic, *need_bytes); in xlog_grant_head_check()
342 spin_unlock(&head->lock); in xlog_grant_head_check()
1190 atomic64_t *head) in xlog_space_left() argument
1198 xlog_crack_grant_head(head, &head_cycle, &head_bytes); in xlog_space_left()
1360 xlog_rec_header_t *head; in xlog_alloc_log() local
1452 head = &iclog->ic_header; in xlog_alloc_log()
1453 memset(head, 0, sizeof(xlog_rec_header_t)); in xlog_alloc_log()
1454 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM); in xlog_alloc_log()
1455 head->h_version = cpu_to_be32( in xlog_alloc_log()
1457 head->h_size = cpu_to_be32(log->l_iclog_size); in xlog_alloc_log()
1459 head->h_fmt = cpu_to_be32(XLOG_FMT); in xlog_alloc_log()
1460 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t)); in xlog_alloc_log()
2986 xlog_rec_header_t *head; in xlog_state_get_iclog_space() local
3006 head = &iclog->ic_header; in xlog_state_get_iclog_space()
3021 head->h_cycle = cpu_to_be32(log->l_curr_cycle); in xlog_state_get_iclog_space()
3022 head->h_lsn = cpu_to_be64( in xlog_state_get_iclog_space()