/freebsd/sys/contrib/openzfs/lib/libzfs/ |
H A D | libzfs_pool.c | 1800 nvlist_t **spares, **l2cache; in zpool_add() local 1818 &l2cache, &nl2cache) == 0) { in zpool_add() 2881 boolean_t *l2cache, boolean_t *log, boolean_t return_parent) in vdev_to_nvlist_iter() argument 3035 avail_spare, l2cache, NULL, return_parent)) != NULL) { in vdev_to_nvlist_iter() 3056 avail_spare, l2cache, NULL, return_parent)) in vdev_to_nvlist_iter() 3069 avail_spare, l2cache, NULL, return_parent)) in vdev_to_nvlist_iter() 3071 *l2cache = B_TRUE; in vdev_to_nvlist_iter() 3086 boolean_t *avail_spare, boolean_t *l2cache, boolean_t *log) in zpool_find_vdev_by_physpath() argument 3105 *l2cache = B_FALSE; in zpool_find_vdev_by_physpath() 3108 ret = vdev_to_nvlist_iter(nvroot, search, avail_spare, l2cache, log, in zpool_find_vdev_by_physpath() [all …]
|
H A D | libzfs_import.c | 153 uint64_t state, guid, l2cache; in zpool_clear_label() local 183 ZPOOL_CONFIG_POOL_STATE, &l2cache) == 0 && in zpool_clear_label() 184 l2cache == POOL_STATE_L2CACHE) { in zpool_clear_label()
|
H A D | libzfs.abi | 6729 <parameter type-id='37e3bd22' name='l2cache'/> 6737 <parameter type-id='37e3bd22' name='l2cache'/> 6745 <parameter type-id='37e3bd22' name='l2cache'/>
|
/freebsd/sys/contrib/device-tree/src/riscv/sifive/ |
H A D | fu540-c000.dtsi | 63 next-level-cache = <&l2cache>; 90 next-level-cache = <&l2cache>; 117 next-level-cache = <&l2cache>; 144 next-level-cache = <&l2cache>; 302 l2cache: cache-controller@2010000 { 287 l2cache: cache-controller@2010000 { global() label
|
/freebsd/sys/contrib/openzfs/cmd/zed/agents/ |
H A D | zfs_mod.c | 1003 boolean_t avail_spare, l2cache, log; in vdev_size_from_config() local 1007 nvl = zpool_find_vdev(zhp, vdev_path, &avail_spare, &l2cache, &log); in vdev_size_from_config() 1036 boolean_t avail_spare, l2cache, log; in vdev_whole_disk_from_config() local 1039 nvl = zpool_find_vdev(zhp, vdev_path, &avail_spare, &l2cache, &log); in vdev_whole_disk_from_config() 1058 boolean_t avail_spare, l2cache; in zfsdle_vdev_online() local 1081 &avail_spare, &l2cache, NULL)) != NULL) { in zfsdle_vdev_online()
|
/freebsd/sys/contrib/device-tree/src/riscv/renesas/ |
H A D | r9a07g043f.dtsi | 36 next-level-cache = <&l2cache>; 145 l2cache: cache-controller@13400000 { label
|
/freebsd/sys/contrib/openzfs/cmd/zpool/ |
H A D | zpool_vdev.c | 1493 nvlist_t *nvroot, *nv, **top, **spares, **l2cache; in construct_spec() local 1502 l2cache = NULL; in construct_spec() 1572 if (l2cache != NULL) { in construct_spec() 1644 l2cache = child; in construct_spec() 1757 (const nvlist_t **)l2cache, nl2cache) == 0); in construct_spec() 1765 nvlist_free(l2cache[t]); in construct_spec() 1768 free(l2cache); in construct_spec()
|
H A D | zpool_main.c | 7983 boolean_t avail_spare, l2cache; in zpool_do_online() local 7997 &l2cache, NULL); in zpool_do_online() 9459 nvlist_t *l2c = NULL, **l2cache; in l2cache_nvlist() local 9462 &l2cache, &nl2cache) == 0) { in l2cache_nvlist() 9469 vdev_stats_nvlist(zhp, cb, l2cache[i], 2, in l2cache_nvlist() 9472 vdev_stats_nvlist(zhp, cb, l2cache[i], 2, in l2cache_nvlist() 10287 print_l2cache(zpool_handle_t *zhp, status_cbdata_t *cb, nvlist_t **l2cache, in print_l2cache() argument 10299 name = zpool_vdev_name(g_zfs, zhp, l2cache[i], in print_l2cache() 10301 print_status_config(zhp, cb, name, l2cache[i], 2, in print_l2cache() 10890 nvlist_t **spares, **l2cache; in status_callback() local [all …]
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | spa.c | 2339 nvlist_t **l2cache = NULL; in spa_load_l2cache() local 2373 ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache)); in spa_load_l2cache() 2380 guid = fnvlist_lookup_uint64(l2cache[i], ZPOOL_CONFIG_GUID); in spa_load_l2cache() 2399 VERIFY(spa_config_parse(spa, &vd, l2cache[i], NULL, 0, in spa_load_l2cache() 2444 l2cache = kmem_alloc(sav->sav_count * sizeof (void *), in spa_load_l2cache() 2447 l2cache[i] = vdev_config_generate(spa, in spa_load_l2cache() 2450 (const nvlist_t * const *)l2cache, sav->sav_count); in spa_load_l2cache() 2476 nvlist_free(l2cache[i]); in spa_load_l2cache() 2478 kmem_free(l2cache, sav->sav_count * sizeof (void *)); in spa_load_l2cache() 6009 nvlist_t **l2cache; local [all …]
|
H A D | vdev_removal.c | 2386 nvlist_t **spares, **l2cache, *nv; in spa_vdev_remove() local 2451 ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0 && in spa_vdev_remove() 2452 (nv = spa_nvlist_lookup_by_guid(l2cache, nl2cache, guid)) != NULL) { in spa_vdev_remove() 2476 ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache, nv); in spa_vdev_remove()
|
/freebsd/sys/contrib/openzfs/lib/libzutil/ |
H A D | zutil_import.c | 496 nvlist_t **spares, **l2cache; in get_configs() local 864 &l2cache, &nl2cache) == 0) { in get_configs() 866 if (fix_paths(hdl, l2cache[i], pl->names) != 0) in get_configs()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVInstrInfoXTHead.td | 719 def TH_L2CACHE_CALL : THCacheInst_void<0b10101, "th.l2cache.call">; 720 def TH_L2CACHE_IALL : THCacheInst_void<0b10110, "th.l2cache.iall">; 721 def TH_L2CACHE_CIALL : THCacheInst_void<0b10111, "th.l2cache.ciall">;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
H A D | CSKYInstrInfo.td | 1064 def L2CACHE_IALL : I_5_CACHE<0b100110, 0b01000, "l2cache.iall">; 1065 def L2CACHE_CALL : I_5_CACHE<0b100110, 0b00100, "l2cache.call">; 1066 def L2CACHE_CIALL : I_5_CACHE<0b100110, 0b01100, "l2cache.ciall">;
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | spa.h | 1116 boolean_t l2cache);
|
/freebsd/sys/contrib/openzfs/cmd/zdb/ |
H A D | zdb.c | 5331 uint64_t psize, ashift, l2cache; in dump_label() local 5434 ZPOOL_CONFIG_POOL_STATE, &l2cache) == 0 && in dump_label() 5435 l2cache == POOL_STATE_L2CACHE) { in dump_label()
|