All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ovl: fix overlay: warning prefix
@ 2017-11-22 18:27 Amir Goldstein
  2017-12-11 17:52 ` Amir Goldstein
  2017-12-18 12:19 ` Amir Goldstein
  0 siblings, 2 replies; 9+ messages in thread
From: Amir Goldstein @ 2017-11-22 18:27 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: linux-unionfs

Conform two stray warning messages to the standard overlayfs: prefix.

Signed-off-by: Amir Goldstein <amir73il@gmail.com>
---
 fs/overlayfs/dir.c     | 3 ++-
 fs/overlayfs/readdir.c | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/fs/overlayfs/dir.c b/fs/overlayfs/dir.c
index 5ec5ee8e0589..0ce535e7519e 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;
 	}
diff --git a/fs/overlayfs/readdir.c b/fs/overlayfs/readdir.c
index 362561457cdb..7fc142d183e8 100644
--- a/fs/overlayfs/readdir.c
+++ b/fs/overlayfs/readdir.c
@@ -499,7 +499,7 @@ static int ovl_cache_update_ino(struct path *path, struct ovl_cache_entry *p)
 	return err;
 
 fail:
-	pr_warn_ratelimited("overlay: failed to look up (%s) for ino (%i)\n",
+	pr_warn_ratelimited("overlayfs: failed to look up (%s) for ino (%i)\n",
 			    p->name, err);
 	goto out;
 }
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [PATCH] ovl: fix overlay: warning prefix
@ 2018-01-10  9:17 Chengguang Xu
  2018-01-10 11:45 ` Amir Goldstein
  0 siblings, 1 reply; 9+ messages in thread
From: Chengguang Xu @ 2018-01-10  9:17 UTC (permalink / raw)
  To: miklos; +Cc: linux-unionfs, Chengguang Xu

Conform one stray warning message to the standard overlayfs: prefix.

Signed-off-by: Chengguang Xu <cgxu519@icloud.com>
---
 fs/overlayfs/namei.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/overlayfs/namei.c b/fs/overlayfs/namei.c
index beb945e..d0a801b 100644
--- a/fs/overlayfs/namei.c
+++ b/fs/overlayfs/namei.c
@@ -693,7 +693,7 @@ struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,
 		 */
 		err = -EPERM;
 		if (d.redirect && !ofs->config.redirect_follow) {
-			pr_warn_ratelimited("overlay: refusing to follow redirect for (%pd2)\n", dentry);
+			pr_warn_ratelimited("overlayfs: refusing to follow redirect for (%pd2)\n", dentry);
 			goto out_put;
 		}
 
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2018-01-10 12:00 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-22 18:27 [PATCH] ovl: fix overlay: warning prefix Amir Goldstein
2017-12-11 17:52 ` Amir Goldstein
2017-12-14 10:19   ` Miklos Szeredi
2017-12-18 12:19 ` Amir Goldstein
2017-12-18 12:35   ` Greg KH
2017-12-18 12:43     ` Amir Goldstein
  -- strict thread matches above, loose matches on Subject: below --
2018-01-10  9:17 Chengguang Xu
2018-01-10 11:45 ` Amir Goldstein
2018-01-10 11:59   ` Chengguang Xu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.