/freebsd/sys/contrib/openzfs/module/os/freebsd/spl/ |
H A D | list.c | 38 #define list_empty(a) ((a)->list_head.list_next == &(a)->list_head) 43 lnew->list_next = (node)->list_next; \ 44 (node)->list_next->list_prev = lnew; \ 45 (node)->list_next = lnew; \ 50 lnew->list_next = (node); \ 52 (node)->list_prev->list_next = lnew; \ 57 (node)->list_prev->list_next = (node)->list_next; \ 58 (node)->list_next->list_prev = (node)->list_prev; \ 59 (node)->list_next = (node)->list_prev = NULL 70 list->list_head.list_next = list->list_head.list_prev = in list_create() [all …]
|
H A D | spl_procfs_list.c | 86 ksp->ks_private1 = list_next(&pl->pl_list, elt); in procfs_list_addr()
|
/freebsd/sys/contrib/vchiq/interface/compat/ |
H A D | list.h | 86 list_next(const struct list_head *node) in list_next() function 207 list_entry(list_next(&(ENTRY)->FIELD), typeof(*(ENTRY)), FIELD) 214 (VAR) = list_next((VAR))) 218 ((VAR) != (HEAD)) && ((NEXT) = list_next((VAR)), 1); \ 224 (VAR) = list_entry(list_next(&(VAR)->FIELD), typeof(*(VAR)), \ 236 ((NEXT) = list_entry(list_next(&(VAR)->FIELD), \
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | zio_inject.c | 174 handler = list_next(&inject_handlers, handler)) { in zio_handle_panic_injection() 201 handler = list_next(&inject_handlers, handler)) { in zio_handle_decrypt_injection() 280 handler = list_next(&inject_handlers, handler)) { in zio_handle_fault_injection() 321 handler = list_next(&inject_handlers, handler)) { in zio_handle_label_injection() 383 handler = list_next(&inject_handlers, handler)) { in zio_handle_device_injection_impl() 479 handler = list_next(&inject_handlers, handler)) { in zio_handle_ignored_writes() 517 handler = list_next(&inject_handlers, handler)) { in spa_handle_ignored_writes() 600 handler != NULL; handler = list_next(&inject_handlers, handler)) { in zio_handle_io_delay() 721 handler = list_next(&inject_handlers, handler)) { in zio_calculate_range() 831 handler != NULL; handler = list_next( in zio_inject_fault() [all...] |
H A D | vdev_indirect.c | 1266 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_read_all() 1339 ASSERT3P(list_next(&iv->iv_splits, first), ==, NULL); in vdev_indirect_io_start() 1370 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_io_start() 1432 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_repair() 1474 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_all_checksum_errors() 1503 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_splits_checksum_validate() 1530 is != NULL; is = list_next(&iv->iv_splits, is)) in vdev_indirect_splits_enumerate_all() 1541 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_splits_enumerate_all() 1542 is->is_good_child = list_next(&is->is_unique_child, in vdev_indirect_splits_enumerate_all() 1572 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_splits_enumerate_randomly() [all …]
|
H A D | spa_log_spacemap.c | 343 e; e = list_next(&spa->spa_log_summary, e)) in spa_log_sm_set_blocklimit() 373 e; e = list_next(&spa->spa_log_summary, e)) { in spa_log_summary_verify_counts() 429 e != NULL; e = list_next(&spa->spa_log_summary, e)) { in spa_log_summary_decrement_mscount() 614 e != NULL; e = list_next(&spa->spa_log_summary, e)) { in spa_log_summary_dirty_flushed_metaslab() 669 e; e = list_next(&spa->spa_log_summary, e)) in spa_estimate_metaslabs_to_flush() 686 e; e = list_next(&spa->spa_log_summary, e)) { in spa_estimate_metaslabs_to_flush()
|
H A D | dsl_prop.c | 258 pr != NULL; pr = list_next(&dd->dd_props, pr)) { in dsl_prop_record_find() 483 cbr; cbr = list_next(&ds->ds_prop_cbs, cbr)) { in dsl_prop_unregister() 519 next_cbr = list_next(&ds->ds_prop_cbs, cbr); in dsl_prop_unregister_all() 545 pr; pr = list_next(&dd->dd_props, pr)) { in dsl_prop_notify_all_cb() 547 cbr = list_next(&pr->pr_cbs, cbr)) { in dsl_prop_notify_all_cb() 638 cbr = list_next(&pr->pr_cbs, cbr)) { in dsl_prop_changed_notify() 870 cbr = list_next(&ds->ds_prop_cbs, cbr)) { in dsl_prop_set_sync_impl()
|
H A D | dmu_zfetch.c | 259 zs_next = list_next(&zf->zf_stream, zs); in dmu_zfetch_stream_create() 289 zs = list_next(&zf->zf_stream, zs)) { in dmu_zfetch_stream_create() 522 zs = list_next(&zf->zf_stream, zs)) { in dmu_zfetch_run() 542 zs = list_next(&zf->zf_stream, zs)) { in dmu_zfetch_run()
|
H A D | abd.c | 130 cabd = list_next(&ABD_GANG(abd).abd_gang_chain, cabd)) { in abd_verify() 400 child = list_next(&ABD_GANG(cabd).abd_gang_chain, child)) { in abd_gang_add_gang() 496 cabd = list_next(&ABD_GANG(abd).abd_gang_chain, cabd)) { in abd_gang_get_offset() 557 cabd = list_next(&ABD_GANG(sabd).abd_gang_chain, cabd)) { in abd_get_offset_impl() 751 cabd = list_next(&ABD_GANG(abd).abd_gang_chain, cabd); in abd_advance_abd_iter()
|
H A D | spa_config.c | 264 dp = list_next(&target->spa_config_list, dp)) { in spa_write_cachefile() 339 while ((tdp = list_next(&target->spa_config_list, dp)) != NULL) { in spa_write_cachefile()
|
H A D | dmu_tx.c | 714 txh = list_next(&tx->tx_holds, txh)) { in dmu_tx_dirty_buf() 1067 txh = list_next(&tx->tx_holds, txh)) { in dmu_tx_try_assign() 1137 txh = list_next(&tx->tx_holds, txh)) { in dmu_tx_unassign() 1324 txh = list_next(&tx->tx_holds, txh)) { in dmu_tx_commit()
|
H A D | multilist.c | 428 return (list_next(&mls->mls_list, obj));
|
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/ |
H A D | list_impl.h | 37 struct list_node *list_next; member
|
H A D | list.h | 52 void *list_next(list_t *, void *);
|
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/ |
H A D | list_impl.h | 37 struct list_node *list_next; member
|
H A D | list.h | 52 void *list_next(list_t *, void *);
|
/freebsd/sys/contrib/openzfs/lib/libspl/include/sys/ |
H A D | list.h | 52 void *list_next(list_t *, void *);
|
/freebsd/sys/contrib/openzfs/lib/libzpool/ |
H A D | zfs_debug.c | 114 zdm = list_next(&zfs_dbgmsgs, zdm)) { in zfs_dbgmsg_print()
|
/freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/ |
H A D | list.h | 163 list_next(list_t *list, void *object) in list_next() function
|
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/ |
H A D | zfs_debug.c | 85 ksp->ks_private = list_next(&zfs_dbgmsgs, zdm); in zfs_dbgmsg_addr()
|
H A D | zfs_acl.c | 596 aclnode = list_next(&aclp->z_acl, aclnode); in zfs_acl_next_ace() 1131 cb->cb_acl_node = list_next(&cb->cb_aclp->z_acl, in zfs_acl_data_locator() 1260 aclnode = list_next(&aclp->z_acl, aclnode)) { in zfs_aclset_common() 1281 aclnode = list_next(&aclp->z_acl, aclnode)) { in zfs_aclset_common() 1850 aclnode = list_next(&aclp->z_acl, aclnode)) { in zfs_getacl()
|
/freebsd/sys/contrib/openzfs/module/os/linux/spl/ |
H A D | spl-procfs-list.c | 85 next_node = list_next(&procfs_list->pl_list, in procfs_list_next_node()
|
/freebsd/sys/contrib/openzfs/lib/libspl/ |
H A D | list.c | 168 list_next(list_t *list, void *object) in list_next() function
|
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/ |
H A D | abd_os.c | 1041 cabd = list_next(&ABD_GANG(abd).abd_gang_chain, cabd)) { in abd_return_buf() 1213 cabd = list_next(&ABD_GANG(abd).abd_gang_chain, cabd)) { in abd_nr_pages_off() 1282 cabd = list_next(&ABD_GANG(abd).abd_gang_chain, cabd)) { in abd_gang_bio_map_off()
|
/freebsd/sys/contrib/openzfs/cmd/zed/agents/ |
H A D | fmd_serd.c | 332 nep = list_next(&sgp->sg_list, sep); in fmd_serd_eng_gc()
|