diff --git a/[refs] b/[refs] index c94c955bf535..a4316f4e083c 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: a93a6ce24215c69126c88f9c488afa50a168e0ca +refs/heads/master: 4abaca17e758e3326c96ced88b2cd9b7b84922f6 diff --git a/trunk/fs/gfs2/quota.c b/trunk/fs/gfs2/quota.c index 56aaf915c59a..3e073f5144fa 100644 --- a/trunk/fs/gfs2/quota.c +++ b/trunk/fs/gfs2/quota.c @@ -904,7 +904,7 @@ static int need_sync(struct gfs2_quota_data *qd) do_sync = 0; else { value *= gfs2_jindex_size(sdp) * num; - do_div(value, den); + value = div_s64(value, den); value += (s64)be64_to_cpu(qd->qd_qb.qb_value); if (value < (s64)be64_to_cpu(qd->qd_qb.qb_limit)) do_sync = 0;