Home | History | Annotate | Download | only in xenbus

Lines Matching defs:trans

232 	struct xenbus_dev_transaction *trans;
292 trans = kmem_alloc(sizeof(*trans), KM_SLEEP);
293 trans->handle = (struct xenbus_transaction *)
296 trans, trans_next);
298 SLIST_FOREACH(trans, &xlwp->transactions,
300 if ((unsigned long)trans->handle ==
304 if (trans == NULL) {
308 SLIST_REMOVE(&xlwp->transactions, trans,
310 kmem_free(trans, sizeof(*trans));
410 struct xenbus_dev_transaction *trans;
428 trans = SLIST_FIRST(&xlwp->transactions);
429 xenbus_transaction_end(trans->handle, 1);
431 kmem_free(trans, sizeof(*trans));