From: Jeremiah Mahler Date: Fri, 26 Dec 2014 00:04:42 +0000 (-0800) Subject: staging: lustre: replace MIN with min_t X-Git-Tag: v4.0-rc1~82^2~318 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=462ef1e0e7e2d140ca9b41e7eae48c5f9348c68a;p=karo-tx-linux.git staging: lustre: replace MIN with min_t Switch from MIN to the built in min_t with the int type. Signed-off-by: Jeremiah Mahler Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lnet/klnds/socklnd/socklnd_cb.c b/drivers/staging/lustre/lnet/klnds/socklnd/socklnd_cb.c index 0910a1859990..92760fe94184 100644 --- a/drivers/staging/lustre/lnet/klnds/socklnd/socklnd_cb.c +++ b/drivers/staging/lustre/lnet/klnds/socklnd/socklnd_cb.c @@ -1087,7 +1087,7 @@ ksocknal_new_packet (ksock_conn_t *conn, int nob_to_skip) niov = 0; do { - nob = MIN (nob_to_skip, sizeof (ksocknal_slop_buffer)); + nob = min_t(int, nob_to_skip, sizeof(ksocknal_slop_buffer)); conn->ksnc_rx_iov[niov].iov_base = ksocknal_slop_buffer; conn->ksnc_rx_iov[niov].iov_len = nob;