Lines Matching full:deleted
35 * The list entries deleted via llist_del_all can be traversed with
37 * entries can not be traversed safely before deleted from the list.
38 * The order of deleted entries is from the newest to the oldest added
130 * llist_for_each - iterate over some deleted entries of a lock-less list
132 * @node: the first entry of deleted list entries
135 * safely only after being deleted from list, so start with an entry
138 * If being used on entries deleted from lock-less list directly, the
147 * llist_for_each_safe - iterate over some deleted entries of a lock-less list
151 * @node: the first entry of deleted list entries
154 * safely only after being deleted from list, so start with an entry
157 * If being used on entries deleted from lock-less list directly, the
166 * llist_for_each_entry - iterate over some deleted entries of lock-less list of given type
168 * @node: the fist entry of deleted list entries.
175 * If being used on entries deleted from lock-less list directly, the
186 * llist_for_each_entry_safe - iterate over some deleted entries of lock-less list of given type
190 * @node: the first entry of deleted list entries.
197 * If being used on entries deleted from lock-less list directly, the
262 * deleted is from the newest to the oldest added one.