Searched refs:vdevConfig (Results 1 – 4 of 4) sorted by relevance
/freebsd/cddl/usr.sbin/zfsd/ |
H A D | vdev_iterator.cc | 110 nvlist_t *vdevConfig; in Next() local 112 for (vdevConfig = NULL; !m_vdevQueue.empty();) { in Next() 117 vdevConfig = m_vdevQueue.front(); in Next() 121 result = nvlist_lookup_nvlist_array(vdevConfig, in Next() 137 return (vdevConfig); in Next() 143 nvlist_t *vdevConfig; in Each() local 146 while ((vdevConfig = Next()) != NULL) { in Each() 147 Vdev vdev(m_poolConfig, vdevConfig); in Each() 157 nvlist_t *vdevConfig; in Find() local 160 while ((vdevConfig = Next()) != NULL) { in Find() [all …]
|
H A D | vdev.h | 69 * configuration data provided in vdevConfig. 70 * \param vdevConfig Vdev configuration data. 76 * the data in vdevConfig with data found in the pool object. 78 Vdev(zpool_handle_t *pool, nvlist_t *vdevConfig); 85 * configuration data provided in vdevConfig. 86 * \param vdevConfig Vdev configuration data. 92 * the data in vdevConfig with data found in the pool object. 94 Vdev(nvlist_t *poolConfig, nvlist_t *vdevConfig); 100 * \param vdevConfig The name/value list retrieved by reading 103 Vdev(nvlist_t *vdevConfig); [all...] |
H A D | zfsd_event.cc | 344 nvlist_t *vdevConfig = VdevIterator(zpl.front()).Find(VdevGUID()); in Process() local 345 if (vdevConfig == NULL) { in Process() 356 Vdev vdev(zpl.front(), vdevConfig); in Process()
|
/freebsd/cddl/usr.sbin/zfsd/tests/ |
H A D | zfsd_unittest.cc | 133 MockVdev(nvlist_t *vdevConfig); 143 MockVdev::MockVdev(nvlist_t *vdevConfig) in MockVdev() argument 144 : Vdev(vdevConfig) in MockVdev() 218 ASSERT_EQ(0, nvlist_alloc(&vdevConfig, NV_UNIQUE_NAME, 0)); in SetUp() 219 ASSERT_EQ(0, nvlist_add_uint64(vdevConfig, in SetUp() 228 nvlist_free(vdevConfig); in TearDown() 232 nvlist_t *vdevConfig; member in ZfsdExceptionTest
|