Searched refs:new_first (Results 1 - 5 of 5) sorted by relevance

/linux-master/lib/
H A Dllist.c20 * @new_first: first entry in batch to be added
26 bool llist_add_batch(struct llist_node *new_first, struct llist_node *new_last, argument
33 } while (!try_cmpxchg(&head->first, &first, new_first));
/linux-master/include/linux/
H A Dllist.h226 extern bool llist_add_batch(struct llist_node *new_first,
230 static inline bool __llist_add_batch(struct llist_node *new_first, argument
235 head->first = new_first;
H A Dlist.h457 struct list_head *new_first = entry->next; local
462 head->next = new_first;
463 new_first->prev = head;
/linux-master/tools/include/linux/
H A Dlist.h237 struct list_head *new_first = entry->next; local
242 head->next = new_first;
243 new_first->prev = head;
/linux-master/fs/ocfs2/
H A Dxattr.c4879 struct ocfs2_xattr_bucket *old_first, *new_first; local
4893 new_first = ocfs2_xattr_bucket_new(inode);
4894 if (!old_first || !new_first) {
4940 ret = ocfs2_read_xattr_bucket(new_first, to_blk);
4945 ret = ocfs2_xattr_bucket_journal_access(handle, new_first,
4956 bucket_xh(new_first)->xh_num_buckets = cpu_to_le16(num_buckets);
4957 ocfs2_xattr_bucket_journal_dirty(handle, new_first);
4960 *first_hash = le32_to_cpu(bucket_xh(new_first)->xh_entries[0].xe_name_hash);
4963 ocfs2_xattr_bucket_free(new_first);

Completed in 241 milliseconds