diff options
author | 2014-07-15 07:37:18 +1000 | |
---|---|---|
committer | 2014-07-15 07:37:18 +1000 | |
commit | 7f8a058f6dc52219117bc2469b1fb816f7fa1a4b (patch) | |
tree | 43ce8eed4d26beb6f2acff2279c43eae7f79f83a /fs/xfs/xfs_linux.h | |
parent | xfs: null unused quota inodes when quota is on (diff) | |
parent | xfs: global error sign conversion (diff) | |
download | linux-dev-7f8a058f6dc52219117bc2469b1fb816f7fa1a4b.tar.xz linux-dev-7f8a058f6dc52219117bc2469b1fb816f7fa1a4b.zip |
Merge branch 'xfs-libxfs-restructure' into for-next
Diffstat (limited to 'fs/xfs/xfs_linux.h')
-rw-r--r-- | fs/xfs/xfs_linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_linux.h b/fs/xfs/xfs_linux.h index 825249d2dfc1..f59b966bf903 100644 --- a/fs/xfs/xfs_linux.h +++ b/fs/xfs/xfs_linux.h @@ -331,7 +331,7 @@ static inline __uint64_t roundup_64(__uint64_t x, __uint32_t y) { x += y - 1; do_div(x, y); - return(x * y); + return x * y; } static inline __uint64_t howmany_64(__uint64_t x, __uint32_t y) |