Lines Matching defs:head
22 * and then marks them BH_JDirty. Puts the buffer head
56 /* gets a struct reiserfs_journal_list * from a list head */
346 struct reiserfs_journal_cnode *head;
351 head = vzalloc(array_size(num_cnodes,
353 if (!head) {
356 head[0].prev = NULL;
357 head[0].next = head + 1;
359 head[i].prev = head + (i - 1);
360 head[i].next = head + (i + 1); /* if last one, overwrite it after the if */
362 head[num_cnodes - 1].next = NULL;
363 return head;
863 * valid journal head from an older transaction. If someone
1512 * taking the buffer head away
1845 struct reiserfs_journal_cnode **head;
1847 head = &(journal_hash(table, sb, block));
1848 if (!head) {
1851 cur = *head;
1862 *head = cur->hnext;