ocfs2: use min_t in ocfs2_quota_read()
authorMark Fasheh <mfasheh@suse.com>
Thu, 25 Dec 2008 00:33:08 +0000 (16:33 -0800)
committerMark Fasheh <mfasheh@suse.com>
Mon, 5 Jan 2009 16:40:37 +0000 (08:40 -0800)
This is preferred to min().

Signed-off-by: Mark Fasheh <mfasheh@suse.com>
fs/ocfs2/quota_global.c

index 444aa5a..6aff8f2 100644 (file)
@@ -167,7 +167,7 @@ ssize_t ocfs2_quota_read(struct super_block *sb, int type, char *data,
                len = i_size - off;
        toread = len;
        while (toread > 0) {
-               tocopy = min((size_t)(sb->s_blocksize - offset), toread);
+               tocopy = min_t(size_t, (sb->s_blocksize - offset), toread);
                bh = NULL;
                err = ocfs2_read_quota_block(gqinode, blk, &bh);
                if (err) {