cregit-Linux how code gets into the kernel

Release 4.14 tools/firewire/list.h

Directory: tools/firewire
/* SPDX-License-Identifier: GPL-2.0 */

struct list {
	

struct list *next, *prev;
};


static inline void list_init(struct list *list) { list->next = list; list->prev = list; }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Richter24100.00%1100.00%
Total24100.00%1100.00%


static inline int list_empty(struct list *list) { return list->next == list; }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Richter19100.00%1100.00%
Total19100.00%1100.00%


static inline void list_insert(struct list *link, struct list *new_link) { new_link->prev = link->prev; new_link->next = link; new_link->prev->next = new_link; new_link->next->prev = new_link; }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Richter47100.00%1100.00%
Total47100.00%1100.00%


static inline void list_append(struct list *list, struct list *new_link) { list_insert((struct list *)list, new_link); }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Richter29100.00%1100.00%
Total29100.00%1100.00%


static inline void list_prepend(struct list *list, struct list *new_link) { list_insert(list->next, new_link); }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Richter26100.00%1100.00%
Total26100.00%1100.00%


static inline void list_remove(struct list *link) { link->prev->next = link->next; link->next->prev = link->prev; }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Richter32100.00%1100.00%
Total32100.00%1100.00%

#define list_entry(link, type, member) \ ((type *)((char *)(link)-(unsigned long)(&((type *)0)->member))) #define list_head(list, type, member) \ list_entry((list)->next, type, member) #define list_tail(list, type, member) \ list_entry((list)->prev, type, member) #define list_next(elm, member) \ list_entry((elm)->member.next, typeof(*elm), member) #define list_for_each_entry(pos, list, member) \ for (pos = list_head(list, typeof(*pos), member); \ &pos->member != (list); \ pos = list_next(pos, member))

Overall Contributors

PersonTokensPropCommitsCommitProp
Stefan Richter24899.60%150.00%
Greg Kroah-Hartman10.40%150.00%
Total249100.00%2100.00%
Directory: tools/firewire
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.