Searched refs:lh (Results 51 - 67 of 67) sorted by path

123

/linux-master/include/linux/
H A Dbinfmts.h83 struct list_head lh; member in struct:linux_binfmt
H A Dnetdevice.h3021 #define net_device_entry(lh) list_entry(lh, struct net_device, dev_list)
3028 struct list_head *lh; local
3032 lh = dev->dev_list.next;
3033 return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
3038 struct list_head *lh; local
3042 lh = rcu_dereference(list_next_rcu(&dev->dev_list));
3043 return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
3054 struct list_head *lh = rcu_dereference(list_next_rcu(&net->dev_base_head)); local
[all...]
/linux-master/include/net/
H A Dip6_fib.h358 struct list_head lh; member in struct:fib6_walker
/linux-master/kernel/rcu/
H A Dsrcutiny.c118 struct rcu_head *lh; local
132 lh = ssp->srcu_cb_head;
147 while (lh) {
148 rhp = lh;
149 lh = lh->next;
/linux-master/mm/
H A Dhighmem.c727 struct list_head lh; /* List of page_address_maps */ member in struct:page_address_slot
754 if (!list_empty(&pas->lh)) {
757 list_for_each_entry(pam, &pas->lh, list) {
790 list_add_tail(&pam->list, &pas->lh);
794 list_for_each_entry(pam, &pas->lh, list) {
809 INIT_LIST_HEAD(&page_address_htable[i].lh);
/linux-master/net/atm/
H A Dbr2684.c126 struct list_head *lh; local
130 list_for_each(lh, &br2684_devs) {
131 net_dev = list_entry_brdev(lh);
137 list_for_each(lh, &br2684_devs) {
138 net_dev = list_entry_brdev(lh);
151 struct list_head *lh; local
160 list_for_each(lh, &br2684_devs) {
161 net_dev = list_entry_brdev(lh);
/linux-master/net/bluetooth/
H A Dl2cap_core.c1124 struct l2cap_hdr *lh; local
1135 lh = skb_put(skb, L2CAP_HDR_SIZE);
1136 lh->len = cpu_to_le16(hlen - L2CAP_HDR_SIZE);
1137 lh->cid = cpu_to_le16(chan->dcid);
2247 struct l2cap_hdr *lh; local
2260 lh = skb_put(skb, L2CAP_HDR_SIZE);
2261 lh->cid = cpu_to_le16(chan->dcid);
2262 lh->len = cpu_to_le16(len + L2CAP_PSMLEN_SIZE);
2279 struct l2cap_hdr *lh; local
2291 lh
2310 struct l2cap_hdr *lh; local
2430 struct l2cap_hdr *lh; local
2945 struct l2cap_hdr *lh; local
6793 struct l2cap_hdr *lh = (void *) skb->data; local
[all...]
/linux-master/net/dccp/ccids/lib/
H A Dloss_interval.c22 static inline struct tfrc_loss_interval *tfrc_lh_peek(struct tfrc_loss_hist *lh) argument
24 return lh->counter ? lh->ring[LIH_INDEX(lh->counter - 1)] : NULL;
28 static inline u32 tfrc_lh_get_interval(struct tfrc_loss_hist *lh, const u8 i) argument
30 BUG_ON(i >= lh->counter);
31 return lh->ring[LIH_INDEX(lh->counter - i - 1)]->li_length;
37 static struct tfrc_loss_interval *tfrc_lh_demand_next(struct tfrc_loss_hist *lh) argument
39 if (lh
45 tfrc_lh_cleanup(struct tfrc_loss_hist *lh) argument
58 tfrc_lh_calc_i_mean(struct tfrc_loss_hist *lh) argument
87 tfrc_lh_update_i_mean(struct tfrc_loss_hist *lh, struct sk_buff *skb) argument
138 tfrc_lh_interval_add(struct tfrc_loss_hist *lh, struct tfrc_rx_hist *rh, u32 (*calc_first_li)(struct sock *), struct sock *sk) argument
[all...]
H A Dpacket_history.c298 * @lh: Loss Intervals database to update
301 * @calc_first_li: Caller-dependent computation of first loss interval in @lh
312 struct tfrc_loss_hist *lh,
328 is_new_loss = tfrc_lh_interval_add(lh, h, calc_first_li, sk);
311 tfrc_rx_handle_loss(struct tfrc_rx_hist *h, struct tfrc_loss_hist *lh, struct sk_buff *skb, const u64 ndp, u32 (*calc_first_li)(struct sock *), struct sock *sk) argument
H A Dpacket_history.h135 int tfrc_rx_handle_loss(struct tfrc_rx_hist *h, struct tfrc_loss_hist *lh,
/linux-master/net/ipv4/
H A Daf_inet.c1193 struct list_head *lh; local
1205 list_for_each(lh, &inetsw[p->type]) {
1206 answer = list_entry(lh, struct inet_protosw, list);
1212 last_perm = lh;
/linux-master/net/ipv6/
H A Daf_inet6.c754 struct list_head *lh; local
770 list_for_each(lh, &inetsw6[p->type]) {
771 answer = list_entry(lh, struct inet_protosw, list);
777 last_perm = lh;
H A Dip6_fib.c76 list_for_each_entry(w, &(net)->ipv6.fib6_walkers, lh)
81 list_add(&w->lh, &net->ipv6.fib6_walkers);
88 list_del(&w->lh);
2597 INIT_LIST_HEAD(&iter->w.lh);
/linux-master/security/apparmor/include/
H A Dpolicy_unpack.h119 int aa_unpack(struct aa_loaddata *udata, struct list_head *lh, const char **ns);
/linux-master/security/apparmor/
H A Dpolicy.c906 static struct aa_profile *__list_lookup_parent(struct list_head *lh, argument
918 list_for_each_entry(ent, lh, list) {
946 LIST_HEAD(lh);
947 list_splice_init_rcu(&old->base.profiles, &lh, synchronize_rcu);
949 list_for_each_entry_safe(child, tmp, &lh, base.list) {
1066 LIST_HEAD(lh);
1071 error = aa_unpack(udata, &lh, &ns_name);
1081 list_for_each_entry(ent, &lh, list) {
1131 list_for_each_entry(ent, &lh, list) {
1162 p = __list_lookup_parent(&lh, en
1250 struct list_head *lh; local
[all...]
H A Dpolicy_unpack.c1392 * @lh: list to place unpacked profiles in a aa_repl_ws
1396 * @lh in order of discovery, with the list chain stored in base.list
1399 * Returns: profile(s) on @lh else error pointer if fails to unpack
1401 int aa_unpack(struct aa_loaddata *udata, struct list_head *lh, argument
1447 list_add_tail(&ent->list, lh);
1471 list_for_each_entry_safe(ent, tmp, lh, list) {
/linux-master/sound/usb/usx2y/
H A Dusbus428ctldefs.h65 lh, member in struct:usx2y_volume

Completed in 356 milliseconds

123