[GFS2] Fix a size calculation error

Fix a size calculation error.
The size was incorrect being computed as a
negative length and then being passed to an
unsigned parameter.

This in turn would cause the allocator to
think it needed enough meta data to store
a gigabyte file for every file created.

Signed-off-by: Russell Cattelan <cattelan@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>

authored by Russell Cattelan and committed by Steven Whitehouse 52ae7b79 c25d5180

+4 -2
+4 -2
fs/gfs2/ops_address.c
··· 370 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + from; 371 loff_t end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to; 372 struct gfs2_alloc *al; 373 374 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_ATIME|GL_AOP, &ip->i_gh); 375 error = gfs2_glock_nq_m_atime(1, &ip->i_gh); 376 if (error) 377 goto out_uninit; 378 379 - gfs2_write_calc_reserv(ip, to - from, &data_blocks, &ind_blocks); 380 381 - error = gfs2_write_alloc_required(ip, pos, from - to, &alloc_required); 382 if (error) 383 goto out_unlock; 384
··· 370 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + from; 371 loff_t end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to; 372 struct gfs2_alloc *al; 373 + unsigned int write_len = to - from; 374 + 375 376 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_ATIME|GL_AOP, &ip->i_gh); 377 error = gfs2_glock_nq_m_atime(1, &ip->i_gh); 378 if (error) 379 goto out_uninit; 380 381 + gfs2_write_calc_reserv(ip, write_len, &data_blocks, &ind_blocks); 382 383 + error = gfs2_write_alloc_required(ip, pos, write_len, &alloc_required); 384 if (error) 385 goto out_unlock; 386