Lines Matching defs:private
16 void *private;
25 * - Custom allocators may share allocation helpers with different private data.
261 * ioasid_set_data - Set private data for an allocated ioasid
263 * @data: the private data
265 * For IOASID that is already allocated, private data can be set
276 rcu_assign_pointer(ioasid_data->private, data);
282 * Wait for readers to stop accessing the old private data, so the
297 * @private: data private to the caller
299 * Allocate an ID between @min and @max. The @private pointer is stored
305 void *private)
316 data->private = private;
385 * If the IOASID exists, return the private pointer passed to ioasid_alloc.
408 /* Now IOASID and its set is verified, we can return the private data */
409 priv = rcu_dereference(ioasid_data->private);