summaryrefslogtreecommitdiff
path: root/fs/notify
diff options
context:
space:
mode:
authorDaniel Rosenberg <drosen@google.com>2016-04-22 00:00:14 -0700
committerAmit Pundir <amit.pundir@linaro.org>2016-05-19 12:35:13 +0530
commit6fa18ffc7122663277db9311c4e679f632d2b78d (patch)
tree0a026630986a212958cd10bd39ebcb33b3b35362 /fs/notify
parentaaed164e81bcc055eee6e18a4450310bfa620fba (diff)
vfs: change d_canonical_path to take two paths
bug: 23904372 Change-Id: I4a686d64b6de37decf60019be1718e1d820193e6 Signed-off-by: Daniel Rosenberg <drosen@google.com>
Diffstat (limited to 'fs/notify')
-rw-r--r--fs/notify/inotify/inotify_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/notify/inotify/inotify_user.c b/fs/notify/inotify/inotify_user.c
index f72f3b25b3f2..e2893f17dde2 100644
--- a/fs/notify/inotify/inotify_user.c
+++ b/fs/notify/inotify/inotify_user.c
@@ -746,7 +746,7 @@ SYSCALL_DEFINE3(inotify_add_watch, int, fd, const char __user *, pathname,
/* support stacked filesystems */
if(path.dentry && path.dentry->d_op) {
if (path.dentry->d_op->d_canonical_path) {
- path.dentry->d_op->d_canonical_path(path.dentry, &alteredpath);
+ path.dentry->d_op->d_canonical_path(&path, &alteredpath);
canonical_path = &alteredpath;
path_put(&path);
}