Searched refs:cbm (Results 1 – 9 of 9) sorted by relevance
/xen-4.10.0-shim-comet/tools/golang/xenlight/ |
A D | xenlight.go | 473 cbm := Cpumap.toC() 474 defer C.libxl_bitmap_dispose(&cbm) 477 cbm, &uuid, &poolid) 528 cbm := Cpumap.toC() 529 defer C.libxl_bitmap_dispose(&cbm) 564 cbm := Cpumap.toC() 565 defer C.libxl_bitmap_dispose(&cbm) 690 size := int(cbm.size) 704 C.libxl_bitmap_init(&cbm) 708 cbm.size = C.uint32_t(size) [all …]
|
/xen-4.10.0-shim-comet/docs/misc/ |
A D | xl-psr.markdown | 110 `xl psr-cat-set [OPTIONS] <domid> <cbm>` 112 where cbm is a number to represent the corresponding cache subset can be used. 113 A cbm is valid only when: 119 In a multi-socket system, the same cbm will be set on each socket by default. 120 Per socket cbm can be specified with the `--socket SOCKET` option. 123 L2 cache. Per cache level cbm can be specified with the `--level LEVEL` option. 134 L2 cache. Per cache level cbm can be specified with the `--level LEVEL` option. 181 `xl psr-cat-set -c <domid> <cbm>` 184 `xl psr-cat-set -d <domid> <cbm>` 187 `xl psr-cat-set <domid> <cbm>`
|
/xen-4.10.0-shim-comet/tools/xl/ |
A D | xl_psr.c | 333 uint64_t cbm; in psr_cat_print_one_domain_cbm_type() local 335 if (!libxl_psr_cat_get_cbm(ctx, domid, type, socketid, &cbm)) in psr_cat_print_one_domain_cbm_type() 336 printf("%#16"PRIx64, cbm); in psr_cat_print_one_domain_cbm_type() 482 uint64_t cbm; in main_psr_cat_cbm_set() local 556 cbm = strtoll(argv[optind + 1], NULL , 0); in main_psr_cat_cbm_set() 558 ret = libxl_psr_cat_set_cbm(ctx, domid, type, &target_map, cbm); in main_psr_cat_cbm_set()
|
/xen-4.10.0-shim-comet/docs/features/ |
A D | intel_psr_cat_cdp.pandoc | 65 `-l2`: Show cbm for L2 cache. 66 `-l3`: Show cbm for L3 cache. 71 2. `psr-cat-set [OPTIONS] domain-id cbm`: 79 `-l2`: Specify cbm for L2 cache. 80 `-l3`: Specify cbm for L3 cache. 86 `-c`: Set L3 CDP code cbm. 87 `-d`: Set L3 CDP data cbm. 263 Show LX cbm for a domain. 271 2. psr-cat-set -lX domain-id cbm 272 Set LX cbm for a domain. [all …]
|
/xen-4.10.0-shim-comet/ |
A D | config.sub | 158 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ 1310 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` 1628 *-cbm)
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | psr.c | 252 static bool psr_check_cbm(unsigned int cbm_len, unsigned long cbm) in psr_check_cbm() argument 257 if ( cbm & (~0ul << cbm_len) ) in psr_check_cbm() 261 if ( cbm == 0 ) in psr_check_cbm() 264 first_bit = find_first_bit(&cbm, cbm_len); in psr_check_cbm() 265 zero_bit = find_next_zero_bit(&cbm, cbm_len, first_bit); in psr_check_cbm() 269 find_next_bit(&cbm, cbm_len, zero_bit) < cbm_len ) in psr_check_cbm()
|
/xen-4.10.0-shim-comet/tools/libxl/ |
A D | libxl_psr.c | 315 uint64_t cbm) in libxl_psr_cat_set_cbm() argument 335 socketid, cbm)) { in libxl_psr_cat_set_cbm()
|
A D | libxl.h | 2294 uint64_t cbm);
|
/xen-4.10.0-shim-comet/docs/man/ |
A D | xl.pod.1.in | 1808 =item B<psr-cat-set> [I<OPTIONS>] I<domain-id> I<cbm> 1810 Set cache capacity bitmasks(CBM) for a domain. For how to specify I<cbm>
|
Completed in 17 milliseconds