From mboxrd@z Thu Jan 1 00:00:00 1970 From: pshah.mumbai@gmail.com (Prashant Shah) Date: Sat, 18 Jun 2011 22:24:00 +0530 Subject: How to traverse the linked list of kernel modules In-Reply-To: References: Message-ID: To: kernelnewbies@lists.kernelnewbies.org List-Id: kernelnewbies.lists.kernelnewbies.org Hi, > defined in ~include/linux/module.h, and they seem to be connected by a doubly > circular link list. Now suppose I want to access all the elements in I think can use the standard link list functions in the kernel : list_for_each() list_for_each_entry() Regards.