Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'iommu/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu

* 'iommu/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu:
iommu: Initialize domain->handler in iommu_domain_alloc()

+1 -1
+1 -1
drivers/iommu/iommu.c
··· 90 90 if (bus == NULL || bus->iommu_ops == NULL) 91 91 return NULL; 92 92 93 - domain = kmalloc(sizeof(*domain), GFP_KERNEL); 93 + domain = kzalloc(sizeof(*domain), GFP_KERNEL); 94 94 if (!domain) 95 95 return NULL; 96 96