Home
last modified time | relevance | path

Searched refs:nx (Results 1 – 12 of 12) sorted by relevance

/xen/xen/arch/x86/mm/shadow/
A Dprivate.h506 unsigned long x, nx; in sh_get_ref() local
513 nx = x + 1; in sh_get_ref()
515 if ( unlikely(nx >= (1UL << PAGE_SH_REFCOUNT_WIDTH)) ) in sh_get_ref()
523 sp->u.sh.count = nx; in sh_get_ref()
539 unsigned long x, nx; in sh_put_ref() local
553 nx = x - 1; in sh_put_ref()
563 sp->u.sh.count = nx; in sh_put_ref()
565 if ( unlikely(nx == 0) ) in sh_put_ref()
/xen/xen/arch/x86/
A Dmm.c2054 unsigned long x, nx; in page_lock() local
2061 nx = x + (1 | PGT_locked); in page_lock()
2083 nx = x - (1 | PGT_locked); in page_unlock()
2115 unsigned long x, nx; in l3t_lock() local
2120 nx = x | PGT_locked; in l3t_lock()
2131 nx = x & ~PGT_locked; in l3t_unlock()
2523 nx = x - 1; in put_page()
2597 nx = x + 1; in get_page_light()
2794 nx = x - 1; in _put_page_type()
2904 nx = x + 1; in _get_page_type()
[all …]
/xen/xen/common/
A Dpage_alloc.c1522 unsigned long nx, x, y = pg->count_info; in mark_page_offline() local
1528 nx = x = y; in mark_page_offline()
1533 nx &= ~PGC_state; in mark_page_offline()
1534 nx |= (((x & PGC_state) == PGC_state_free) in mark_page_offline()
1539 nx |= PGC_broken; in mark_page_offline()
1541 if ( x == nx ) in mark_page_offline()
1543 } while ( (y = cmpxchg(&pg->count_info, x, nx)) != x ); in mark_page_offline()
1684 unsigned long x, nx, y; in online_page() local
1724 nx = (x & ~PGC_state) | PGC_state_inuse; in online_page()
1725 } while ( (y = cmpxchg(&pg->count_info, x, nx)) != x ); in online_page()
/xen/xen/arch/x86/mm/
A Dmem_sharing.c136 unsigned long x, nx; in _page_lock() local
141 nx = x + (1 | PGT_locked); in _page_lock()
144 !(nx & PGT_count_mask) ) in _page_lock()
146 } while ( cmpxchg(&page->u.inuse.type_info, x, nx) != x ); in _page_lock()
153 unsigned long x, nx, y = page->u.inuse.type_info; in _page_unlock() local
159 nx = x - (1 | PGT_locked); in _page_unlock()
161 ASSERT(nx & PGT_count_mask); in _page_unlock()
162 } while ( (y = cmpxchg(&page->u.inuse.type_info, x, nx)) != x ); in _page_unlock()
/xen/xen/arch/arm/
A Dmm.c1544 unsigned long nx, x, y = page->count_info; in put_page() local
1549 nx = x - 1; in put_page()
1551 while ( unlikely((y = cmpxchg(&page->count_info, x, nx)) != x) ); in put_page()
1553 if ( unlikely((nx & PGC_count_mask) == 0) ) in put_page()
/xen/tools/xl/
A Dxl_sxp.c97 fprintf(fh, "\t\t\t(nx %s)\n", libxl_defbool_to_string(b_info->u.hvm.nx)); in printf_info_sexp()
A Dxl_parse.c1668 xlu_cfg_get_defbool(config, "nx", &b_info->u.hvm.nx, 0); in parse_config_data()
/xen/tools/libxl/
A Dlibxl_types.idl573 ("nx", libxl_defbool),
A Dlibxl_create.c359 libxl_defbool_setdefault(&b_info->u.hvm.nx, true); in libxl__domain_build_info_setdefault()
/xen/tools/golang/xenlight/
A Dhelpers.gen.go1149 if err := x.Nx.fromC(&tmp.nx);err != nil {
1455 if err := tmp.Nx.toC(&hvm.nx); err != nil {
/xen/docs/man/
A Dxl.cfg.5.pod.in1900 =item B<nx=BOOLEAN>
2022 mtrr nodeid nx ospke osvw osxsave pae page1gb pat pbe pcid pclmulqdq pdcm
/xen/xen/arch/x86/hvm/
A Dhvm.c954 if ( (value & EFER_NX) && !p->extd.nx ) in hvm_efer_valid()

Completed in 48 milliseconds