Home
last modified time | relevance | path

Searched refs:tx (Results 1 – 25 of 205) sorted by relevance

123456789

/titanic_41/usr/src/uts/common/fs/zfs/
H A Dtxg.c119 tx_state_t *tx = &dp->dp_tx; in txg_init() local
121 bzero(tx, sizeof (tx_state_t)); in txg_init()
123 tx->tx_cpu = kmem_zalloc(max_ncpus * sizeof (tx_cpu_t), KM_SLEEP); in txg_init()
128 mutex_init(&tx->tx_cpu[c].tc_lock, NULL, MUTEX_DEFAULT, NULL); in txg_init()
129 mutex_init(&tx->tx_cpu[c].tc_open_lock, NULL, MUTEX_DEFAULT, in txg_init()
132 cv_init(&tx->tx_cpu[c].tc_cv[i], NULL, CV_DEFAULT, in txg_init()
134 list_create(&tx->tx_cpu[c].tc_callbacks[i], in txg_init()
140 mutex_init(&tx->tx_sync_lock, NULL, MUTEX_DEFAULT, NULL); in txg_init()
142 cv_init(&tx->tx_sync_more_cv, NULL, CV_DEFAULT, NULL); in txg_init()
143 cv_init(&tx->tx_sync_done_cv, NULL, CV_DEFAULT, NULL); in txg_init()
[all …]
H A Ddmu_tx.c42 typedef void (*dmu_tx_hold_func_t)(dmu_tx_t *tx, struct dnode *dn,
49 dmu_tx_t *tx = kmem_zalloc(sizeof (dmu_tx_t), KM_SLEEP); in dmu_tx_create_dd() local
50 tx->tx_dir = dd; in dmu_tx_create_dd()
52 tx->tx_pool = dd->dd_pool; in dmu_tx_create_dd()
53 list_create(&tx->tx_holds, sizeof (dmu_tx_hold_t), in dmu_tx_create_dd()
55 list_create(&tx->tx_callbacks, sizeof (dmu_tx_callback_t), in dmu_tx_create_dd()
57 tx->tx_start = gethrtime(); in dmu_tx_create_dd()
59 refcount_create(&tx->tx_space_written); in dmu_tx_create_dd()
60 refcount_create(&tx->tx_space_freed); in dmu_tx_create_dd()
62 return (tx); in dmu_tx_create_dd()
[all …]
H A Ddsl_destroy.c88 dsl_destroy_snapshot_check(void *arg, dmu_tx_t *tx) in dsl_destroy_snapshot_check() argument
91 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_destroy_snapshot_check()
95 if (!dmu_tx_is_syncing(tx)) in dsl_destroy_snapshot_check()
143 process_old_cb(void *arg, const blkptr_t *bp, dmu_tx_t *tx) in process_old_cb() argument
151 dsl_deadlist_insert(&poa->ds->ds_deadlist, bp, tx); in process_old_cb()
162 dsl_free_sync(poa->pio, dp, tx->tx_txg, bp); in process_old_cb()
169 dsl_dataset_t *ds_next, boolean_t after_branch_point, dmu_tx_t *tx) in process_old_deadlist() argument
184 process_old_cb, &poa, tx)); in process_old_deadlist()
190 -poa.used, -poa.comp, -poa.uncomp, tx); in process_old_deadlist()
206 dsl_dataset_remove_clones_key(dsl_dataset_t *ds, uint64_t mintxg, dmu_tx_t *tx) in dsl_dataset_remove_clones_key() argument
[all …]
H A Ddmu_object.c36 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_alloc() argument
86 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); in dmu_object_alloc()
91 dmu_tx_add_new_object(tx, os, object); in dmu_object_alloc()
97 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_claim() argument
102 if (object == DMU_META_DNODE_OBJECT && !dmu_tx_private_ok(tx)) in dmu_object_claim()
108 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); in dmu_object_claim()
111 dmu_tx_add_new_object(tx, os, object); in dmu_object_claim()
117 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_reclaim() argument
130 dnode_reallocate(dn, ot, blocksize, bonustype, bonuslen, tx); in dmu_object_reclaim()
137 dmu_object_free(objset_t *os, uint64_t object, dmu_tx_t *tx) in dmu_object_free() argument
[all …]
H A Ddsl_deadlist.c146 dsl_deadlist_alloc(objset_t *os, dmu_tx_t *tx) in dsl_deadlist_alloc() argument
149 return (bpobj_alloc(os, SPA_OLD_MAXBLOCKSIZE, tx)); in dsl_deadlist_alloc()
151 sizeof (dsl_deadlist_phys_t), tx)); in dsl_deadlist_alloc()
155 dsl_deadlist_free(objset_t *os, uint64_t dlobj, dmu_tx_t *tx) in dsl_deadlist_free() argument
163 bpobj_free(os, dlobj, tx); in dsl_deadlist_free()
172 bpobj_decr_empty(os, tx); in dsl_deadlist_free()
174 bpobj_free(os, obj, tx); in dsl_deadlist_free()
177 VERIFY3U(0, ==, dmu_object_free(os, dlobj, tx)); in dsl_deadlist_free()
182 const blkptr_t *bp, dmu_tx_t *tx) in dle_enqueue() argument
186 uint64_t obj = bpobj_alloc(dl->dl_os, SPA_OLD_MAXBLOCKSIZE, tx); in dle_enqueue()
[all …]
H A Ddsl_pool.c343 dmu_tx_t *tx = dmu_tx_create_assigned(dp, txg); in dsl_pool_create() local
352 NULL, &dp->dp_meta_rootbp, DMU_OST_META, tx); in dsl_pool_create()
356 DMU_OT_OBJECT_DIRECTORY, DMU_OT_NONE, 0, tx); in dsl_pool_create()
363 dp->dp_root_dir_obj = dsl_dir_create_sync(dp, NULL, NULL, tx); in dsl_pool_create()
368 (void) dsl_dir_create_sync(dp, dp->dp_root_dir, MOS_DIR_NAME, tx); in dsl_pool_create()
375 FREE_DIR_NAME, tx); in dsl_pool_create()
380 obj = bpobj_alloc(dp->dp_meta_objset, SPA_OLD_MAXBLOCKSIZE, tx); in dsl_pool_create()
382 DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj, tx) == 0); in dsl_pool_create()
388 dsl_pool_create_origin(dp, tx); in dsl_pool_create()
391 obj = dsl_dataset_create_sync_dd(dp->dp_root_dir, NULL, 0, tx); in dsl_pool_create()
[all …]
H A Dspa_history.c85 spa_history_create_obj(spa_t *spa, dmu_tx_t *tx) in spa_history_create_obj() argument
94 sizeof (spa_history_phys_t), tx); in spa_history_create_obj()
98 &spa->spa_history, tx) == 0); in spa_history_create_obj()
104 dmu_buf_will_dirty(dbp, tx); in spa_history_create_obj()
150 dmu_tx_t *tx) in spa_history_write() argument
169 dmu_write(mos, spa->spa_history, phys_eof, firstwrite, buf, tx); in spa_history_write()
175 len, (char *)buf + firstwrite, tx); in spa_history_write()
198 spa_history_log_sync(void *arg, dmu_tx_t *tx) in spa_history_log_sync() argument
201 spa_t *spa = dmu_tx_pool(tx)->dp_spa; in spa_history_log_sync()
216 spa_history_create_obj(spa, tx); in spa_history_log_sync()
[all …]
H A Ddsl_dataset.c103 dsl_dataset_block_born(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx) in dsl_dataset_block_born() argument
105 int used = bp_get_dsize_sync(tx->tx_pool->dp_spa, bp); in dsl_dataset_block_born()
112 ASSERT(dmu_tx_is_syncing(tx)); in dsl_dataset_block_born()
119 dsl_pool_mos_diduse_space(tx->tx_pool, in dsl_dataset_block_born()
124 dmu_buf_will_dirty(ds->ds_dbuf, tx); in dsl_dataset_block_born()
137 compressed, uncompressed, tx); in dsl_dataset_block_born()
139 DD_USED_REFRSRV, DD_USED_HEAD, tx); in dsl_dataset_block_born()
143 dsl_dataset_block_kill(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx, in dsl_dataset_block_kill() argument
146 int used = bp_get_dsize_sync(tx->tx_pool->dp_spa, bp); in dsl_dataset_block_kill()
153 ASSERT(dmu_tx_is_syncing(tx)); in dsl_dataset_block_kill()
[all …]
H A Dzfeature.c296 dmu_tx_t *tx) in feature_sync() argument
303 sizeof (uint64_t), 1, &refcount, tx)); in feature_sync()
322 spa_activate_mos_feature(spa, feature->fi_guid, tx); in feature_sync()
330 feature_enable_sync(spa_t *spa, zfeature_info_t *feature, dmu_tx_t *tx) in feature_enable_sync() argument
348 spa_feature_enable(spa, feature->fi_depends[i], tx); in feature_enable_sync()
352 feature->fi_desc, tx)); in feature_enable_sync()
354 feature_sync(spa, feature, initial_refcount, tx); in feature_enable_sync()
357 uint64_t enabling_txg = dmu_tx_get_txg(tx); in feature_enable_sync()
363 DMU_POOL_FEATURE_ENABLED_TXG, tx); in feature_enable_sync()
365 spa_feature_incr(spa, SPA_FEATURE_ENABLED_TXG, tx); in feature_enable_sync()
[all …]
H A Ddsl_scan.c58 static void dsl_scan_sync_state(dsl_scan_t *, dmu_tx_t *tx);
167 dsl_scan_setup_check(void *arg, dmu_tx_t *tx) in dsl_scan_setup_check() argument
169 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan; in dsl_scan_setup_check()
178 dsl_scan_setup_sync(void *arg, dmu_tx_t *tx) in dsl_scan_setup_sync() argument
180 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan; in dsl_scan_setup_sync()
192 scn->scn_phys.scn_max_txg = tx->tx_txg; in dsl_scan_setup_sync()
237 ot ? ot : DMU_OT_SCAN_QUEUE, DMU_OT_NONE, 0, tx); in dsl_scan_setup_sync()
239 dsl_scan_sync_state(scn, tx); in dsl_scan_setup_sync()
241 spa_history_log_internal(spa, "scan setup", tx, in dsl_scan_setup_sync()
248 dsl_scan_done(dsl_scan_t *scn, boolean_t complete, dmu_tx_t *tx) in dsl_scan_done() argument
[all …]
H A Dzfs_dir.c451 zfs_unlinked_add(znode_t *zp, dmu_tx_t *tx) in zfs_unlinked_add() argument
459 zap_add_int(zfsvfs->z_os, zfsvfs->z_unlinkedobj, zp->z_id, tx)); in zfs_unlinked_add()
531 dmu_tx_t *tx; in zfs_purgedir() local
550 tx = dmu_tx_create(zfsvfs->z_os); in zfs_purgedir()
551 dmu_tx_hold_sa(tx, dzp->z_sa_hdl, B_FALSE); in zfs_purgedir()
552 dmu_tx_hold_zap(tx, dzp->z_id, FALSE, zap.za_name); in zfs_purgedir()
553 dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE); in zfs_purgedir()
554 dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL); in zfs_purgedir()
556 zfs_sa_upgrade_txholds(tx, xzp); in zfs_purgedir()
557 dmu_tx_mark_netfree(tx); in zfs_purgedir()
[all …]
H A Ddsl_dir.c515 dsl_dir_init_fs_ss_count(dsl_dir_t *dd, dmu_tx_t *tx) in dsl_dir_init_fs_ss_count() argument
527 ASSERT(dmu_tx_is_syncing(tx)); in dsl_dir_init_fs_ss_count()
529 dsl_dir_zapify(dd, tx); in dsl_dir_init_fs_ss_count()
562 dsl_dir_init_fs_ss_count(chld_dd, tx); in dsl_dir_init_fs_ss_count()
593 dmu_buf_will_dirty(dd->dd_dbuf, tx); in dsl_dir_init_fs_ss_count()
595 sizeof (my_fs_cnt), 1, &my_fs_cnt, tx)); in dsl_dir_init_fs_ss_count()
597 sizeof (my_ss_cnt), 1, &my_ss_cnt, tx)); in dsl_dir_init_fs_ss_count()
601 dsl_dir_actv_fs_ss_limit_check(void *arg, dmu_tx_t *tx) in dsl_dir_actv_fs_ss_limit_check() argument
604 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_dir_actv_fs_ss_limit_check()
632 dsl_dir_actv_fs_ss_limit_sync(void *arg, dmu_tx_t *tx) in dsl_dir_actv_fs_ss_limit_sync() argument
[all …]
H A Ddsl_synctask.c37 dsl_null_checkfunc(void *arg, dmu_tx_t *tx) in dsl_null_checkfunc() argument
71 dmu_tx_t *tx; in dsl_sync_task() local
82 tx = dmu_tx_create_dd(dp->dp_mos_dir); in dsl_sync_task()
83 VERIFY0(dmu_tx_assign(tx, TXG_WAIT)); in dsl_sync_task()
86 dst.dst_txg = dmu_tx_get_txg(tx); in dsl_sync_task()
96 err = dst.dst_checkfunc(arg, tx); in dsl_sync_task()
100 dmu_tx_commit(tx); in dsl_sync_task()
107 dmu_tx_commit(tx); in dsl_sync_task()
122 int blocks_modified, zfs_space_check_t space_check, dmu_tx_t *tx) in dsl_sync_task_nowait() argument
127 dst->dst_txg = dmu_tx_get_txg(tx); in dsl_sync_task_nowait()
[all …]
H A Dbpobj.c37 bpobj_alloc_empty(objset_t *os, int blocksize, dmu_tx_t *tx) in bpobj_alloc_empty() argument
46 bpobj_alloc(os, SPA_OLD_MAXBLOCKSIZE, tx); in bpobj_alloc_empty()
50 &dp->dp_empty_bpobj, tx) == 0); in bpobj_alloc_empty()
52 spa_feature_incr(spa, SPA_FEATURE_EMPTY_BPOBJ, tx); in bpobj_alloc_empty()
56 return (bpobj_alloc(os, blocksize, tx)); in bpobj_alloc_empty()
61 bpobj_decr_empty(objset_t *os, dmu_tx_t *tx) in bpobj_decr_empty() argument
65 spa_feature_decr(dmu_objset_spa(os), SPA_FEATURE_EMPTY_BPOBJ, tx); in bpobj_decr_empty()
70 DMU_POOL_EMPTY_BPOBJ, tx)); in bpobj_decr_empty()
71 VERIFY3U(0, ==, dmu_object_free(os, dp->dp_empty_bpobj, tx)); in bpobj_decr_empty()
77 bpobj_alloc(objset_t *os, int blocksize, dmu_tx_t *tx) in bpobj_alloc() argument
[all …]
H A Ddsl_bookmark.c115 dmu_tx_t *tx) in dsl_bookmark_create_check_impl() argument
117 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_bookmark_create_check_impl()
147 dsl_bookmark_create_check(void *arg, dmu_tx_t *tx) in dsl_bookmark_create_check() argument
150 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_bookmark_create_check()
166 nvpair_name(pair), tx); in dsl_bookmark_create_check()
180 dsl_bookmark_create_sync(void *arg, dmu_tx_t *tx) in dsl_bookmark_create_sync() argument
183 dsl_pool_t *dp = dmu_tx_pool(tx); in dsl_bookmark_create_sync()
201 DMU_OTN_ZAP_METADATA, DMU_OT_NONE, 0, tx); in dsl_bookmark_create_sync()
202 spa_feature_incr(dp->dp_spa, SPA_FEATURE_BOOKMARKS, tx); in dsl_bookmark_create_sync()
204 dsl_dataset_zapify(bmark_fs, tx); in dsl_bookmark_create_sync()
[all …]
H A Dzvol.c330 zvol_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx) in zvol_create_cb() argument
353 DMU_OT_NONE, 0, tx); in zvol_create_cb()
357 DMU_OT_NONE, 0, tx); in zvol_create_cb()
360 error = zap_update(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize, tx); in zvol_create_cb()
392 dmu_tx_t *tx; in zvol_replay_write() local
410 tx = dmu_tx_create(os); in zvol_replay_write()
411 dmu_tx_hold_write(tx, ZVOL_OBJ, offset, length); in zvol_replay_write()
412 error = dmu_tx_assign(tx, TXG_WAIT); in zvol_replay_write()
414 dmu_tx_abort(tx); in zvol_replay_write()
416 dmu_write(os, ZVOL_OBJ, offset, length, data, tx); in zvol_replay_write()
[all …]
H A Dzap.c74 fzap_upgrade(zap_t *zap, dmu_tx_t *tx, zap_flags_t flags) in fzap_upgrade() argument
117 dmu_buf_will_dirty(db, tx); in fzap_upgrade()
129 zap_tryupgradedir(zap_t *zap, dmu_tx_t *tx) in zap_tryupgradedir() argument
134 dmu_buf_will_dirty(zap->zap_dbuf, tx); in zap_tryupgradedir()
147 dmu_tx_t *tx) in zap_table_grow() argument
184 dmu_buf_will_dirty(db_new, tx); in zap_table_grow()
191 dmu_buf_will_dirty(db_new, tx); in zap_table_grow()
205 tbl->zt_blk << bs, tbl->zt_numblks << bs, tx); in zap_table_grow()
222 dmu_tx_t *tx) in zap_table_store() argument
241 dmu_buf_will_dirty(db, tx); in zap_table_store()
[all …]
/titanic_41/usr/src/uts/common/fs/zfs/sys/
H A Ddmu_tx.h128 int dmu_tx_assign(dmu_tx_t *tx, txg_how_t txg_how);
129 void dmu_tx_commit(dmu_tx_t *tx);
130 void dmu_tx_abort(dmu_tx_t *tx);
131 uint64_t dmu_tx_get_txg(dmu_tx_t *tx);
132 struct dsl_pool *dmu_tx_pool(dmu_tx_t *tx);
133 void dmu_tx_wait(dmu_tx_t *tx);
135 void dmu_tx_callback_register(dmu_tx_t *tx, dmu_tx_callback_func_t *dcb_func,
148 int dmu_tx_is_syncing(dmu_tx_t *tx);
149 int dmu_tx_private_ok(dmu_tx_t *tx);
150 void dmu_tx_add_new_object(dmu_tx_t *tx, objset_t *os, uint64_t object);
[all …]
H A Dzap.h134 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
136 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
139 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
141 uint64_t parent_obj, const char *name, dmu_tx_t *tx);
147 zap_flags_t flags, dmu_tx_t *tx);
154 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
157 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
169 int zap_destroy(objset_t *ds, uint64_t zapobj, dmu_tx_t *tx);
230 const void *val, dmu_tx_t *tx);
233 const void *val, dmu_tx_t *tx);
[all …]
H A Dzfs_events.h22 dmu_tx_t *tx, uint64_t off, uint64_t len);
24 dmu_tx_t *tx, uint64_t off, uint64_t len);
28 dmu_tx_t *tx, char *name, uint64_t txmode);
30 dmu_tx_t *tx, char *name, uint64_t txmode);
32 dmu_tx_t *tx, char *name);
34 dmu_tx_t *tx, char *name, char *link);
37 dmu_tx_t *tx);
39 dmu_tx_t *tx, uint64_t off,
41 typedef void (*rz_zev_znode_truncate_cb_t)(znode_t *zp, dmu_tx_t *tx,
43 typedef void (*rz_zev_znode_setattr_cb_t)(znode_t *zp, dmu_tx_t *tx);
[all …]
/titanic_41/usr/src/cmd/refer/
H A Drefer6.c33 char *s, *tx; in putref() local
48 tx = s+3; in putref()
52 tx = s+2; in putref()
57 tx = s; in putref()
63 tx = caps(tx, buf1); in putref()
65 fprintf(stderr, " s %o tx %o %s\n", s, tx, tx); in putref()
70 fprintf(fo, "%s%c", tx, sep); in putref()
73 lastype, tx, sep); in putref()
76 last(tx)) != 0); in putref()
78 lauth = last(tx) == '.'; in putref()
[all …]
H A Dtick.c32 struct tbuffer tx; in tick() local
34 times(&tx); in tick()
36 user = tx.proc_user_time; in tick()
37 systm = tx.proc_system_time; in tick()
44 struct tbuffer tx; in tock() local
49 times(&tx); in tock()
52 use = (tx.proc_user_time - user)/60.; in tock()
53 sys = (tx.proc_system_time - systm)/60.; in tock()
/titanic_41/usr/src/uts/common/io/nxge/
H A Dnxge_hv.c53 nxhv_dc_fp_t *tx; in nxge_hio_hv_init() local
69 tx = &nhd->hio.tx; in nxge_hio_hv_init()
71 tx->assign = &hv_niu_tx_dma_assign; in nxge_hio_hv_init()
72 tx->unassign = &hv_niu_tx_dma_unassign; in nxge_hio_hv_init()
73 tx->get_map = &hv_niu_vr_get_txmap; in nxge_hio_hv_init()
76 tx->lp_conf = &hv_niu_tx_logical_page_conf; in nxge_hio_hv_init()
77 tx->lp_info = &hv_niu_tx_logical_page_info; in nxge_hio_hv_init()
79 tx->lp_cfgh_conf = &hv_niu_cfgh_tx_logical_page_conf; in nxge_hio_hv_init()
80 tx->lp_cfgh_info = &hv_niu_cfgh_tx_logical_page_info; in nxge_hio_hv_init()
82 tx->getinfo = &hv_niu_vrtx_getinfo; in nxge_hio_hv_init()
/titanic_41/usr/src/cmd/rcap/common/
H A Drcapd_conf.c169 scf_transaction_t *tx = NULL; in modify_config() local
179 if ((tx = scf_transaction_setup(simple_h)) == NULL) { in modify_config()
186 if (scf_set_count_property(tx, PRESSURE, in modify_config()
194 if (scf_set_count_property(tx, RECONFIG_INT, in modify_config()
201 if (scf_set_count_property(tx, RSS_SAMPLE_INT, in modify_config()
208 if (scf_set_count_property(tx, REPORT_INT, in modify_config()
215 if (scf_set_count_property(tx, WALK_INT, in modify_config()
222 if ((rval = scf_transaction_commit(tx)) == -1) in modify_config()
226 if (scf_transaction_restart(simple_h, tx) in modify_config()
238 if (tx != NULL) { in modify_config()
[all …]
/titanic_41/usr/src/uts/common/io/myri10ge/drv/
H A Dmyri10ge.c776 myri10ge_tx_ring_t *tx = &ss->tx; in myri10ge_add_tx_handle() local
795 mutex_enter(&tx->handle_lock); in myri10ge_add_tx_handle()
797 handle->next = tx->free_tx_handles; in myri10ge_add_tx_handle()
798 tx->free_tx_handles = handle; in myri10ge_add_tx_handle()
799 mutex_exit(&tx->handle_lock); in myri10ge_add_tx_handle()
806 myri10ge_tx_ring_t *tx = &ss->tx; in myri10ge_remove_tx_handles() local
808 mutex_enter(&tx->handle_lock); in myri10ge_remove_tx_handles()
810 handle = tx->free_tx_handles; in myri10ge_remove_tx_handles()
812 tx->free_tx_handles = handle->next; in myri10ge_remove_tx_handles()
815 handle = tx->free_tx_handles; in myri10ge_remove_tx_handles()
[all …]

123456789