Bug 119251
Summary: | kernel 4.6.0 fixes igmp_max_memberships to 0 | ||
---|---|---|---|
Product: | Networking | Reporter: | C.BALETAUD (cyril.baletaud) |
Component: | IPV4 | Assignee: | Stephen Hemminger (stephen) |
Status: | RESOLVED INVALID | ||
Severity: | normal | CC: | bastienphilbert |
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | 4.6.0 | Subsystem: | |
Regression: | Yes | Bisected commit-id: |
Description
C.BALETAUD
2016-05-30 14:07:43 UTC
So stated previous kernel, if you known it's a mainline kernel that was originally being used then you can try using git to offend the bad commit introduced. on http://kernelnewbies.org/Linux_4.6 IGMP: Add namespaces support for the following sysctls: igmp_llm_reports commit, igmp_max_memberships commit, igmp_max_msf commit, igmp_qrv commit is there something to change in configuration to have igmp multicast works again ? That's new features, not bug fixes. It seems to me that your jumping to the conclusion that the new features broke your config. Please don't do that and instead help me actually debug the issue. What was the previous kernel you meant in your original comment. If it's a mainline kernel try bisecting using git like so: https://git-scm.com/docs/git-bisect. Oki, oki. First, i don't speak english. It's difficult for me with google translate. Second, i don't know if i'm the only person in the world with 7 machines whose can't join multicast group since kernel-4.6.0 Third, since kernel-4.6.0 mean that 4.5.* works fine but as i say i don't speak english. Sorry if my report is not precise. I'm a Gentoo user and i post same message in bug report and maintainer marks it as solved : i don't know what to to (i made a entry in sysctl.d to contourn the problem) Thanks for yours efforts Ok try bisecting it using after getting Linus's tree with: git bisect bad git bisect good v4.5(the first good kernel version you stated) git bisect start Then build the kernel and run it, if it's good do: git bisect good. otherwise if bad: git bisect bad. This will get you the first bad commit if there is one. oki, i found in commit dcd87999d415d39cf2ae510bfed6b8206d778e1c igmp: net: Move igmp namespace init to correct file When igmp related sysctl were namespacified their initializatin was erroneously put into the tcp socket namespace constructor. This patch moves the relevant code into the igmp namespace constructor to keep things consistent. Also sprinkle some #ifdefs to silence warnings where modifs include #ifdef CONFIG_IP_MULTICAST i activate CONFIG_IP_MULTICAST and now igmp_max_memberships is initialized to 20 Thanks for the debug method, it's now ok for me. That makes sense seems it was initialized to a value the maintainer thought was correct and didn't explain to users a kernel config option was required in order to make it work. You can close this bug as invalid now. |