Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Apr 2017 19:18:50 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r316937 - in head: contrib/ofed/libcxgb4/src sys/dev/cxgbe/iw_cxgbe
Message-ID:  <201704141918.v3EJIotl093598@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: np
Date: Fri Apr 14 19:18:50 2017
New Revision: 316937
URL: https://svnweb.freebsd.org/changeset/base/316937

Log:
  cxgbe/iw_cxgbe: Report accurate page_size_cap in ib_query_device.
  
  MFC after:	3 days
  Sponsored by:	Chelsio Communications

Modified:
  head/contrib/ofed/libcxgb4/src/t4.h
  head/sys/dev/cxgbe/iw_cxgbe/t4.h

Modified: head/contrib/ofed/libcxgb4/src/t4.h
==============================================================================
--- head/contrib/ofed/libcxgb4/src/t4.h	Fri Apr 14 19:15:31 2017	(r316936)
+++ head/contrib/ofed/libcxgb4/src/t4.h	Fri Apr 14 19:18:50 2017	(r316937)
@@ -102,7 +102,7 @@
 #define T4_MAX_CQ_DEPTH (T4_MAX_IQ_SIZE - 1)
 #define T4_MAX_NUM_STAG (1<<15)
 #define T4_MAX_MR_SIZE (~0ULL - 1)
-#define T4_PAGESIZE_MASK 0xffff000  /* 4KB-128MB */
+#define T4_PAGESIZE_MASK 0xffffffff000  /* 4KB-8TB */
 #define T4_STAG_UNSET 0xffffffff
 #define T4_FW_MAJ 0
 

Modified: head/sys/dev/cxgbe/iw_cxgbe/t4.h
==============================================================================
--- head/sys/dev/cxgbe/iw_cxgbe/t4.h	Fri Apr 14 19:15:31 2017	(r316936)
+++ head/sys/dev/cxgbe/iw_cxgbe/t4.h	Fri Apr 14 19:18:50 2017	(r316937)
@@ -70,7 +70,7 @@
 #define T4_MAX_QP_DEPTH (T4_MAX_RQ_SIZE - 1)
 #define T4_MAX_CQ_DEPTH (T4_MAX_IQ_SIZE - 1)
 #define T4_MAX_MR_SIZE (~0ULL - 1)
-#define T4_PAGESIZE_MASK 0xffff000  /* 4KB-128MB */
+#define T4_PAGESIZE_MASK 0xffffffff000  /* 4KB-8TB */
 #define T4_STAG_UNSET 0xffffffff
 #define T4_FW_MAJ 0
 #define T4_EQ_STATUS_ENTRIES (L1_CACHE_BYTES > 64 ? 2 : 1)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704141918.v3EJIotl093598>