Home
last modified time | relevance | path

Searched refs:first (Results 1 – 25 of 103) sorted by relevance

12345

/xen-4.10.0-shim-comet/tools/xenstore/
A Dlist.h227 first->prev = head; in __list_splice()
228 head->next = first; in __list_splice()
372 return !h->first; in hlist_empty()
420 struct hlist_node *first = h->first; in hlist_add_head() local
421 n->next = first; in hlist_add_head()
422 if (first) in hlist_add_head()
424 h->first = n; in hlist_add_head()
430 struct hlist_node *first = h->first; in hlist_add_head_rcu() local
431 n->next = first; in hlist_add_head_rcu()
433 if (first) in hlist_add_head_rcu()
[all …]
/xen-4.10.0-shim-comet/xen/include/xen/
A Dlist.h344 first->prev = head; in __list_splice()
345 head->next = first; in __list_splice()
721 return !h->first; in hlist_empty()
796 struct hlist_node *first = h->first; in hlist_add_head() local
797 n->next = first; in hlist_add_head()
798 if (first) in hlist_add_head()
800 h->first = n; in hlist_add_head()
826 struct hlist_node *first = h->first; in hlist_add_head_rcu() local
827 n->next = first; in hlist_add_head_rcu()
830 if (first) in hlist_add_head_rcu()
[all …]
A Dmm.h428 struct page_info *first, *last, *at; in page_list_splice() local
440 first = list->next; in page_list_splice()
444 ASSERT(first->list.prev == PAGE_LIST_NULL); in page_list_splice()
445 ASSERT(first->list.prev == at->list.prev); in page_list_splice()
446 head->next = first; in page_list_splice()
/xen-4.10.0-shim-comet/xen/arch/x86/
A Dextable.c67 search_one_extable(const struct exception_table_entry *first, in search_one_extable() argument
74 while ( first <= last ) in search_one_extable()
76 mid = (last - first) / 2 + first; in search_one_extable()
81 first = mid+1; in search_one_extable()
A Dmsi.c930 msix->table.first = PFN_DOWN(table_paddr); in msix_capability_init()
933 WARN_ON(rangeset_overlaps_range(mmio_ro_ranges, msix->table.first, in msix_capability_init()
943 msix->pba.first = PFN_DOWN(pba_paddr); in msix_capability_init()
946 WARN_ON(rangeset_overlaps_range(mmio_ro_ranges, msix->pba.first, in msix_capability_init()
992 if ( rangeset_add_range(mmio_ro_ranges, msix->table.first, in msix_capability_init()
995 if ( rangeset_add_range(mmio_ro_ranges, msix->pba.first, in msix_capability_init()
1018 WARN_ON(msix->table.first != (table_paddr >> PAGE_SHIFT)); in msix_capability_init()
1141 if ( rangeset_remove_range(mmio_ro_ranges, msix->table.first, in _pci_cleanup_msix()
1144 if ( rangeset_remove_range(mmio_ro_ranges, msix->pba.first, in _pci_cleanup_msix()
/xen-4.10.0-shim-comet/tools/blktap2/include/
A Dlist.h94 struct list_head *first = list->next; in __list_splice() local
97 first->prev = prev; in __list_splice()
98 prev->next = first; in __list_splice()
/xen-4.10.0-shim-comet/docs/misc/
A Dkexec_and_kdump.txt25 Xen -> Xen | first hypervisor & | second hypervisor &
28 Xen -> Linux | first hypervisor & | second kernel
31 Linux -> Xen | first kernel | second hypervisor &
34 Linux -> Linux | first kernel | second kernel
38 as the first hypervisor and dom0 kernel that are used before kexec if you
43 Linux, it may be the same as the first kernel image that that runs before
101 Xen -> Linux | first hypervisor & | crash kernel
104 Linux -> Linux | first kernel | crash kernel
115 to run without disrupting the memory used by the first kernel. This area is
A Dnetif-staging-grants.pandoc122 2) Make first request for the packet.
123 The first request contains the whole packet size, checksum info,
138 8) Fill the total packet size in the first request.
182 region (linear part of the skb) *only* from the first slot.
210 on the first produced request from frontend.
331 5) Sets up flags/checksum info on first request.
339 9) Gets a request from the ring for the first extra info [optional]
359 17) Consumes a response from the ring (first response for a packet)
374 23) Set checksum info based on first response flags.
389 receive a notification on the first newly produced response.
[all …]
A Dkconfig-language.txt69 default values are visible, only the first defined one is active.
126 or equal to the first symbol and smaller than or equal to the second
131 the indentation level, this means it ends at the first line which has
132 a smaller indentation than the first line of the help text.
262 The first five also start the definition of a menu entry.
348 first glance and most of which have become idioms in several Kconfig
/xen-4.10.0-shim-comet/tools/libxc/
A Dxc_dom_core.c453 if ( pfn >= (phys->first + phys->count) ) in xc_dom_pfn_to_ptr_retcount()
458 if ( (pfn + count) <= phys->first ) in xc_dom_pfn_to_ptr_retcount()
460 if ( (pfn < phys->first) || in xc_dom_pfn_to_ptr_retcount()
461 ((pfn + count) > (phys->first + phys->count)) ) in xc_dom_pfn_to_ptr_retcount()
476 if ( pfn < phys->first ) in xc_dom_pfn_to_ptr_retcount()
478 if ( pfn >= phys->first + phys->count ) in xc_dom_pfn_to_ptr_retcount()
480 *count_out = phys->count - (pfn - phys->first); in xc_dom_pfn_to_ptr_retcount()
482 return phys->ptr + ((pfn - phys->first) << page_shift); in xc_dom_pfn_to_ptr_retcount()
499 phys->first = pfn; in xc_dom_pfn_to_ptr_retcount()
648 if ( (pfn >= phys->first) && (pfn < (phys->first + phys->count)) ) in xc_dom_unmap_one()
[all …]
/xen-4.10.0-shim-comet/xen/arch/arm/
A Dmm.c749 lpae_t *first, *domheap, pte; in init_secondary_pagetables() local
755 if ( domheap == NULL || first == NULL ) in init_secondary_pagetables()
759 free_xenheap_page(first); in init_secondary_pagetables()
764 memcpy(first, cpu0_pgtable, PAGE_SIZE); in init_secondary_pagetables()
779 clean_dcache_va_range(first, PAGE_SIZE); in init_secondary_pagetables()
782 per_cpu(xen_pgtable, cpu) = first; in init_secondary_pagetables()
786 init_ttbr = __pa(first); in init_secondary_pagetables()
817 lpae_t *first, pte; in setup_xenheap_mappings() local
853 first = slot == xenheap_first_first_slot ? in setup_xenheap_mappings()
859 first = xenheap_first_first; in setup_xenheap_mappings()
[all …]
A Dvgic.c606 int first, end; in vgic_allocate_virq() local
612 first = 16; in vgic_allocate_virq()
617 first = 32; in vgic_allocate_virq()
627 virq = find_next_zero_bit(d->arch.vgic.allocated_irqs, end, first); in vgic_allocate_virq()
A Dtraps.c1765 uint32_t *first = NULL, *second = NULL; in dump_guest_s1_walk() local
1791 first = map_domain_page(mfn); in dump_guest_s1_walk()
1795 offset, mfn_to_maddr(mfn), first[offset]); in dump_guest_s1_walk()
1796 if ( !(first[offset] & 0x1) || in dump_guest_s1_walk()
1797 (first[offset] & 0x2) ) in dump_guest_s1_walk()
1800 mfn = gfn_to_mfn(d, gaddr_to_gfn(first[offset])); in dump_guest_s1_walk()
1814 if (first) unmap_domain_page(first); in dump_guest_s1_walk()
/xen-4.10.0-shim-comet/xen/include/asm-x86/
A Dguest_access.h131 #define guest_handle_subrange_okay(hnd, first, last) \ argument
133 array_access_ok((hnd).p + (first), \
134 (last)-(first)+1, \
/xen-4.10.0-shim-comet/xen/arch/x86/cpu/mcheck/
A Dmce_intel.c751 int ext_num = 0, first; in intel_init_mca() local
768 first = mce_firstbank(c); in intel_init_mca()
778 first, ext_num, in intel_init_mca()
789 firstbank = first; in intel_init_mca()
793 first != firstbank || ext_num != nr_intel_ext_msrs || in intel_init_mca()
799 smp_processor_id(), first, ext_num, in intel_init_mca()
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/
A Dintercept.c36 paddr_t first = hvm_mmio_first_byte(p), last; in hvm_mmio_accept() local
40 if ( !handler->mmio.ops->check(current, first) ) in hvm_mmio_accept()
45 if ( last != first && in hvm_mmio_accept()
/xen-4.10.0-shim-comet/tools/libxc/include/
A Dxc_dom.h56 xen_pfn_t first; member
385 void *xc_dom_pfn_to_ptr(struct xc_dom_image *dom, xen_pfn_t first,
387 void *xc_dom_pfn_to_ptr_retcount(struct xc_dom_image *dom, xen_pfn_t first,
/xen-4.10.0-shim-comet/m4/
A Dpkg.m455 # only at the first occurence in configure.ac, so if the first place
99 # Note that if there is a possibility the first call to
168 # Note that if there is a possibility the first call to
/xen-4.10.0-shim-comet/xen/include/asm-arm/
A Dsetup.h75 void (*cb)(paddr_t, paddr_t), int first);
/xen-4.10.0-shim-comet/unmodified_drivers/linux-2.6/
A DREADME23 xen-balloon.ko. Load xen-platform-pci first, and then
/xen-4.10.0-shim-comet/docs/man/
A Dxenstore-chmod.pod.138 The first permission entry is the domain owning the key (the owner)
A Dxenstore-ls.pod.148 The first permission entry is the domain owning the key (the owner)
A Dxl-network-configuration.pod.556 bit (bit 2 of the first byte) and clear the multicast bit (bit 1
57 of the first byte). In other words the first byte should have the
/xen-4.10.0-shim-comet/scripts/
A Dget_maintainer.pl2050 my $first = $nw[@nw - 3];
2054 if (((length($first) == 1 && $first =~ m/[A-Za-z]/) ||
2055 (length($first) == 2 && substr($first, -1) eq ".")) ||
2058 $name = "$first $middle $last";
/xen-4.10.0-shim-comet/tools/xl/
A Dxl_parse.c1489 b_info->ioports[i].first = start; in parse_config_data()
2389 const char *first, *after; in trim() local
2391 for (first = input; in trim()
2392 *first && predicate((unsigned char)first[0]); in trim()
2393 first++) in trim()
2396 for (after = first + strlen(first); in trim()
2397 after > first && predicate((unsigned char)after[-1]); in trim()
2401 size_t len_nonnull = after - first; in trim()
2404 memcpy(result, first, len_nonnull); in trim()

Completed in 42 milliseconds

12345