Summary: | Extension setup functions not called on server resets | ||
---|---|---|---|
Product: | xorg | Reporter: | Eamon Walsh <ewalsh> |
Component: | Server/General | Assignee: | Eamon Walsh <ewalsh> |
Status: | RESOLVED FIXED | QA Contact: | |
Severity: | normal | ||
Priority: | high | ||
Version: | git | ||
Hardware: | All | ||
OS: | All | ||
Whiteboard: | |||
i915 platform: | i915 features: | ||
Bug Depends on: | |||
Bug Blocks: | 8875 |
Description
Eamon Walsh
2006-11-07 10:41:07 UTC
Patch applied: diff --git a/mi/miinitext.c b/mi/miinitext.c index f618595..cb34473 100644 --- a/mi/miinitext.c +++ b/mi/miinitext.c @@ -754,6 +754,16 @@ InitExtensions(argc, argv) /* Sort the extensions according the init dependencies. */ LoaderSortExtensions(); listInitialised = TRUE; + } else { + /* Call the setup functions on subsequent server resets as well */ + for (i = 0; ExtensionModuleList[i].name != NULL; i++) { + ext = &ExtensionModuleList[i]; + if (ext->setupFunc != NULL && + (ext->disablePtr == NULL || + (ext->disablePtr != NULL && !*ext->disablePtr))) { + (ext->setupFunc)(); + } + } } for (i = 0; ExtensionModuleList[i].name != NULL; i++) { |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.