diff options
author | Daniel Rosenberg <drosen@google.com> | 2016-04-22 00:00:14 -0700 |
---|---|---|
committer | Daniel Rosenberg <drosen@google.com> | 2016-04-25 19:15:48 -0700 |
commit | 4b7de8375299c9f0e330ce521a956bc35bf1d12c (patch) | |
tree | c2381a5cb961b95b7e5c933d49ea9fd40816ace1 /include | |
parent | 5e00c3098bbfbf22086e7ce350cc63ea913a1c15 (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 'include')
-rw-r--r-- | include/linux/dcache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index ebad56e31a8c..5819e9b0ee22 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h @@ -161,7 +161,7 @@ struct dentry_operations { struct vfsmount *(*d_automount)(struct path *); int (*d_manage)(struct dentry *, bool); struct inode *(*d_select_inode)(struct dentry *, unsigned); - void (*d_canonical_path)(const struct dentry *, struct path *); + void (*d_canonical_path)(const struct path *, struct path *); } ____cacheline_aligned; /* |