Disable "per-container cpu usage in /proc/stat"

Hi. With LXCFS 3.1.2 has been released each container has its own /proc/stat .
Is it possible to disable this behavior?
In my setup I have multiple containers on host and I use /proc/stat to determine host load for dynamically choose parallelism level for current job in each container.

There’s no flag to disable it but you can just have an init script in your container run umount /proc/stat

It works! Thank You.