Lines Matching refs:bind
62 struct mutex bind_mutex; /* serialize bind/unbind operations */
386 * serialized bind operations.)
414 /* bind failed, should close the port now */
442 /* Prevent bind from racing with unbind */
447 struct ioctl_evtchn_bind_virq bind;
455 if (copy_from_user(&bind, uarg, sizeof(bind)))
458 bind_virq.virq = bind.virq;
472 struct ioctl_evtchn_bind_interdomain bind;
476 if (copy_from_user(&bind, uarg, sizeof(bind)))
481 u->restrict_domid != bind.remote_domain)
484 bind_interdomain.remote_dom = bind.remote_domain;
485 bind_interdomain.remote_port = bind.remote_port;
498 struct ioctl_evtchn_bind_unbound_port bind;
506 if (copy_from_user(&bind, uarg, sizeof(bind)))
510 alloc_unbound.remote_dom = bind.remote_domain;
546 struct ioctl_evtchn_bind bind;
550 if (copy_from_user(&bind, uarg, sizeof(bind)))
554 evtchn = find_evtchn(u, bind.port);
558 rc = evtchn_bind_to_user(u, bind.port, true);