diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-07-06 12:01:50 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-07-06 12:01:50 +0300 |
commit | 90c8478b2b9942883ad3051374975156ebd07067 (patch) | |
tree | 62fefb20b4481b764f6ff8cdded8ae7bb8e08e7d /fs/ceph/file.c | |
parent | 519c523525b3e048862da1ab4ab4a878bdc01aab (diff) | |
parent | df64e51d4ab83244b6a4eb11eb41f89403611e24 (diff) | |
download | linux-90c8478b2b9942883ad3051374975156ebd07067.tar.xz |
Merge v6.12.36
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/ceph/file.c')
-rw-r--r-- | fs/ceph/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/file.c b/fs/ceph/file.c index 851d70200c6b..a7254cab44cc 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c @@ -2616,7 +2616,7 @@ static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length) s32 stripe_unit = ci->i_layout.stripe_unit; s32 stripe_count = ci->i_layout.stripe_count; s32 object_size = ci->i_layout.object_size; - u64 object_set_size = object_size * stripe_count; + u64 object_set_size = (u64) object_size * stripe_count; u64 nearly, t; /* round offset up to next period boundary */ |