svn commit: r335123 - head/sys/ofed/drivers/infiniband/core

Hans Petter Selasky hselasky at FreeBSD.org
Thu Jun 14 07:55:11 UTC 2018


Author: hselasky
Date: Thu Jun 14 07:55:10 2018
New Revision: 335123
URL: https://svnweb.freebsd.org/changeset/base/335123

Log:
  Revert r335094 and properly fix OFED build after r335053.
  
  MFC after:	1 week
  Sponsored by:	Mellanox Technologies

Modified:
  head/sys/ofed/drivers/infiniband/core/ib_user_mad.c

Modified: head/sys/ofed/drivers/infiniband/core/ib_user_mad.c
==============================================================================
--- head/sys/ofed/drivers/infiniband/core/ib_user_mad.c	Thu Jun 14 07:12:30 2018	(r335122)
+++ head/sys/ofed/drivers/infiniband/core/ib_user_mad.c	Thu Jun 14 07:55:10 2018	(r335123)
@@ -130,8 +130,7 @@ struct ib_umad_packet {
 
 static struct class *umad_class;
 
-#define IBMKDEV(x, y)  (((dev_t)(x) << 32) | (unsigned)(y))
-static const dev_t base_dev = IBMKDEV(IB_UMAD_MAJOR, IB_UMAD_MINOR_BASE);
+#define	base_dev MKDEV(IB_UMAD_MAJOR, IB_UMAD_MINOR_BASE)
 
 static DEFINE_SPINLOCK(port_lock);
 static DECLARE_BITMAP(dev_map, IB_UMAD_MAX_PORTS);


More information about the svn-src-all mailing list