Aaron Plattner

Results 16 comments of Aaron Plattner

I ran into this yesterday and the problem seems to be how Docker messes with the FORWARD filter table in iptables: ``` Chain FORWARD (policy DROP 0 packets, 0 bytes)...

I just manually flushed the FORWARD table and changed its default policy to ACCEPT ``` iptables -F FORWARD iptables -P FORWARD ACCEPT ```

Oh wait, I forgot that I also found you could disable this behavior by putting this in `/etc/docker/daemon.json`: ``` { "iptables": false } ```

I think this fixed it for me: ``` iptables -t nat -A POSTROUTING -s $dockernet -o ! docker0 -j MASQUERADE ```

This is being tracked in internal bug number 4922789.

How did you trigger suspend on this system? It looks like the relevant systemd units are enabled but I don't see any evidence that they were triggered. Something needs to...

Based on this: ``` juin 09 12:00:39 bestosprec kernel: NVRM: failed to allocate vmap() page descriptor table! ``` can you please give this patch a try? https://github.com/NVIDIA/open-gpu-kernel-modules/commit/c7e72135da83ff027755b4a61a3ff09a32fe00c3

Thanks for testing this. If you didn't see the `vmap` error or the one about `kgspCreateRadix3` then you didn't hit either problem that that patch is supposed to fix. >...

Sorry, you're right: an earlier version of the patch had extra logging but this version will just silently mitigate the problem (unless you enable `LEVEL_INFO` logging and hit the memdescTagAllocate...

Thank you for reporting this. I filed NVBug 3673743, although I don't know that we'll be able to work around this in the proprietary driver due to the interface the...