diff options
author | Tapani Pälli <[email protected]> | 2017-03-07 11:17:42 +0200 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2017-03-08 07:57:55 +0200 |
commit | db5f9c31774691df9239bcbbbf52075a63c08c25 (patch) | |
tree | 480f57c563ad61254ee75a11f0e6f9939992bf75 | |
parent | 58b69eedd3bd3d9032a36fbc8ced8b187025aeb2 (diff) |
anv: change BLOCK_POOL_MEMFD_SIZE to exactly 2GB
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 <[email protected]>
Reviewed-by: Plamena Manolova <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index b53d3d8ce4d..27c19239458 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -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. |