diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2020-10-09 19:30:16 +0200 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2021-02-17 19:26:05 +0100 |
commit | 3d39fcd16d885ebb0d9a2e345accb0e5ae13fed9 (patch) | |
tree | acadf8f6954f544fd8fc9e2879dcfd60b8eff63b /fs/gfs2/rgrp.h | |
parent | f38e998fbbb5da6a097ecd4b2700ba95eabab0c9 (diff) | |
download | linux-3d39fcd16d885ebb0d9a2e345accb0e5ae13fed9.tar.gz linux-3d39fcd16d885ebb0d9a2e345accb0e5ae13fed9.tar.bz2 linux-3d39fcd16d885ebb0d9a2e345accb0e5ae13fed9.zip |
gfs2: Only pass reservation down to gfs2_rbm_find
Only pass the current reservation down to gfs2_rbm_find rather than the entire
inode; we don't need any of the other information.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/rgrp.h')
-rw-r--r-- | fs/gfs2/rgrp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/rgrp.h b/fs/gfs2/rgrp.h index 9a587ada51ed..be1b2034f5ee 100644 --- a/fs/gfs2/rgrp.h +++ b/fs/gfs2/rgrp.h @@ -77,7 +77,7 @@ extern int gfs2_fitrim(struct file *filp, void __user *argp); /* This is how to tell if a reservation is in the rgrp tree: */ static inline bool gfs2_rs_active(const struct gfs2_blkreserv *rs) { - return rs && !RB_EMPTY_NODE(&rs->rs_node); + return !RB_EMPTY_NODE(&rs->rs_node); } static inline int rgrp_contains_block(struct gfs2_rgrpd *rgd, u64 block) |