From mboxrd@z Thu Jan 1 00:00:00 1970 From: Zan Lynx Subject: Re: [RFC] fs, proc: Introduce the /proc//map_files/ directory v2 Date: Wed, 24 Aug 2011 09:05:21 -0600 Message-ID: <4E551331.1010709@acm.org> References: <20110824085329.GL29452@sun> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: Pavel Emelyanov , linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, James Bottomley , containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org, Nathan Lynch , Tejun Heo , LINUXFS-ML , Daniel Lezcano , Andrew Morton To: Cyrill Gorcunov Return-path: In-Reply-To: <20110824085329.GL29452@sun> 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 List-Id: linux-fsdevel.vger.kernel.org On 8/24/2011 2:53 AM, Cyrill Gorcunov wrote: > From: Pavel Emelyanov > > This one behaves similarly to the /proc//fd/ one - it contains symlinks > one for each mapping with file, the name of a symlink is vma->vm_start, the > target is the file. Opening a symlink results in a file that point exactly > to the same inode as them vma's one. > > This thing is aimed to help checkpointing processes. > > For example the ls -l of some arbitrary /proc//map_files/ > > | lr-x------ 1 cyrill cyrill 64 Aug 9 15:25 0x3d73a00000 -> /lib64/ld-2.5.so [snip] Just curious: How do these symlinks work when the process reading a /proc file is in a chroot or a different namespace? For example, a chroot environment might have independent copies of /lib64/ld-2.5.so and a bind mount of /proc. Does the symlink then point to the wrong file?