Add heap_mask to ion_allocation_data
diff --git a/include/linux/ion.h b/include/linux/ion.h
index 2519270..a99a3e3 100644
--- a/include/linux/ion.h
+++ b/include/linux/ion.h
@@ -695,6 +695,7 @@
  * struct ion_allocation_data - metadata passed from userspace for allocations
  * @len:	size of the allocation
  * @align:	required alignment of the allocation
+ * @heap_mask:	mask of heaps to allocate from
  * @flags:	flags passed to heap
  * @handle:	pointer that will be populated with a cookie to use to refer
  *		to this allocation
@@ -704,6 +705,7 @@
 struct ion_allocation_data {
 	size_t len;
 	size_t align;
+	unsigned int heap_mask;
 	unsigned int flags;
 	struct ion_handle *handle;
 };