* Clear the info in an existing module_info entry on the list. The * module_start/end addresses are set to values that cannot match any real * memory address. The entry remains on the list, but will be ignored until it * is populated with new data. */
| 159 | * is populated with new data. |
| 160 | */ |
| 161 | static void |
| 162 | clear_module_info(struct module_info *info) |
| 163 | { |
| 164 | info->module_start = UINTPTR_MAX; |
| 165 | info->module_end = 0; |
| 166 | } |
| 167 | |
| 168 | /* |
| 169 | * Populate an existing module_info entry (which is already on the list) with |
no outgoing calls
no test coverage detected