diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-01-30 17:17:30 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-01-30 17:17:30 -0800 |
| commit | ad9a728a3388dc5f66eab6b7135e0154249e9403 (patch) | |
| tree | 5eb5985896ffd62412700351601e4627f67c3a27 | |
| parent | 2912d799e5342de7c06821668b930fd94639bd78 (diff) | |
| parent | 2724138b2f7f6299812b3404e23b124304834759 (diff) | |
Merge tag 'for-linus-iommufd' of git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd
Pull iommufd fix from Jason Gunthorpe:
"One fix for a harmless KMSAN splat"
* tag 'for-linus-iommufd' of git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd:
iommufd: Initialize batch->kind in batch_clear()
| -rw-r--r-- | drivers/iommu/iommufd/pages.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iommu/iommufd/pages.c b/drivers/iommu/iommufd/pages.c index dbe51ecb9a20..f606148920fa 100644 --- a/drivers/iommu/iommufd/pages.c +++ b/drivers/iommu/iommufd/pages.c @@ -289,6 +289,7 @@ static void batch_clear(struct pfn_batch *batch) batch->end = 0; batch->pfns[0] = 0; batch->npfns[0] = 0; + batch->kind = 0; } /* |
