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

123

/linux-master/net/dccp/ccids/lib/
H A Dloss_interval.h47 static inline void tfrc_lh_init(struct tfrc_loss_hist *lh) argument
49 memset(lh, 0, sizeof(struct tfrc_loss_hist));
52 static inline u8 tfrc_lh_is_initialised(struct tfrc_loss_hist *lh) argument
54 return lh->counter > 0;
57 static inline u8 tfrc_lh_length(struct tfrc_loss_hist *lh) argument
59 return min(lh->counter, (u8)LIH_SIZE);
66 u8 tfrc_lh_update_i_mean(struct tfrc_loss_hist *lh, struct sk_buff *);
67 void tfrc_lh_cleanup(struct tfrc_loss_hist *lh);
/linux-master/net/netfilter/
H A Dxt_l2tp.c84 union l2tp_val *lh; local
95 lh = skb_header_pointer(skb, offs, 2, &lhbuf);
96 if (lh == NULL)
99 flags = ntohs(lh->val16[0]);
113 lh = skb_header_pointer(skb, offs + 4, 4, &lhbuf);
114 if (lh == NULL)
117 data.tid = ntohl(lh->val32);
119 data.sid = ntohl(lh->val32);
123 lh = skb_header_pointer(skb, offs + 2, 4, &lhbuf);
124 if (lh
142 union l2tp_val *lh; local
[all...]
/linux-master/arch/mips/include/asm/
H A Dasm-eva.h24 #define kernel_lh(reg, addr) "lh " reg ", " addr "\n"
111 #define kernel_lh(reg, addr) lh reg, addr
/linux-master/arch/mips/include/asm/mach-ip27/
H A Dkernel-entry-init.h83 lh t1, KV_RO_NASID_OFFSET(t0)
84 lh t2, KV_RW_NASID_OFFSET(t0)
/linux-master/arch/mips/kernel/
H A Dcps-vec-ns16550.S21 # define UART_L lh
/linux-master/arch/powerpc/mm/book3s64/
H A Dradix_pgtable.c1407 struct list_head *lh = (struct list_head *) pgtable; local
1413 INIT_LIST_HEAD(lh);
1415 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
1423 struct list_head *lh; local
1429 lh = (struct list_head *) pgtable;
1430 if (list_empty(lh))
1433 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
1434 list_del(lh);
/linux-master/arch/riscv/kernel/tests/module_test/
H A Dtest_sub16.S9 lh a0, sub16
/linux-master/arch/s390/appldata/
H A Dappldata_base.c110 struct list_head *lh; local
114 list_for_each(lh, &appldata_ops_list) {
115 ops = list_entry(lh, struct appldata_ops, list);
269 struct list_head *lh; local
281 list_for_each(lh, &appldata_ops_list) {
282 tmp_ops = list_entry(lh, struct appldata_ops, list);
/linux-master/arch/s390/mm/
H A Dpgtable.c568 struct list_head *lh = (struct list_head *) pgtable; local
574 INIT_LIST_HEAD(lh);
576 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
582 struct list_head *lh; local
590 lh = (struct list_head *) pgtable;
591 if (list_empty(lh))
594 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
595 list_del(lh);
/linux-master/arch/sparc/mm/
H A Dtlb.c271 struct list_head *lh = (struct list_head *) pgtable; local
277 INIT_LIST_HEAD(lh);
279 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
285 struct list_head *lh; local
292 lh = (struct list_head *) pgtable;
293 if (list_empty(lh))
296 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
297 list_del(lh);
/linux-master/arch/xtensa/lib/
H A Dmulsi3.S58 mula.aa.lh a2, a3
H A Dumulsidi3.S89 #define umul_aa_lh umul.aa.lh
/linux-master/block/partitions/
H A Dldm.c1397 * @lh: Head of a linked list of struct vblk
1403 static void ldm_free_vblks (struct list_head *lh) argument
1407 BUG_ON (!lh);
1409 list_for_each_safe (item, tmp, lh)
/linux-master/drivers/block/drbd/
H A Ddrbd_debugfs.c247 struct drbd_device *device, struct list_head *lh,
252 list_for_each_entry(peer_req, lh, w.list) {
246 seq_print_peer_request(struct seq_file *m, struct drbd_device *device, struct list_head *lh, unsigned long now) argument
/linux-master/drivers/dma/
H A Dfsldma.h191 #define to_fsl_desc(lh) container_of(lh, struct fsl_desc_sw, node)
H A Dmmp_pdma.c132 #define to_mmp_pdma_desc(lh) \
133 container_of(lh, struct mmp_pdma_desc_sw, node)
/linux-master/drivers/dma/sh/
H A Dshdma.h56 #define to_sh_desc(lh) container_of(lh, struct sh_desc, node)
/linux-master/drivers/gpio/
H A Dgpiolib-cdev.c156 static long linehandle_set_config(struct linehandle_state *lh, argument
172 for (i = 0; i < lh->num_descs; i++) {
173 desc = lh->descs[i];
200 struct linehandle_state *lh = file->private_data; local
207 guard(srcu)(&lh->gdev->srcu);
209 if (!rcu_access_pointer(lh->gdev->chip))
216 lh->num_descs, lh->descs,
222 for (i = 0; i < lh->num_descs; i++)
234 if (!test_bit(FLAG_IS_OUT, &lh
266 linehandle_free(struct linehandle_state *lh) argument
297 struct linehandle_state *lh; local
[all...]
/linux-master/drivers/gpu/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_irq.c421 struct list_head *lh; local
429 lh = &adev->dm.irq_handler_list_low_tab[src];
430 INIT_LIST_HEAD(lh);
447 struct list_head *lh; local
459 lh = &adev->dm.irq_handler_list_low_tab[src];
462 if (!list_empty(lh)) {
463 list_for_each_safe(entry, tmp, lh) {
/linux-master/drivers/gpu/drm/exynos/
H A Dexynos_drm_ipp.c481 struct drm_exynos_ipp_limit_val *lh = &l.h, *lv = &l.v; local
494 lh = &l.v;
497 if (!__size_limit_check(buf->rect.w, lh) ||
498 !__align_check(buf->rect.x, lh->align) ||
526 const struct drm_exynos_ipp_limit_val *lh, *lv; local
536 lh = (!swap) ? &limits->h : &limits->v;
541 if (!__scale_limit_check(src->w, dw, lh->min, lh->max) ||
/linux-master/drivers/infiniband/hw/mlx4/
H A Dcm.c527 struct list_head lh; local
532 INIT_LIST_HEAD(&lh);
557 list_splice_init(&dev->sriov.cm_list, &lh);
566 list_move_tail(&ent->list, &lh);
569 list_for_each_entry_safe(map, tmp_map, &lh, list) {
577 list_move_tail(&map->list, &lh);
584 list_for_each_entry_safe(map, tmp_map, &lh, list) {
/linux-master/drivers/md/
H A Ddm-bufio.c454 static void lh_init(struct lock_history *lh, struct dm_buffer_cache *cache, bool write) argument
456 lh->cache = cache;
457 lh->write = write;
458 lh->no_previous = cache->num_locks;
459 lh->previous = lh->no_previous;
462 static void __lh_lock(struct lock_history *lh, unsigned int index) argument
464 if (lh->write) {
465 if (static_branch_unlikely(&no_sleep_enabled) && lh->cache->no_sleep)
466 write_lock_bh(&lh
477 __lh_unlock(struct lock_history *lh, unsigned int index) argument
495 lh_exit(struct lock_history *lh) argument
507 lh_next(struct lock_history *lh, sector_t b) argument
658 struct lock_history *lh; member in struct:evict_wrapper
680 __cache_evict(struct dm_buffer_cache *bc, int list_mode, b_predicate pred, void *context, struct lock_history *lh) argument
703 struct lock_history lh; local
734 __cache_mark_many(struct dm_buffer_cache *bc, int old_mode, int new_mode, b_predicate pred, void *context, struct lock_history *lh) argument
755 struct lock_history lh; local
780 __cache_iterate(struct dm_buffer_cache *bc, int list_mode, iter_fn fn, void *context, struct lock_history *lh) argument
811 struct lock_history lh; local
[all...]
/linux-master/drivers/media/platform/samsung/s5p-mfc/
H A Ds5p_mfc.c130 void s5p_mfc_cleanup_queue(struct list_head *lh, struct vb2_queue *vq) argument
135 while (!list_empty(lh)) {
136 b = list_entry(lh->next, struct s5p_mfc_buf, list);
H A Ds5p_mfc_common.h778 void s5p_mfc_cleanup_queue(struct list_head *lh, struct vb2_queue *vq);
/linux-master/drivers/net/ethernet/altera/
H A Daltera_sgdma.c447 list_add_tail(&buffer->lh, &priv->txlisthd);
458 list_add_tail(&buffer->lh, &priv->rxlisthd);
470 list_remove_head(&priv->txlisthd, buffer, struct tse_buffer, lh);
483 list_remove_head(&priv->rxlisthd, buffer, struct tse_buffer, lh);
497 list_peek_head(&priv->rxlisthd, buffer, struct tse_buffer, lh);

Completed in 559 milliseconds

123