Home
last modified time | relevance | path

Searched refs:checkpoint (Results 1 – 25 of 53) sorted by last modified time

123

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dmetaslab.c5211 boolean_t checkpoint) in metaslab_free_concrete() argument
5236 if (checkpoint) { in metaslab_free_concrete()
5250 boolean_t *checkpoint = arg; in metaslab_free_impl_cb() local
5252 ASSERT3P(checkpoint, !=, NULL); in metaslab_free_impl_cb()
5257 metaslab_free_impl(vd, offset, size, *checkpoint); in metaslab_free_impl_cb()
5262 boolean_t checkpoint) in metaslab_free_impl() argument
5284 metaslab_free_impl_cb, &checkpoint); in metaslab_free_impl()
5496 metaslab_free_impl(vd, offset, size, checkpoint); in metaslab_free_dva()
5765 boolean_t checkpoint = B_FALSE; in metaslab_free() local
5774 checkpoint = B_TRUE; in metaslab_free()
[all …]
H A Dspa.c3895 uberblock_t checkpoint; local
3911 ASSERT3U(checkpoint.ub_txg, !=, 0);
3912 ASSERT3U(checkpoint.ub_checkpoint_txg, !=, 0);
3913 ASSERT3U(checkpoint.ub_timestamp, !=, 0);
3914 spa->spa_checkpoint_txg = checkpoint.ub_txg;
3998 uberblock_t checkpoint; local
4018 ASSERT3U(checkpoint.ub_txg, <, spa->spa_uberblock.ub_txg);
4019 ASSERT3U(checkpoint.ub_txg, ==, checkpoint.ub_checkpoint_txg);
4028 checkpoint.ub_txg = spa->spa_uberblock.ub_txg + 1;
4029 checkpoint.ub_timestamp = gethrestime_sec();
[all …]
H A Dvdev_removal.c649 boolean_t checkpoint = B_FALSE; in free_from_removing_vdev() local
651 metaslab_free_impl_cb, &checkpoint); in free_from_removing_vdev()
699 boolean_t checkpoint = B_FALSE; in free_mapped_segment_cb() local
701 metaslab_free_impl_cb, &checkpoint); in free_mapped_segment_cb()
H A Dspa_checkpoint.c479 uberblock_t checkpoint = spa->spa_ubsync; in spa_checkpoint_sync() local
495 ASSERT3U(checkpoint.ub_txg, ==, spa->spa_syncing_txg - 1); in spa_checkpoint_sync()
507 spa->spa_checkpoint_txg = checkpoint.ub_txg; in spa_checkpoint_sync()
508 spa->spa_checkpoint_info.sci_timestamp = checkpoint.ub_timestamp; in spa_checkpoint_sync()
510 checkpoint.ub_checkpoint_txg = checkpoint.ub_txg; in spa_checkpoint_sync()
514 &checkpoint, tx)); in spa_checkpoint_sync()
525 "checkpointed uberblock txg=%llu", checkpoint.ub_txg); in spa_checkpoint_sync()
/illumos-gate/usr/src/cmd/zdb/
H A Dzdb.c5198 verify_checkpoint_vdev_spacemaps(spa_t *checkpoint, spa_t *current) in verify_checkpoint_vdev_spacemaps() argument
5200 vdev_t *ckpoint_rvd = checkpoint->spa_root_vdev; in verify_checkpoint_vdev_spacemaps()
5203 load_concrete_ms_allocatable_trees(checkpoint, SM_FREE); in verify_checkpoint_vdev_spacemaps()
5282 verify_checkpoint_ms_spacemaps(spa_t *checkpoint, spa_t *current) in verify_checkpoint_ms_spacemaps() argument
5284 vdev_t *ckpoint_rvd = checkpoint->spa_root_vdev; in verify_checkpoint_ms_spacemaps()
5287 load_concrete_ms_allocatable_trees(checkpoint, SM_ALLOC); in verify_checkpoint_ms_spacemaps()
5414 uberblock_t checkpoint; in verify_checkpoint() local
5422 sizeof (uberblock_t) / sizeof (uint64_t), &checkpoint); in verify_checkpoint()
5439 dump_uberblock(&checkpoint, "\nCheckpointed uberblock found:\n", "\n"); in verify_checkpoint()
5441 if (checkpoint.ub_checkpoint_txg == 0) { in verify_checkpoint()
/illumos-gate/usr/src/cmd/backup/dump/
H A Ddumptape.c177 static void checkpoint(struct bdesc *, int);
1970 checkpoint(bp-1, cmd); /* send data */ in dowrite()
2125 checkpoint(--bp, cmd); /* send checkpoint data */ in dowrite()
2152 checkpoint(struct bdesc *bp, int cmd) in checkpoint() function
/illumos-gate/usr/src/test/zfs-tests/tests/functional/pool_checkpoint/
H A Dcheckpoint_discard_busy.ksh72 log_must zpool checkpoint $NESTEDPOOL
76 log_must zpool checkpoint -d $NESTEDPOOL
89 log_mustnot zpool import -d $FILEDISKDIR --rewind-to-checkpoint $NESTEDPOOL
97 log_mustnot zpool checkpoint $NESTEDPOOL
98 log_mustnot zpool checkpoint -d $NESTEDPOOL
H A Dcheckpoint_big_rewind.ksh42 log_must zpool checkpoint $NESTEDPOOL
53 log_must zpool import -d $FILEDISKDIR --rewind-to-checkpoint $NESTEDPOOL
H A Dcheckpoint_capacity.ksh66 log_must zpool checkpoint $NESTEDPOOL
84 log_must zpool import -d $FILEDISKDIR --rewind-to-checkpoint $NESTEDPOOL
H A Dcheckpoint_zdb.ksh57 log_must zpool checkpoint $TESTPOOL
89 log_must zpool checkpoint -d $TESTPOOL
H A Dcheckpoint_rewind.ksh40 log_must zpool checkpoint $TESTPOOL
45 log_must zpool import --rewind-to-checkpoint $TESTPOOL
H A Dcheckpoint_ro_rewind.ksh44 log_must zpool checkpoint $TESTPOOL
48 log_must zpool import -o readonly=on --rewind-to-checkpoint $TESTPOOL
H A Dcheckpoint_sm_scale.ksh83 log_must zpool checkpoint $TESTPOOL1
88 log_mustnot zpool checkpoint $TESTPOOL2
H A Dcheckpoint_twice.ksh36 log_must zpool checkpoint $TESTPOOL
37 log_mustnot zpool checkpoint $TESTPOOL
H A Dcheckpoint_vdev_add.ksh44 log_must zpool checkpoint $TESTPOOL
54 log_must zpool import --rewind-to-checkpoint $TESTPOOL
H A Dcheckpoint_removal.ksh41 log_mustnot zpool checkpoint $TESTPOOL
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dimport_rewind_config_changed.ksh124 log_must zpool checkpoint $TESTPOOL1
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dbsd-comp.c111 uint_t checkpoint; /* when to next check the ratio */ member
224 db->checkpoint = CHECK_GAP; in bsd_clear()
247 if (db->in_count >= db->checkpoint) { in bsd_check()
257 db->checkpoint = db->in_count + CHECK_GAP; in bsd_check()
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dpager.test250 # tests of the checkpoint mechanism and api
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_c.x117 % bool_t checkpoint();
H A Ddb_dictionary.cc866 if ((status = checkpoint()) != DB_SUCCESS) { in massage_dict()
1319 db_dictionary::checkpoint() in checkpoint() function in db_dictionary
1922 status = dbase->checkpoint(); in db_checkpoint_aux()
1925 status = current->database->checkpoint(); in db_checkpoint_aux()
1957 checkpoint(); // checkpoint dictionary first in db_checkpoint()
/illumos-gate/usr/src/test/zfs-tests/tests/longevity/
H A Dslop_space_test.ksh149 log_must zpool checkpoint $NESTEDPOOL
245 log_must zpool checkpoint -d $NESTEDPOOL
/illumos-gate/usr/src/cmd/fm/dicts/
H A DSUNOS.po236 # keys: defect.sunos.eft.undiag.checkpoint
249 msgstr "Remove the diagnosis engine checkpoint file '/var/fm/fmd/ckpt/eft/eft', repair this defect,…
/illumos-gate/usr/src/cmd/file/
H A Dmagic537 0 string \177FCF fmd(8) checkpoint file
/illumos-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/
H A DREADME394 that they are unaware of the passage of time across checkpoint/resume
400 To work around this (and other checkpoint/resume related problems),

123