]> rtime.felk.cvut.cz Git - linux-imx.git/commit
GFS2: Remove rs_requested field from reservations
authorSteven Whitehouse <swhiteho@redhat.com>
Mon, 30 Jul 2012 13:53:19 +0000 (14:53 +0100)
committerSteven Whitehouse <swhiteho@redhat.com>
Mon, 24 Sep 2012 09:46:54 +0000 (10:46 +0100)
commit71f890f7f758f340215d48fed5223f9cce05b652
treee0a274e17e9a6e2a623fceaa47b9faf1635d7343
parent1f981697432daea3c0abf938b39174dcfb29340e
GFS2: Remove rs_requested field from reservations

The rs_requested field is left over from the original allocation
code, however this should have been a parameter passed to the
various functions from gfs2_inplace_reserve() and not a member of the
reservation structure as the value is not required after the
initial allocation.

This also helps simplify the code since we no longer need to set
the rs_requested to zero. Also the gfs2_inplace_release()
function can also be simplified since the reservation structure
will always be defined when it is called, and the only remaining
task is to unlock the rgrp if required. It can also now be
called unconditionally too, resulting in a further simplification.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/aops.c
fs/gfs2/file.c
fs/gfs2/incore.h
fs/gfs2/inode.c
fs/gfs2/quota.c
fs/gfs2/rgrp.c
fs/gfs2/rgrp.h
fs/gfs2/trans.h
fs/gfs2/xattr.c