diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-04-26 13:07:27 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-04-26 13:13:33 -0400 |
commit | 230c6402b1b305c21c91b56cd9de95a608898506 (patch) | |
tree | 3f57fb92ec24aa5a8a1f3b671bb9484e3b5957a4 /fs/debugfs | |
parent | 1d8b29fdb7ef39bd76bcd7a7f516938163097b0e (diff) | |
download | linux-230c6402b1b305c21c91b56cd9de95a608898506.tar.bz2 |
ovl_lookup_real_one(): don't bother with strlen()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/debugfs')
-rw-r--r-- | fs/debugfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index 95b5e78c22b1..f7064048d271 100644 --- a/fs/debugfs/inode.c +++ b/fs/debugfs/inode.c @@ -819,7 +819,7 @@ struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, goto exit; } d_move(old_dentry, dentry); - fsnotify_move(d_inode(old_dir), d_inode(new_dir), old_name.name, + fsnotify_move(d_inode(old_dir), d_inode(new_dir), old_name.name.name, d_is_dir(old_dentry), NULL, old_dentry); release_dentry_name_snapshot(&old_name); |