Searched refs:xi (Results 1 – 4 of 4) sorted by relevance
/net/xfrm/ |
D | xfrm_interface_core.c | 61 #define for_each_xfrmi_rcu(start, xi) \ argument 62 for (xi = rcu_dereference(start); xi; xi = rcu_dereference(xi->next)) 72 struct xfrm_if *xi; in xfrmi_lookup() local 74 for_each_xfrmi_rcu(xfrmn->xfrmi[xfrmi_hash(x->if_id)], xi) { in xfrmi_lookup() 75 if (x->if_id == xi->p.if_id && in xfrmi_lookup() 76 (xi->dev->flags & IFF_UP)) in xfrmi_lookup() 77 return xi; in xfrmi_lookup() 117 static void xfrmi_link(struct xfrmi_net *xfrmn, struct xfrm_if *xi) in xfrmi_link() argument 119 struct xfrm_if __rcu **xip = &xfrmn->xfrmi[xfrmi_hash(xi->p.if_id)]; in xfrmi_link() 121 rcu_assign_pointer(xi->next , rtnl_dereference(*xip)); in xfrmi_link() [all …]
|
D | xfrm_policy.c | 3528 struct xfrm_if *xi; in __xfrm_policy_check() local 3535 xi = ifcb->decode_session(skb, family); in __xfrm_policy_check() 3536 if (xi) { in __xfrm_policy_check() 3537 if_id = xi->p.if_id; in __xfrm_policy_check() 3538 net = xi->net; in __xfrm_policy_check()
|
/net/ceph/ |
D | auth_none.c | 17 struct ceph_auth_none_info *xi = ac->private; in reset() local 19 xi->starting = true; in reset() 30 struct ceph_auth_none_info *xi = ac->private; in is_authenticated() local 32 return !xi->starting; in is_authenticated() 37 struct ceph_auth_none_info *xi = ac->private; in should_authenticate() local 39 return xi->starting; in should_authenticate() 77 struct ceph_auth_none_info *xi = ac->private; in handle_reply() local 79 xi->starting = false; in handle_reply() 133 struct ceph_auth_none_info *xi; in ceph_auth_none_init() local 136 xi = kzalloc(sizeof(*xi), GFP_NOFS); in ceph_auth_none_init() [all …]
|
D | auth_x.c | 24 struct ceph_x_info *xi = ac->private; in ceph_x_is_authenticated() local 29 missing = ac->want_keys & ~xi->have_keys; in ceph_x_is_authenticated() 32 ac->want_keys, xi->have_keys, missing, !missing); in ceph_x_is_authenticated() 38 struct ceph_x_info *xi = ac->private; in ceph_x_should_authenticate() local 43 ac->want_keys, xi->have_keys, need, !!need); in ceph_x_should_authenticate() 123 struct ceph_x_info *xi = ac->private; in get_ticket_handler() local 124 struct rb_node *parent = NULL, **p = &xi->ticket_handlers.rb_node; in get_ticket_handler() 143 rb_insert_color(&th->node, &xi->ticket_handlers); in get_ticket_handler() 150 struct ceph_x_info *xi = ac->private; in remove_ticket_handler() local 153 rb_erase(&th->node, &xi->ticket_handlers); in remove_ticket_handler() [all …]
|