svn commit: r315258 - stable/9/sys/ofed/drivers/infiniband/hw/mlx4
Hans Petter Selasky
hselasky at FreeBSD.org
Tue Mar 14 15:47:19 UTC 2017
Author: hselasky
Date: Tue Mar 14 15:47:17 2017
New Revision: 315258
URL: https://svnweb.freebsd.org/changeset/base/315258
Log:
MFC r313778:
Improve code readability and fix compilation error when using clang 4.x.
Found by: emaste @
Sponsored by: Mellanox Technologies
Modified:
stable/9/sys/ofed/drivers/infiniband/hw/mlx4/mad.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/ofed/drivers/infiniband/hw/mlx4/mad.c
==============================================================================
--- stable/9/sys/ofed/drivers/infiniband/hw/mlx4/mad.c Tue Mar 14 15:44:39 2017 (r315257)
+++ stable/9/sys/ofed/drivers/infiniband/hw/mlx4/mad.c Tue Mar 14 15:47:17 2017 (r315258)
@@ -593,7 +593,7 @@ static int mlx4_ib_demux_mad(struct ib_d
is_eth = 1;
if (is_eth) {
- if (!wc->wc_flags & IB_WC_GRH) {
+ if (!(wc->wc_flags & IB_WC_GRH)) {
mlx4_ib_warn(ibdev, "RoCE grh not present.\n");
return -EINVAL;
}
More information about the svn-src-stable-9
mailing list