Lines Matching defs:aux
170 * @aux: auxiliary value to store along with val
177 * already exist. If it is added, the auxiliary value @aux is stored along with
178 * it. In case @val already exists in the ulist, @aux is ignored, even if
186 int ulist_add(struct ulist *ulist, u64 val, u64 aux, gfp_t gfp_mask)
188 return ulist_add_merge(ulist, val, aux, NULL, gfp_mask);
191 int ulist_add_merge(struct ulist *ulist, u64 val, u64 aux,
200 *old_aux = node->aux;
208 node->aux = aux;
222 * @aux: aux to delete
224 * The deletion will only be done when *BOTH* val and aux matches.
228 int ulist_del(struct ulist *ulist, u64 val, u64 aux)
237 if (node->aux != aux)