From e74e6eef290ceec200de0eccc75598cacedda621 Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Thu, 25 Aug 2022 09:31:17 -0400 Subject: [PATCH] ceph: disable fallocate for encrypted inodes ...hopefully, just for now. Reviewed-by: Xiubo Li Signed-off-by: Jeff Layton --- fs/ceph/file.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fs/ceph/file.c b/fs/ceph/file.c index 31de744b1a5f..64f8f668970f 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c @@ -2183,6 +2183,9 @@ static long ceph_fallocate(struct file *file, int mode, if (!S_ISREG(inode->i_mode)) return -EOPNOTSUPP; + if (IS_ENCRYPTED(inode)) + return -EOPNOTSUPP; + prealloc_cf = ceph_alloc_cap_flush(); if (!prealloc_cf) return -ENOMEM; -- 2.47.3