ceph: always set initial i_blkbits to CEPH_FSCRYPT_BLOCK_SHIFT
authorXiubo Li <xiubli@redhat.com>
Thu, 18 Jan 2024 06:24:41 +0000 (14:24 +0800)
committerIlya Dryomov <idryomov@gmail.com>
Wed, 7 Feb 2024 13:43:29 +0000 (14:43 +0100)
commitbbb20ea993f46743f7429092ddc52f1a5c5428ef
tree934e9518d85b609784b626a8d04b186e9bd837d4
parent8e46a2d068c92a905d01cbb018b00d66991585ab
ceph: always set initial i_blkbits to CEPH_FSCRYPT_BLOCK_SHIFT

The fscrypt code will use i_blkbits to setup ci_data_unit_bits when
allocating the new inode, but ceph will initiate i_blkbits ater when
filling the inode, which is too late. Since ci_data_unit_bits will only
be used by the fscrypt framework so initiating i_blkbits with
CEPH_FSCRYPT_BLOCK_SHIFT is safe.

Link: https://tracker.ceph.com/issues/64035
Fixes: 5b1188847180 ("fscrypt: support crypto data unit size less than filesystem block size")
Signed-off-by: Xiubo Li <xiubli@redhat.com>
Reviewed-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
fs/ceph/inode.c