Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
amdkfd: use sizeof(long) granularity for the pasid bitmask
All the bit operations (such as find_first_zero_bit()) read sizeof(long) bytes at a time. If we allocated less than sizeof(long) bytes for the bitmask we would be accessing invalid memory when working with the bitmask. Change the allocator to allocate sizeof(long) multiples for the bitmask. Signed-off-by: Sasha Levin <[email protected]> Signed-off-by: Oded Gabbay <[email protected]>
- Loading branch information