[Devel] [PATCH 3/3] fs/fuse kio: add warning about jumbo chunks

Pavel Butsykin pbutsykin at virtuozzo.com
Tue Mar 26 18:07:11 MSK 2019


KIO doesn't support jumbo chunks yet, so all requests to jumbo chunks are
silently redirected to user-space. It will be useful to see a message about
this until support has been added to KIO.

Signed-off-by: Pavel Butsykin <pbutsykin at virtuozzo.com>
---
 fs/fuse/kio/pcs/pcs_fuse_kdirect.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/fs/fuse/kio/pcs/pcs_fuse_kdirect.c b/fs/fuse/kio/pcs/pcs_fuse_kdirect.c
index 6d12b8038e8a..aa1c79f440cb 100644
--- a/fs/fuse/kio/pcs/pcs_fuse_kdirect.c
+++ b/fs/fuse/kio/pcs/pcs_fuse_kdirect.c
@@ -318,6 +318,9 @@ static int kpcs_do_file_open(struct fuse_conn *fc, struct file *file, struct ino
 
 	if (info.sys.map_type != PCS_MAP_PLAIN) {
 		TRACE("Unsupported map_type:%x, ignore\n", info.sys.map_type);
+
+		if (info.sys.chunk_size_hi)
+			pr_warn_once("kio: fpath doesn't support jumbo chunks\n");
 		return 0;
 	}
 
-- 
2.15.1



More information about the Devel mailing list