Loading fs/notify/inotify/inotify_user.c +1 −1 Original line number Diff line number Diff line Loading @@ -735,7 +735,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); } Loading include/linux/dcache.h +1 −1 Original line number Diff line number Diff line Loading @@ -160,7 +160,7 @@ struct dentry_operations { char *(*d_dname)(struct dentry *, char *, int); struct vfsmount *(*d_automount)(struct path *); int (*d_manage)(struct dentry *, bool); void (*d_canonical_path)(const struct dentry *, struct path *); void (*d_canonical_path)(const struct path *, struct path *); } ____cacheline_aligned; /* Loading Loading
fs/notify/inotify/inotify_user.c +1 −1 Original line number Diff line number Diff line Loading @@ -735,7 +735,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); } Loading
include/linux/dcache.h +1 −1 Original line number Diff line number Diff line Loading @@ -160,7 +160,7 @@ struct dentry_operations { char *(*d_dname)(struct dentry *, char *, int); struct vfsmount *(*d_automount)(struct path *); int (*d_manage)(struct dentry *, bool); void (*d_canonical_path)(const struct dentry *, struct path *); void (*d_canonical_path)(const struct path *, struct path *); } ____cacheline_aligned; /* Loading