svn commit: r354996 - stable/11/sys/ofed/include/rdma

Hans Petter Selasky hselasky at FreeBSD.org
Fri Nov 22 14:24:11 UTC 2019


Author: hselasky
Date: Fri Nov 22 14:24:10 2019
New Revision: 354996
URL: https://svnweb.freebsd.org/changeset/base/354996

Log:
  MFC r354728:
  Prevent potential underflow in ibcore.
  
  Linux commit:
  a9018adfde809d44e71189b984fa61cc89682b5e
  
  Sponsored by:	Mellanox Technologies

Modified:
  stable/11/sys/ofed/include/rdma/ib_verbs.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/ofed/include/rdma/ib_verbs.h
==============================================================================
--- stable/11/sys/ofed/include/rdma/ib_verbs.h	Fri Nov 22 14:23:11 2019	(r354995)
+++ stable/11/sys/ofed/include/rdma/ib_verbs.h	Fri Nov 22 14:24:10 2019	(r354996)
@@ -283,7 +283,7 @@ enum ib_cq_creation_flags {
 
 struct ib_cq_init_attr {
 	unsigned int	cqe;
-	int		comp_vector;
+	u32		comp_vector;
 	u32		flags;
 };
 


More information about the svn-src-all mailing list