staging: lustre: lclient: lcommon_misc.c fixing coding style issues
authorAnil Belur <askb23@gmail.com>
Wed, 18 Jun 2014 08:23:51 +0000 (18:23 +1000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jun 2014 22:39:18 +0000 (15:39 -0700)
fixed warning:
* WARNING: min() should probably be min_t(__u32, desc.ld_tgt_count,
LOV_MAX_STRIPE_COUNT)

Signed-off-by: Anil Belur <askb23@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/lclient/lcommon_misc.c

index 21de1cd..367bdad 100644 (file)
@@ -63,7 +63,7 @@ int cl_init_ea_size(struct obd_export *md_exp, struct obd_export *dt_exp)
        if (rc)
                return rc;
 
-       stripes = min(desc.ld_tgt_count, (__u32)LOV_MAX_STRIPE_COUNT);
+       stripes = min_t(__u32, desc.ld_tgt_count, LOV_MAX_STRIPE_COUNT);
        lsm.lsm_stripe_count = stripes;
        easize = obd_size_diskmd(dt_exp, &lsm);