diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2010-08-10 11:41:41 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-08-11 00:29:47 -0400 |
commit | 8df9d1a4142311c084ffeeacb67cd34d190eff74 (patch) | |
tree | 512e018114ea506659fac73d838bfca0fb97a5a4 /fs/proc | |
parent | ffd1f4ed5bddccf2277e3d8525bcedf1983319f8 (diff) | |
download | op-kernel-dev-8df9d1a4142311c084ffeeacb67cd34d190eff74.zip op-kernel-dev-8df9d1a4142311c084ffeeacb67cd34d190eff74.tar.gz |
vfs: show unreachable paths in getcwd and proc
Prepend "(unreachable)" to path strings if the path is not reachable
from the current root.
Two places updated are
- the return string from getcwd()
- and symlinks under /proc/$PID.
Other uses of d_path() are left unchanged (we know that some old
software crashes if /proc/mounts is changed).
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index 4cf5abf..a1c43e7 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -1526,7 +1526,7 @@ static int do_proc_readlink(struct path *path, char __user *buffer, int buflen) if (!tmp) return -ENOMEM; - pathname = d_path(path, tmp, PAGE_SIZE); + pathname = d_path_with_unreachable(path, tmp, PAGE_SIZE); len = PTR_ERR(pathname); if (IS_ERR(pathname)) goto out; |