diff mbox series

ubifs: remove error message in ubifs_xattr_get

Message ID 1515636504-7660-1-git-send-email-rockdotlee@gmail.com
State Accepted
Delegated to: Richard Weinberger
Headers show
Series ubifs: remove error message in ubifs_xattr_get | expand

Commit Message

Rock Lee Jan. 11, 2018, 2:08 a.m. UTC
From: Rock Lee <rli@sierrawireless.com>

There is a situation that other modules, like overlayfs, try to get
xattr value with a small buffer, if they get -ERANGE, they will try
again with the proper buffer size. No need to report an error.

Signed-off-by: Rock Lee <rli@sierrawireless.com>
---
 fs/ubifs/xattr.c | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/fs/ubifs/xattr.c b/fs/ubifs/xattr.c
index c13eae8..1615270 100644
--- a/fs/ubifs/xattr.c
+++ b/fs/ubifs/xattr.c
@@ -380,8 +380,6 @@  ssize_t ubifs_xattr_get(struct inode *host, const char *name, void *buf,
 	if (buf) {
 		/* If @buf is %NULL we are supposed to return the length */
 		if (ui->data_len > size) {
-			ubifs_err(c, "buffer size %zd, xattr len %d",
-				  size, ui->data_len);
 			err = -ERANGE;
 			goto out_iput;
 		}