From mboxrd@z Thu Jan 1 00:00:00 1970 From: gmate.amit@gmail.com (amit mehta) Date: Sat, 18 Jun 2011 21:31:15 +0530 Subject: How to traverse the linked list of kernel modules Message-ID: To: kernelnewbies@lists.kernelnewbies.org List-Id: kernelnewbies.lists.kernelnewbies.org kernel modules are represented by the data structure(struct module) as 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 this linked list of kernel modules(modules that show up in /proc/modules), then how should i go about doing this ? Regards, amit