Lines Matching refs:e
110 void t3_l2e_free(struct l2t_data *d, struct l2t_entry *e);
115 struct l2t_entry *e);
116 void t3_l2t_send_event(struct t3cdev *dev, struct l2t_entry *e);
123 struct l2t_entry *e) in l2t_send() argument
125 if (likely(e->state == L2T_STATE_VALID)) in l2t_send()
127 return t3_l2t_send_slow(dev, skb, e); in l2t_send()
130 static inline void l2t_release(struct t3cdev *t, struct l2t_entry *e) in l2t_release() argument
137 if (atomic_dec_and_test(&e->refcnt) && d) in l2t_release()
138 t3_l2e_free(d, e); in l2t_release()
143 static inline void l2t_hold(struct l2t_data *d, struct l2t_entry *e) in l2t_hold() argument
145 if (d && atomic_add_return(1, &e->refcnt) == 1) /* 0 -> 1 transition */ in l2t_hold()