| /linux/drivers/xen/ |
| H A D | balloon.c | 134 static xen_pfn_t frame_list[PAGE_SIZE / sizeof(xen_pfn_t)]; variable 396 if (nr_pages > ARRAY_SIZE(frame_list)) in increase_reservation() 397 nr_pages = ARRAY_SIZE(frame_list); in increase_reservation() 406 frame_list[i] = page_to_xen_pfn(page); in increase_reservation() 410 rc = xenmem_reservation_increase(nr_pages, frame_list); in increase_reservation() 418 xenmem_reservation_va_mapping_update(1, &page, &frame_list[i]); in increase_reservation() 441 if (nr_pages > ARRAY_SIZE(frame_list)) in decrease_reservation() 442 nr_pages = ARRAY_SIZE(frame_list); in decrease_reservation() 471 frame_list[i++] = xen_page_to_gfn(page); in decrease_reservation() 482 ret = xenmem_reservation_decrease(nr_pages, frame_list); in decrease_reservation()
|
| H A D | grant-table.c | 1414 set_xen_guest_handle(getframes.frame_list, sframes); in gnttab_map_frames_v2() 1486 set_xen_guest_handle(setup.frame_list, frames); in gnttab_map()
|
| H A D | privcmd.c | 804 set_xen_guest_handle(xdata.frame_list, pfns); in privcmd_ioctl_mmap_resource()
|
| /linux/drivers/usb/dwc2/ |
| H A D | hcd_ddma.c | 116 if (hsotg->frame_list) in dwc2_frame_list_alloc() 120 hsotg->frame_list = kzalloc(hsotg->frame_list_sz, GFP_ATOMIC | GFP_DMA); in dwc2_frame_list_alloc() 121 if (!hsotg->frame_list) in dwc2_frame_list_alloc() 124 hsotg->frame_list_dma = dma_map_single(hsotg->dev, hsotg->frame_list, in dwc2_frame_list_alloc() 137 if (!hsotg->frame_list) { in dwc2_frame_list_free() 145 kfree(hsotg->frame_list); in dwc2_frame_list_free() 146 hsotg->frame_list = NULL; in dwc2_frame_list_free() 216 if (!hsotg->frame_list) { in dwc2_update_frame_list() 218 hsotg->frame_list); in dwc2_update_frame_list() 232 hsotg->frame_list[j] |= 1 << chan->hc_num; in dwc2_update_frame_list() [all …]
|
| H A D | hcd.c | 5306 hsotg->frame_list = NULL; in dwc2_hcd_init()
|
| /linux/drivers/net/wireless/intel/iwlwifi/mld/ |
| H A D | time_sync.c | 23 skb_queue_head_init(&time_sync->frame_list); in iwl_mld_init_time_sync() 93 skb_queue_purge(&time_sync->frame_list); in iwl_mld_deinit_time_sync() 105 skb_queue_tail(&time_sync->frame_list, skb); in iwl_mld_time_sync_frame() 152 while ((skb = skb_dequeue(&time_sync->frame_list))) { in iwl_mld_time_sync_find_skb()
|
| H A D | time_sync.h | 12 struct sk_buff_head frame_list; member
|
| /linux/drivers/net/wireless/intel/iwlwifi/mvm/ |
| H A D | time-sync.c | 12 skb_queue_head_init(&data->frame_list); in iwl_mvm_init_time_sync() 42 while ((skb = skb_dequeue(&mvm->time_sync.frame_list))) { in iwl_mvm_time_sync_find_skb() 170 skb_queue_purge(&mvm->time_sync.frame_list); in iwl_mvm_time_sync_config()
|
| H A D | time-sync.h | 24 skb_queue_tail(&mvm->time_sync.frame_list, skb); in iwl_mvm_time_sync_frame()
|
| /linux/include/xen/interface/ |
| H A D | grant_table.h | 330 GUEST_HANDLE(xen_pfn_t) frame_list; 473 GUEST_HANDLE(uint64_t) frame_list;
|
| H A D | memory.h | 324 GUEST_HANDLE(xen_pfn_t) frame_list;
|
| /linux/arch/x86/include/asm/xen/ |
| H A D | hypercall.h | 280 HYPERVISOR_set_gdt(unsigned long *frame_list, int entries) in HYPERVISOR_set_gdt() argument 282 return _hypercall2(int, set_gdt, frame_list, entries); in HYPERVISOR_set_gdt()
|
| /linux/include/linux/usb/ |
| H A D | ehci_def.h | 100 u32 frame_list; /* points to periodic list */ member
|
| /linux/drivers/usb/host/ |
| H A D | ehci-fsl.c | 471 pdata->pm_frame_list = ehci_readl(ehci, &ehci->regs->frame_list); in ehci_fsl_mpc512x_drv_suspend() 537 ehci_writel(ehci, pdata->pm_frame_list, &ehci->regs->frame_list); in ehci_fsl_mpc512x_drv_resume()
|
| H A D | oxu210hp-hcd.c | 162 u32 frame_list; /* points to periodic list */ member 366 u32 frame_list[DEFAULT_I_TDPS]; member 1146 oxu->mem->frame_list[i] = EHCI_LIST_END; in ehci_mem_init() 1163 oxu->periodic = (__le32 *) &oxu->mem->frame_list; in ehci_mem_init() 3104 writel(oxu->periodic_dma, &oxu->regs->frame_list); in oxu_run() 3934 writel(oxu->periodic_dma, &oxu->regs->frame_list); in oxu_bus_resume()
|
| H A D | ehci-hub.c | 414 ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list); in ehci_bus_resume()
|
| /linux/drivers/usb/fotg210/ |
| H A D | fotg210-hcd.h | 267 u32 frame_list; /* points to periodic list */ member
|
| /linux/net/mac80211/ |
| H A D | rx.c | 3117 struct sk_buff_head frame_list; in __ieee80211_rx_h_amsdu() local 3142 __skb_queue_head_init(&frame_list); in __ieee80211_rx_h_amsdu() 3170 ieee80211_amsdu_to_8023s(skb, &frame_list, dev->dev_addr, in __ieee80211_rx_h_amsdu() 3176 while (!skb_queue_empty(&frame_list)) { in __ieee80211_rx_h_amsdu() 3177 rx->skb = __skb_dequeue(&frame_list); in __ieee80211_rx_h_amsdu()
|