diff options
author | Amir Goldstein <amir73il@gmail.com> | 2017-11-22 19:27:34 +0100 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2017-12-14 11:14:52 +0100 |
commit | da2e6b7eeda8919f677c790ef51161dd02e513a6 (patch) | |
tree | 797b72b686e550d50e82eab27058b9e863c4631e /fs/overlayfs/dir.c | |
parent | ovl: Use PTR_ERR_OR_ZERO() (diff) | |
download | linux-da2e6b7eeda8919f677c790ef51161dd02e513a6.tar.xz linux-da2e6b7eeda8919f677c790ef51161dd02e513a6.zip |
ovl: fix overlay: warning prefix
Conform two stray warning messages to the standard overlayfs: prefix.
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/overlayfs/dir.c')
-rw-r--r-- | fs/overlayfs/dir.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/overlayfs/dir.c b/fs/overlayfs/dir.c index e13921824c70..f9788bc116a8 100644 --- a/fs/overlayfs/dir.c +++ b/fs/overlayfs/dir.c @@ -887,7 +887,8 @@ static int ovl_set_redirect(struct dentry *dentry, bool samedir) spin_unlock(&dentry->d_lock); } else { kfree(redirect); - pr_warn_ratelimited("overlay: failed to set redirect (%i)\n", err); + pr_warn_ratelimited("overlayfs: failed to set redirect (%i)\n", + err); /* Fall back to userspace copy-up */ err = -EXDEV; } |