diff options
Diffstat (limited to 'include/linux/iommu.h')
| -rw-r--r-- | include/linux/iommu.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/iommu.h b/include/linux/iommu.h index d2f3435e7d17..de0c57a567c8 100644 --- a/include/linux/iommu.h +++ b/include/linux/iommu.h @@ -186,7 +186,7 @@ struct iommu_iotlb_gather {  	unsigned long		start;  	unsigned long		end;  	size_t			pgsize; -	struct page		*freelist; +	struct list_head	freelist;  	bool			queued;  }; @@ -399,6 +399,7 @@ static inline void iommu_iotlb_gather_init(struct iommu_iotlb_gather *gather)  {  	*gather = (struct iommu_iotlb_gather) {  		.start	= ULONG_MAX, +		.freelist = LIST_HEAD_INIT(gather->freelist),  	};  }  |