mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 19:00:13 +01:00
anv: update protection fault property
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: 794b0496e9 ("anv: enable protected memory")
Reviewed-by: Rohan Garg <rohan.garg@intel.com>
Tested-by: Mark Janes <markjanes@swizzler.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26540>
This commit is contained in:
parent
d2e490dc4d
commit
9b0f028c7e
1 changed files with 3 additions and 2 deletions
|
|
@ -997,9 +997,10 @@ get_properties_1_1(const struct anv_physical_device *pdevice,
|
|||
p->maxMultiviewViewCount = 16;
|
||||
p->maxMultiviewInstanceIndex = UINT32_MAX / 16;
|
||||
/* Our protected implementation is a memory encryption mechanism, it
|
||||
* doesn't page fault.
|
||||
* shouldn't page fault, but it hangs the HW so in terms of user visibility
|
||||
* it's similar to a fault.
|
||||
*/
|
||||
p->protectedNoFault = true;
|
||||
p->protectedNoFault = false;
|
||||
/* This value doesn't matter for us today as our per-stage descriptors are
|
||||
* the real limit.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue