staging: lustre: replace MIN with min, cast (__kernel_size_t)
authorJeremiah Mahler <jmmahler@gmail.com>
Fri, 26 Dec 2014 00:04:44 +0000 (16:04 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Jan 2015 23:49:22 +0000 (15:49 -0800)
Switch from MIN to min and fix the new type warning.  The
warning is produced because a comparison between iov_len,
which is a __kernel_size_t, is made to kiov_len, which is an
unsigned int (include/linux/lnet/types.h).  Fix the warning
by casting kiov_len to __kernel_size_t.

Signed-off-by: Jeremiah Mahler <jmmahler@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lnet/lnet/lib-move.c

index 4182bdaaee7168369fb6fb00dd8409eaf7518e97..39e27c1be33717a3a4ef161e52255654ff04dd0e 100644 (file)
@@ -403,8 +403,8 @@ lnet_copy_kiov2iov(unsigned int niov, struct kvec *iov, unsigned int iovoffset,
        do {
                LASSERT(niov > 0);
                LASSERT(nkiov > 0);
-               this_nob = MIN(iov->iov_len - iovoffset,
-                              kiov->kiov_len - kiovoffset);
+               this_nob = min(iov->iov_len - iovoffset,
+                              (__kernel_size_t) kiov->kiov_len - kiovoffset);
                this_nob = min(this_nob, nob);
 
                if (addr == NULL)
@@ -474,7 +474,7 @@ lnet_copy_iov2kiov(unsigned int nkiov, lnet_kiov_t *kiov,
        do {
                LASSERT(nkiov > 0);
                LASSERT(niov > 0);
-               this_nob = MIN(kiov->kiov_len - kiovoffset,
+               this_nob = min((__kernel_size_t) kiov->kiov_len - kiovoffset,
                               iov->iov_len - iovoffset);
                this_nob = min(this_nob, nob);
 
This page took 0.036258 seconds and 5 git commands to generate.