|
@@ -1527,9 +1527,10 @@ int ecryptfs_read_xattr_region(char *page_virt, struct inode *ecryptfs_inode)
|
|
|
size = ecryptfs_getxattr_lower(lower_dentry, ECRYPTFS_XATTR_NAME,
|
|
|
page_virt, ECRYPTFS_DEFAULT_EXTENT_SIZE);
|
|
|
if (size < 0) {
|
|
|
- printk(KERN_ERR "Error attempting to read the [%s] "
|
|
|
- "xattr from the lower file; return value = [%zd]\n",
|
|
|
- ECRYPTFS_XATTR_NAME, size);
|
|
|
+ if (unlikely(ecryptfs_verbosity > 0))
|
|
|
+ printk(KERN_INFO "Error attempting to read the [%s] "
|
|
|
+ "xattr from the lower file; return value = "
|
|
|
+ "[%zd]\n", ECRYPTFS_XATTR_NAME, size);
|
|
|
rc = -EINVAL;
|
|
|
goto out;
|
|
|
}
|