Bug 169363
Summary: | Unable to handle kernel NULL pointer dereference at virtual address 0000000c | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 4 | Reporter: | Need Real Name <ltsai> |
Component: | kernel | Assignee: | Stephen Tweedie <sct> |
Status: | CLOSED CANTFIX | QA Contact: | Brian Brock <bbrock> |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 4.0 | CC: | davej, jbaron |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | i686 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2005-09-28 11:06:33 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: |
Description
Need Real Name
2005-09-27 14:55:51 UTC
The oops is coming from the rbtree code, in rb_insert_color(): void rb_insert_color(struct rb_node *node, struct rb_root *root) { struct rb_node *parent, *gparent; while ((parent = node->rb_parent) && parent->rb_color == RB_RED) { gparent = parent->rb_parent; if (parent == gparent->rb_left) and "gparent" is NULL. This is a corruption in the core rbtree data structure; it's not obviously ext3's fault, as the rbtree code is entirely independent of ext3. This could be bad hardware; it could be some other kernel code stomping on the memory; or a genuine bug; but I've not seen such a bug reported before, nor has there been any change recently in upstream kernels in this area. To diagnose this further will need support help; there isn't enough information here to start any sort of engineering fix. For official Red Hat Enterprise Linux support, please log into the Red Hat support website at http://www.redhat.com/support and file a support ticket, or alternatively contact Red Hat Global Support Services at 1-888-RED-HAT1 to speak directly with a support associate and escalate an issue. |