svn commit: r354995 - stable/12/sys/ofed/include/rdma
Hans Petter Selasky
hselasky at FreeBSD.org
Fri Nov 22 14:23:12 UTC 2019
Author: hselasky
Date: Fri Nov 22 14:23:11 2019
New Revision: 354995
URL: https://svnweb.freebsd.org/changeset/base/354995
Log:
MFC r354728:
Prevent potential underflow in ibcore.
Linux commit:
a9018adfde809d44e71189b984fa61cc89682b5e
Sponsored by: Mellanox Technologies
Modified:
stable/12/sys/ofed/include/rdma/ib_verbs.h
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/sys/ofed/include/rdma/ib_verbs.h
==============================================================================
--- stable/12/sys/ofed/include/rdma/ib_verbs.h Fri Nov 22 14:21:55 2019 (r354994)
+++ stable/12/sys/ofed/include/rdma/ib_verbs.h Fri Nov 22 14:23:11 2019 (r354995)
@@ -285,7 +285,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-stable-12
mailing list