These two functions are called from main() on all platforms, and
always return success on platforms that don't support libnl. They
still log an error message, though, which doesn't make sense - they
should just be NOPs on those platforms. (Per a suggestion during
review, I've turned the logs into debug messages rather than removing
them completely).
*/
int virNetlinkEventServiceStop(void)
{
- netlinkError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
+ VIR_DEBUG("%s", _(unsupported));
return 0;
}
*/
int virNetlinkEventServiceStart(void)
{
- netlinkError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
+ VIR_DEBUG("%s", _(unsupported));
return 0;
}