From mboxrd@z Thu Jan 1 00:00:00 1970 From: Glauber Costa Subject: Re: [PATCH] meminfo: show /proc/meminfo base on container's memcg Date: Thu, 31 May 2012 12:59:33 +0400 Message-ID: <4FC732F5.6080706@parallels.com> References: <1338260214-21919-1-git-send-email-gaofeng@cn.fujitsu.com> <4FC6BC3E.5010807@jp.fujitsu.com> <4FC6C111.2060108@jp.fujitsu.com> <4FC6D881.4090706@jp.fujitsu.com> <4FC70355.70805@jp.fujitsu.com> <4FC70E5E.1010003@gmail.com> <4FC711A5.4090003@gmail.com> <4FC720EE.3010307@gmail.com> <4FC724B1.70508@cn.fujitsu.com> <4FC72CA4.6080708@parallels.com> <4FC73110.6010107@jp.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <4FC73110.6010107-+CUm20s59erQFUHtdCDX3A@public.gmane.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: containers-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org Errors-To: containers-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org To: Kamezawa Hiroyuki Cc: David Rientjes , linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, mhocko-AlSwsSmVLrQ@public.gmane.org, linux-mm-Bw31MaZKKs3YtjvyW6yDsg@public.gmane.org, hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org, cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, KOSAKI Motohiro , akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org, containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org List-Id: containers.vger.kernel.org On 05/31/2012 12:51 PM, Kamezawa Hiroyuki wrote: >> One think to keep in mind: A file in memcg does not need to follow the >> same format >> of /proc/meminfo so we can bind mount. We should be able to >> reconstruct that in >> userspace based on information available from the kernel. You can >> even collect that >> from multiple locations, and *then* you bind mount. > > I'm sorry I couldn't fully understand. Could you explain more ? > Do you mean > - bind mount memory cgroup directory into the container for exporting > information > - Some user-space apps, FUSE-procfs or some, can provide enough > information > Implementation details aside, the idea is to have something like FUSE to hook the read(), and then construct the information it needs to present in the proper format. Alternatively, for files that doesn't change a lot, you can create a file /container-storage-area/my_copy_of_meminfo at container creation, and bind mount *that* file. There is no reason to bind mount a kernel-provided file directly.