|
Description
|
While looking at the fmtopo output on an X4440, I noticed
that the fanmodules have no FRU associated with them,
despite the fan xmlgen script specifying a fru of "self".
This is due to the fact that these nodes have no IPMI
enumerator method, so the propmethod cannot be bound.
These nodes are missing their IPMI binding due to this
line:
if ($level->{provider}) {
printf("%*s<enum-method name='ipmi' version='1' ".
"/>\n", $indent, "");
}
The '$level->{provider}' check is bogus - we should
always be post-processing these nodes.
|