/xen-4.10.0-shim-comet/xen/arch/x86/pv/ |
A D | traps.c | 172 BUG_ON(st->vcpu == NULL); in nmi_mce_softirq() 181 if ( (cpu != st->processor) || in nmi_mce_softirq() 182 (st->processor != st->vcpu->processor) ) in nmi_mce_softirq() 189 vcpu_set_hard_affinity(st->vcpu, cpumask_of(st->processor)); in nmi_mce_softirq() 198 vcpu_kick(st->vcpu); in nmi_mce_softirq() 199 st->vcpu = NULL; in nmi_mce_softirq() 226 st->domain = v->domain; in pv_raise_interrupt() 227 st->processor = v->processor; in pv_raise_interrupt() 233 st->vcpu = NULL; in pv_raise_interrupt() 246 st->domain = v->domain; in pv_raise_interrupt() [all …]
|
/xen-4.10.0-shim-comet/xen/tools/kconfig/ |
A D | expr.h | 158 #define for_all_properties(sym, st, tok) \ argument 159 for (st = sym->prop; st; st = st->next) \ 160 if (st->type == (tok)) 161 #define for_all_defaults(sym, st) for_all_properties(sym, st, P_DEFAULT) argument 162 #define for_all_choices(sym, st) for_all_properties(sym, st, P_CHOICE) argument 163 #define for_all_prompts(sym, st) \ argument 164 for (st = sym->prop; st; st = st->next) \ 165 if (st->text)
|
A D | confdata.c | 750 struct stat st; in conf_write() local 753 if (!stat(name, &st) && S_ISDIR(st.st_mode)) { in conf_write()
|
/xen-4.10.0-shim-comet/stubdom/ |
A D | newlib.patch | 290 +#define st0 %st 291 +#define st1 %st(1) 292 +#define st2 %st(2) 293 +#define st3 %st(3) 294 +#define st4 %st(4) 295 +#define st5 %st(5) 296 +#define st6 %st(6) 297 +#define st7 %st(7) 444 +#define st0 %st 445 +#define st1 %st(1) [all …]
|
/xen-4.10.0-shim-comet/xen/common/ |
A D | sched_credit2.c | 2436 st->load_delta = delta; in consider() 2543 st.lrqd = c2rqd(ops, cpu); in balance_load() 2551 st.load_delta = 0; in balance_load() 2557 st.orqd = prv->rqd + i; in balance_load() 2559 if ( st.orqd == st.lrqd in balance_load() 2565 delta = st.lrqd->b_avgload - st.orqd->b_avgload; in balance_load() 2645 d.lrq_id = st.lrqd->id; in balance_load() 2700 if ( st.best_push_svc ) in balance_load() 2701 migrate(ops, st.best_push_svc, st.orqd, now); in balance_load() 2702 if ( st.best_pull_svc ) in balance_load() [all …]
|
A D | page_alloc.c | 1205 struct scrub_wait_state *st = data; in scrub_continue() local 1207 if ( st->drop ) in scrub_continue() 1210 if ( st->pg->u.free.scrub_state == BUDDY_SCRUB_ABORT ) in scrub_continue() 1213 st->drop = true; in scrub_continue() 1214 st->pg->u.free.first_dirty = st->first_dirty; in scrub_continue() 1216 st->pg->u.free.scrub_state = BUDDY_NOT_SCRUBBING; in scrub_continue() 1243 struct scrub_wait_state st; in scrub_free_pages() local 1302 st.pg = pg; in scrub_free_pages() 1309 st.first_dirty = (i >= (1U << order) - 1) ? in scrub_free_pages() 1311 st.drop = false; in scrub_free_pages() [all …]
|
/xen-4.10.0-shim-comet/xen/include/asm-x86/ |
A D | grant_table.h | 81 static inline void gnttab_clear_flag(unsigned int nr, uint16_t *st) in gnttab_clear_flag() argument 87 asm volatile ("lock btrw %w1,%0" : "=m" (*st) : "Ir" (nr), "m" (*st)); in gnttab_clear_flag()
|
A D | mm.h | 259 #define page_state_is(pg, st) (((pg)->count_info&PGC_state) == PGC_state_##st) argument
|
/xen-4.10.0-shim-comet/tools/xcutils/ |
A D | readnotes.c | 180 struct stat st; in main() local 203 if (fstat(fd, &st) == -1) in main() 210 image = mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0); in main() 233 if ( payload_offset >= st.st_size ) in main() 238 if ( (payload_offset + payload_length) > st.st_size ) in main() 247 size = st.st_size; in main()
|
/xen-4.10.0-shim-comet/tools/blktap2/drivers/ |
A D | block-qcow.c | 152 if(S_ISBLK(st->st_mode)) { in get_filesize() 305 struct stat st; in qtruncate() local 312 ret = fstat(fd, &st); in qtruncate() 315 if (S_ISBLK(st.st_mode)) in qtruncate() 686 struct stat st; in tdqcow_read_header() local 691 err = fstat(fd, &st); in tdqcow_read_header() 705 if (st.st_size < size) in tdqcow_read_header() 706 expected = st.st_size; in tdqcow_read_header() 736 struct stat st; in tdqcow_load_l1_table() local 790 expected = st.st_size; in tdqcow_load_l1_table() [all …]
|
A D | qcow.h | 79 int get_filesize(char *filename, uint64_t *size, struct stat *st);
|
A D | aes.c | 49 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((s… argument
|
/xen-4.10.0-shim-comet/xen/xsm/flask/ |
A D | flask_op.c | 432 struct avc_cache_stats *st; in flask_security_avc_cachestats() local 439 st = &per_cpu(avc_cache_stats, arg->cpu); in flask_security_avc_cachestats() 441 arg->lookups = st->lookups; in flask_security_avc_cachestats() 442 arg->hits = st->hits; in flask_security_avc_cachestats() 443 arg->misses = st->misses; in flask_security_avc_cachestats() 444 arg->allocations = st->allocations; in flask_security_avc_cachestats() 445 arg->reclaims = st->reclaims; in flask_security_avc_cachestats() 446 arg->frees = st->frees; in flask_security_avc_cachestats()
|
/xen-4.10.0-shim-comet/tools/xenstore/ |
A D | tdb.c | 315 struct stat st; in tdb_oob() local 328 if (fstat(tdb->fd, &st) == -1) in tdb_oob() 331 if (st.st_size < (off_t)len) { in tdb_oob() 336 (int)len, (int)st.st_size)); in tdb_oob() 344 tdb->map_size = st.st_size; in tdb_oob() 1540 struct stat st; local 1635 if (tdb_already_open(st.st_dev, st.st_ino)) { 1638 name, (int)st.st_dev, (int)st.st_ino)); 1648 tdb->map_size = st.st_size; 1649 tdb->device = st.st_dev; [all …]
|
/xen-4.10.0-shim-comet/tools/libxl/ |
A D | libxl_stream_write.c | 444 struct stat st; in write_emulator_context_record() local 464 if (fstat(readfd, &st)) { in write_emulator_context_record() 470 if (!S_ISREG(st.st_mode)) { in write_emulator_context_record() 477 rec->length = st.st_size + sizeof(stream->emu_sub_hdr); in write_emulator_context_record() 478 stream->emu_body = libxl__malloc(NOGC, st.st_size); in write_emulator_context_record() 488 dc->bytes_to_read = st.st_size; in write_emulator_context_record()
|
A D | libxl_exec.c | 115 int st = WEXITSTATUS(status); in libxl_report_child_exitstatus() local 116 if (st) in libxl_report_child_exitstatus() 118 " with error status %d", what, (unsigned long)pid, st); in libxl_report_child_exitstatus()
|
A D | libxl_pci.c | 449 struct stat st; in sysfs_dev_unbind() local 456 if ( !lstat(spath, &st) ) { in sysfs_dev_unbind() 639 struct stat st; in pciback_dev_is_assigned() local 653 rc = lstat(spath, &st); in pciback_dev_is_assigned() 755 struct stat st; in libxl__device_pci_assignable_add() local 765 if ( lstat(spath, &st) ) { in libxl__device_pci_assignable_add() 898 struct stat st; in pci_multifunction_check() local 911 if ( lstat(path, &st) ) { in pci_multifunction_check()
|
A D | libxl_usb.c | 29 struct stat st; in usbback_is_loaded() local 31 r = lstat(SYSFS_USBBACK_DRIVER, &st); in usbback_is_loaded() 1309 struct stat st; in bind_usbintf() local 1319 r = lstat(intf_path, &st); in bind_usbintf() 1351 struct stat st; in usbintf_is_assigned() local 1354 r = lstat(spath, &st); in usbintf_is_assigned()
|
A D | libxl_bootloader.c | 434 struct stat st; in bootloader_disk_attached_cb() local 442 if ( lstat(bltmp, &st) ) in bootloader_disk_attached_cb()
|
/xen-4.10.0-shim-comet/xen/include/asm-arm/ |
A D | system.h | 25 #define wmb() dsb(st)
|
A D | mm.h | 121 #define page_state_is(pg, st) (((pg)->count_info&PGC_state) == PGC_state_##st) argument
|
/xen-4.10.0-shim-comet/tools/hotplug/Linux/ |
A D | block-iscsi | 114 iscsiadm -m discovery -t st -p $portal 2>&1 | grep -q "$iqn" || \
|
/xen-4.10.0-shim-comet/xen/crypto/ |
A D | rijndael.c | 722 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st… argument
|
/xen-4.10.0-shim-comet/tools/pygrub/src/ |
A D | pygrub | 36 st = os.fstat(fd) 37 if (not stat.S_ISCHR(st.st_mode)):
|
/xen-4.10.0-shim-comet/tools/firmware/rombios/ |
A D | rombios.c | 2619 Bit8u sc, sn, cl, ch, st; 2656 st = inb(iobase1+ATA_CB_STAT); 2660 } else if ((cl==0x00) && (ch==0x00) && (st!=0x00)) { 9949 ;; second slot entry: 1st PCI slot 10165 add si, #0x20 ;; set pointer to 1st entry
|