diff options
author | Brian Behlendorf <[email protected]> | 2013-01-25 14:57:53 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-01-25 15:07:40 -0800 |
commit | 6772fb679a4205427a385d174359b2a5826da613 (patch) | |
tree | 02ce78b8720573be954e81b4d121df8c9a855886 /module/zfs/dsl_dataset.c | |
parent | ba43f4565aa151065dd2b64c1aab8f1051ce1295 (diff) |
Use dsl_dataset_snap_lookup()
Retire the dmu_snapshot_id() function which was introduced in the
initial .zfs control directory implementation. There is already
an existing dsl_dataset_snap_lookup() which does exactly what we
need, and the dmu_snapshot_id() function as implemented is racy.
https://github.com/zfsonlinux/zfs/issues/1215#issuecomment-12579879
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #1238
Diffstat (limited to 'module/zfs/dsl_dataset.c')
-rw-r--r-- | module/zfs/dsl_dataset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/dsl_dataset.c b/module/zfs/dsl_dataset.c index c5b84a26c..55a8b0fc1 100644 --- a/module/zfs/dsl_dataset.c +++ b/module/zfs/dsl_dataset.c @@ -314,7 +314,7 @@ dsl_dataset_get_snapname(dsl_dataset_t *ds) return (err); } -static int +int dsl_dataset_snap_lookup(dsl_dataset_t *ds, const char *name, uint64_t *value) { objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset; |