Displaying 1 result from an estimated 1 matches for "xt_find_revision".
2007 Apr 28
0
[Bug 563] New: iptables fails when modules are unable to load
...uch file or directory
There was nothing printed in the logs after the failure. After some
investigation, I found that when ip_tables tries to load modules, we are
returned -ENOENT when the module can't be loaded (from try_then_request_module).
try_then_request_module tries to call the symbol xt_find_revision to satisfy
this request. Unfortunately, the symbol isn't available, so it tries to load
the module that contains it. If you haven't compiled the module it's
requesting, you'll get -2 (-ENOENT) back, which is causing the error above.
I think it would be appropriate to check for -E...