Bug 135283
| Summary: | Symbol __VMALLOC_RESERVE will not find by a module | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Jochen Schmitt <jochen> | ||||
| Component: | kernel | Assignee: | Dave Jones <davej> | ||||
| Status: | CLOSED DUPLICATE | QA Contact: | |||||
| Severity: | high | Docs Contact: | |||||
| Priority: | medium | ||||||
| Version: | rawhide | CC: | pfrields, wtogami | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | i386 | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2006-02-21 19:06:16 UTC | Type: | --- | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
Jochen Schmitt
2004-10-11 18:41:16 UTC
Created attachment 105021 [details]
Patch for insert EXPORT_SYMBOL(__VMALLOC_RESERVE)
Please add this patch to the kernel RPM for solving the reported bug.
I highly doubt Redhat will include this patch (well.. I'm certain they won't) since the kernel developers have recently chosen to hide this symbol deliberately. The drivers that attempt to poke their noses in where they don't belong should be updated, that include the nvidia driver. In the meantime (since this should be resolved duplicate 73733)see this link and patch example for the nvidia driver itself (should work on any x86 hardware for now). http://ngc891.blogdns.net/index.php?2004/09/21/3-patched-nvidia- drivers --- nv.c.orig 2004-10-18 13:25:45.825785765 -0700 +++ nv.c 2004-10-12 20:53:33.957353480 -0700 @@ -19,6 +19,9 @@ MODULE_ALIAS_CHARDEV_MAJOR(NV_MAJOR_DEVICE_NUMBER); #endif +/* fix for 2.6.9-rc# kernels where __VMALLOC_RESERVE is not exported */ +#define __VMALLOC_RESERVE (128 << 20) + /* * our global state; one per device */ *** This bug has been marked as a duplicate of 73733 *** Changed to 'CLOSED' state since 'RESOLVED' has been deprecated. |