Home
last modified time | relevance | path

Searched refs:st (Results 1 – 25 of 27) sorted by relevance

12

/xen-4.10.0-shim-comet/xen/arch/x86/pv/
A Dtraps.c172 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 Dexpr.h158 #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 Dconfdata.c750 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 Dnewlib.patch290 +#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 Dsched_credit2.c2436 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 Dpage_alloc.c1205 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 Dgrant_table.h81 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 Dmm.h259 #define page_state_is(pg, st) (((pg)->count_info&PGC_state) == PGC_state_##st) argument
/xen-4.10.0-shim-comet/tools/xcutils/
A Dreadnotes.c180 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 Dblock-qcow.c152 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 Dqcow.h79 int get_filesize(char *filename, uint64_t *size, struct stat *st);
A Daes.c49 # 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 Dflask_op.c432 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 Dtdb.c315 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 Dlibxl_stream_write.c444 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 Dlibxl_exec.c115 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 Dlibxl_pci.c449 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 Dlibxl_usb.c29 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 Dlibxl_bootloader.c434 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 Dsystem.h25 #define wmb() dsb(st)
A Dmm.h121 #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 Dblock-iscsi114 iscsiadm -m discovery -t st -p $portal 2>&1 | grep -q "$iqn" || \
/xen-4.10.0-shim-comet/xen/crypto/
A Drijndael.c722 #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 Dpygrub36 st = os.fstat(fd)
37 if (not stat.S_ISCHR(st.st_mode)):
/xen-4.10.0-shim-comet/tools/firmware/rombios/
A Drombios.c2619 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

Completed in 60 milliseconds

12