EtherK EKFlowControl can't be configured
Jon Abbott (1421) 2651 posts |
“*Configure EKFlowControl 0 None” should work, instead it reports a syntax error. Looking at the EtherK module source for ek_cli_flow(), it doesn’t skip past the first argument correctly: e = parse_unit_num(&arg_string, &unit); while (*arg_string == ’ ’) Should it not be using OS_SubstituteArgs as all the other config. parameters use to skip the unit no? |
Sprow (202) 1158 posts |
Turns out it does, because parse_unit_num() updates arg_string by virtue of using OS_ReadUnsigned. However, the main problem is assuming that the parameter string is null terminated – of course it’s not it’s either space or CR terminated, and strcmp() doesn’t match on that. Fixed in EtherK 0.25. |
Jon Abbott (1421) 2651 posts |
Thanks for fixing that, I’ll grab the build and give it a go. |