Home
last modified time | relevance | path

Searched refs:uf (Results 1 – 9 of 9) sorted by relevance

/linux/drivers/scsi/isci/
H A Dunsolicited_frame_control.c63 struct sci_unsolicited_frame *uf; in sci_unsolicited_frame_control_construct() local
110 uf = &uf_control->buffers.array[i]; in sci_unsolicited_frame_control_construct()
114 uf->buffer = virt; in sci_unsolicited_frame_control_construct()
115 uf->header = &uf_control->headers.array[i]; in sci_unsolicited_frame_control_construct()
116 uf->state = UNSOLICITED_FRAME_EMPTY; in sci_unsolicited_frame_control_construct()
/linux/drivers/usb/host/
H A Dehci-sched.c270 unsigned uframe, uf, x; in compute_tt_budget() local
285 for (uf = ps->phase_uf; uf < 8; ++uf) { in compute_tt_budget()
286 x += budget_line[uf]; in compute_tt_budget()
290 budget_line[uf] = x; in compute_tt_budget()
293 budget_line[uf] = 125; in compute_tt_budget()
368 unsigned i, uf; in tt_available() local
374 uf = frame << 3; in tt_available()
375 for (i = 0; i < 8; (++i, ++uf)) in tt_available()
376 tt_usecs[i] = ehci->tt_budget[uf]; in tt_available()
1392 unsigned frame, uf; in sitd_slot_ok() local
[all …]
/linux/drivers/scsi/bfa/
H A Dbfa_fcs.c1522 bfa_fcs_uf_recv(void *cbarg, struct bfa_uf_s *uf) in bfa_fcs_uf_recv() argument
1525 struct fchs_s *fchs = bfa_uf_get_frmbuf(uf); in bfa_fcs_uf_recv()
1526 u16 len = bfa_uf_get_frmlen(uf); in bfa_fcs_uf_recv()
1535 bfa_stats(fcs, uf.tagged); in bfa_fcs_uf_recv()
1536 vft = bfa_uf_get_frmbuf(uf); in bfa_fcs_uf_recv()
1547 bfa_stats(fcs, uf.vfid_unknown); in bfa_fcs_uf_recv()
1548 bfa_uf_free(uf); in bfa_fcs_uf_recv()
1560 bfa_stats(fcs, uf.untagged); in bfa_fcs_uf_recv()
1573 bfa_uf_free(uf); in bfa_fcs_uf_recv()
/linux/tools/testing/vma/include/
H A Dstubs.h43 struct list_head *uf) in userfaultfd_unmap_complete() argument
122 struct list_head *uf) in do_munmap() argument
/linux/drivers/media/v4l2-core/
H A Dv4l2-vp9.c1675 u32 uf) in _adapt_coeff() argument
1687 adapt_probs_variant_a_coef(p, *counts->coeff[i][j][k][l][m], uf); in _adapt_coeff()
1688 adapt_probs_variant_b_coef(p, counts_more_coefs, uf); in _adapt_coeff()
1695 unsigned int uf) in _adapt_coef_probs() argument
1702 _adapt_coeff(i, j, k, probs, counts, uf); in _adapt_coef_probs()
/linux/drivers/usb/fotg210/
H A Dfotg210-hcd.c4294 struct fotg210_iso_packet *uf = &iso_sched->packet[index]; in itd_patch() local
4300 itd->hw_transaction[uframe] = uf->transaction; in itd_patch()
4302 itd->hw_bufp[pg] |= cpu_to_hc32(fotg210, uf->bufp & ~(u32)0); in itd_patch()
4303 itd->hw_bufp_hi[pg] |= cpu_to_hc32(fotg210, (u32)(uf->bufp >> 32)); in itd_patch()
4306 if (unlikely(uf->cross)) { in itd_patch()
4307 u64 bufp = uf->bufp + 4096; in itd_patch()
4575 unsigned uf; in scan_frame_queue() local
4597 for (uf = 0; uf < 8; uf++) { in scan_frame_queue()
4598 if (q.itd->hw_transaction[uf] & in scan_frame_queue()
4602 if (uf < 8) { in scan_frame_queue()
[all …]
/linux/drivers/net/
H A Dtun.c857 struct tun_filter uf; in update_filter() local
860 if (copy_from_user(&uf, arg, sizeof(uf))) in update_filter()
863 if (!uf.count) { in update_filter()
869 alen = ETH_ALEN * uf.count; in update_filter()
870 addr = memdup_user(arg + sizeof(uf), alen); in update_filter()
881 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++) in update_filter()
889 for (; n < uf.count; n++) { in update_filter()
899 if ((uf.flags & TUN_FLT_ALLMULTI)) in update_filter()
/linux/include/linux/
H A Dskbuff.h3819 #define __skb_frag_dma_map1(dev, frag, offset, uf, uo) ({ \ argument
3820 const skb_frag_t *uf = (frag); \
3823 __skb_frag_dma_map(dev, uf, uo, skb_frag_size(uf) - uo, \
/linux/arch/x86/kvm/mmu/
H A Dmmu.c5653 u16 uf = 0; in update_permission_bitmask() local
5682 uf = (pfec & PFERR_USER_MASK) ? (u16)~u : 0; in update_permission_bitmask()
5714 mmu->permissions[index] = ff | uf | wf | rf | smapf; in update_permission_bitmask()
5756 bool check_pkey, check_write, ff, uf, wf, pte_user; in update_pkru_bitmask() local
5760 uf = pfec & PFERR_USER_MASK; in update_pkru_bitmask()
5775 check_write = check_pkey && wf && (uf || wp); in update_pkru_bitmask()