anv: change BLOCK_POOL_MEMFD_SIZE to exactly 2GB
authorTapani Pälli <tapani.palli@intel.com>
Tue, 7 Mar 2017 09:17:42 +0000 (11:17 +0200)
committerTapani Pälli <tapani.palli@intel.com>
Wed, 8 Mar 2017 05:57:55 +0000 (07:57 +0200)
This is what comment above definition says and change fixes issue with
32bit build where BLOCK_POOL_MEMFD_SIZE is used as ftruncate parameter
and constant currently gets converted from 4294967296 to 0.

Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Plamena Manolova <plamena.manolova@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/intel/vulkan/anv_private.h

index b53d3d8ce4d3ad5c56e8ee4abfd96696e8185bc0..27c192394585db49ef6872883ad5c7ce99b70fc1 100644 (file)
@@ -378,7 +378,7 @@ struct anv_block_pool {
 };
 
 /* Block pools are backed by a fixed-size 2GB memfd */
-#define BLOCK_POOL_MEMFD_SIZE (1ull << 32)
+#define BLOCK_POOL_MEMFD_SIZE (1ul << 31)
 
 /* The center of the block pool is also the middle of the memfd.  This may
  * change in the future if we decide differently for some reason.