Searched refs:nx (Results 1 – 10 of 10) sorted by relevance
/xen-4.10.0-shim-comet/xen/arch/x86/mm/shadow/ |
A D | private.h | 523 u32 x, nx; in sh_get_ref() local 530 nx = x + 1; in sh_get_ref() 532 if ( unlikely(nx >= (1U << PAGE_SH_REFCOUNT_WIDTH)) ) in sh_get_ref() 540 sp->u.sh.count = nx; in sh_get_ref() 556 u32 x, nx; in sh_put_ref() local 570 nx = x - 1; in sh_put_ref() 580 sp->u.sh.count = nx; in sh_put_ref() 582 if ( unlikely(nx == 0) ) in sh_put_ref()
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | mm.c | 1854 unsigned long x, nx; in page_lock() local 1859 nx = x + (1 | PGT_locked); in page_lock() 1862 !(nx & PGT_count_mask) ) in page_lock() 1877 nx = x - (1 | PGT_locked); in page_unlock() 1879 ASSERT(nx & PGT_count_mask); in page_unlock() 2207 nx = x - 1; in put_page() 2280 nx = x + 1; in get_page_light() 2463 nx = x - 1; in _put_page_type() 2545 nx = x + 1; in __get_page_type() 2596 nx |= type; in __get_page_type() [all …]
|
/xen-4.10.0-shim-comet/xen/common/ |
A D | page_alloc.c | 1471 unsigned long nx, x, y = pg->count_info; in mark_page_offline() local 1477 nx = x = y; in mark_page_offline() 1482 nx &= ~PGC_state; in mark_page_offline() 1483 nx |= (((x & PGC_state) == PGC_state_free) in mark_page_offline() 1488 nx |= PGC_broken; in mark_page_offline() 1490 if ( x == nx ) in mark_page_offline() 1492 } while ( (y = cmpxchg(&pg->count_info, x, nx)) != x ); in mark_page_offline() 1633 unsigned long x, nx, y; in online_page() local 1673 nx = (x & ~PGC_state) | PGC_state_inuse; in online_page() 1674 } while ( (y = cmpxchg(&pg->count_info, x, nx)) != x ); in online_page()
|
/xen-4.10.0-shim-comet/xen/arch/arm/ |
A D | mm.c | 1363 unsigned long nx, x, y = page->count_info; in put_page() local 1368 nx = x - 1; in put_page() 1370 while ( unlikely((y = cmpxchg(&page->count_info, x, nx)) != x) ); in put_page() 1372 if ( unlikely((nx & PGC_count_mask) == 0) ) in put_page()
|
/xen-4.10.0-shim-comet/tools/xl/ |
A D | xl_sxp.c | 97 fprintf(fh, "\t\t\t(nx %s)\n", libxl_defbool_to_string(b_info->u.hvm.nx)); in printf_info_sexp()
|
A D | xl_parse.c | 1246 xlu_cfg_get_defbool(config, "nx", &b_info->u.hvm.nx, 0); in parse_config_data()
|
/xen-4.10.0-shim-comet/tools/libxl/ |
A D | libxl_types.idl | 537 ("nx", libxl_defbool),
|
A D | libxl_create.c | 305 libxl_defbool_setdefault(&b_info->u.hvm.nx, true); in libxl__domain_build_info_setdefault()
|
/xen-4.10.0-shim-comet/docs/man/ |
A D | xl.cfg.pod.5.in | 1658 =item B<nx=BOOLEAN> 1764 mtrr nodeid nx ospke osvw osxsave pae page1gb pat pbe pcid pclmulqdq pdcm
|
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/ |
A D | hvm.c | 907 if ( (value & EFER_NX) && !p->extd.nx ) in hvm_efer_valid()
|
Completed in 37 milliseconds