Commit fffd70f5 authored by Al Viro's avatar Al Viro

ufs: make ufs_freespace() return signed

as it is, checking that its return value is <= 0 is useless and
that's how it's being used.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 96ecff14
...@@ -354,12 +354,12 @@ static inline void *ubh_get_data_ptr(struct ufs_sb_private_info *uspi, ...@@ -354,12 +354,12 @@ static inline void *ubh_get_data_ptr(struct ufs_sb_private_info *uspi,
* Determine the number of available frags given a * Determine the number of available frags given a
* percentage to hold in reserve. * percentage to hold in reserve.
*/ */
static inline u64 static inline s64
ufs_freespace(struct ufs_sb_private_info *uspi, int percentreserved) ufs_freespace(struct ufs_sb_private_info *uspi, int percentreserved)
{ {
return ufs_blkstofrags(uspi->cs_total.cs_nbfree) + return ufs_blkstofrags(uspi->cs_total.cs_nbfree) +
uspi->cs_total.cs_nffree - uspi->cs_total.cs_nffree -
(uspi->s_dsize * (percentreserved) / 100); (uspi->s_dsize * percentreserved) / 100;
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment