[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20201026170244.GQ6756@twin.jikos.cz>
Date: Mon, 26 Oct 2020 18:02:44 +0100
From: David Sterba <dsterba@...e.cz>
To: "Matthew Wilcox (Oracle)" <willy@...radead.org>
Cc: linux-fsdevel@...r.kernel.org, ericvh@...il.com, lucho@...kov.net,
viro@...iv.linux.org.uk, jlayton@...nel.org, idryomov@...il.com,
mark@...heh.com, jlbec@...lplan.org, joseph.qi@...ux.alibaba.com,
v9fs-developer@...ts.sourceforge.net, linux-kernel@...r.kernel.org,
ceph-devel@...r.kernel.org, ocfs2-devel@....oracle.com,
linux-btrfs@...r.kernel.org, clm@...com, josef@...icpanda.com,
dsterba@...e.com, stable@...r.kernel.org
Subject: Re: [PATCH 5/7] btrfs: Promote to unsigned long long before shifting
On Sun, Oct 04, 2020 at 07:04:26PM +0100, Matthew Wilcox (Oracle) wrote:
> On 32-bit systems, this shift will overflow for files larger than 4GB.
>
> Cc: stable@...r.kernel.org
> Fixes: df480633b891 ("btrfs: extent-tree: Switch to new delalloc space reserve and release")
> Signed-off-by: Matthew Wilcox (Oracle) <willy@...radead.org>
> ---
> fs/btrfs/ioctl.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
> index ac45f022b495..4d3b7e4ae53a 100644
> --- a/fs/btrfs/ioctl.c
> +++ b/fs/btrfs/ioctl.c
> @@ -1277,7 +1277,7 @@ static int cluster_pages_for_defrag(struct inode *inode,
> page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
>
> ret = btrfs_delalloc_reserve_space(BTRFS_I(inode), &data_reserved,
> - start_index << PAGE_SHIFT,
> + (loff_t)start_index << PAGE_SHIFT,
> - start_index << PAGE_SHIFT,
> + (loff_t)start_index << PAGE_SHIFT,
> - start_index << PAGE_SHIFT,
> + (loff_t)start_index << PAGE_SHIFT,
As this repeats 3 times I've added a variable. Patch added to misc-next,
thanks.
Powered by blists - more mailing lists