diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2015-08-27 20:51:45 +0300 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2015-09-03 21:33:32 +0300 |
commit | 4d207133e9c362bc05a3bb6701d63eeb75cc4b77 (patch) | |
tree | 45de61b850feea62ac24f7891fb82634b920acd5 /fs/gfs2/incore.h | |
parent | 88ffbf3e037e67b52c46d528aca1618489c21f68 (diff) | |
download | linux-4d207133e9c362bc05a3bb6701d63eeb75cc4b77.tar.xz |
gfs2: Make statistics unsigned, suitable for use with do_div()
None of these statistics can meaningfully be negative, and the
numerator for do_div() must have the type u64. The generic
implementation of do_div() used on some 32-bit architectures asserts
that, resulting in a compiler error in gfs2_rgrp_congested().
Fixes: 0166b197c2ed ("GFS2: Average in only non-zero round-trip times ...")
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Acked-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/incore.h')
-rw-r--r-- | fs/gfs2/incore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index e300f7419090..121ed08d9d9f 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h @@ -244,7 +244,7 @@ enum { }; struct gfs2_lkstats { - s64 stats[GFS2_NR_LKSTATS]; + u64 stats[GFS2_NR_LKSTATS]; }; enum { |