X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=blobdiff_plain;f=module%2Fzfs%2Fdmu_objset.c;h=50673dc9785b64e7425cd60c3fa7d5cc903d5d13;hb=5853fe790d1df58c5dd85ea52c5e165b6d43013c;hp=4e043243c185740992b0fa825c1c3491fe5fd93d;hpb=f0fd83be65152a218c7daa1d006b53fb4b79bdce;p=zfs.git diff --git a/module/zfs/dmu_objset.c b/module/zfs/dmu_objset.c index 4e04324..50673dc 100644 --- a/module/zfs/dmu_objset.c +++ b/module/zfs/dmu_objset.c @@ -262,7 +262,7 @@ dmu_objset_open_impl(spa_t *spa, dsl_dataset_t *ds, blkptr_t *bp, ASSERT(ds == NULL || MUTEX_HELD(&ds->ds_opening_lock)); - os = kmem_zalloc(sizeof (objset_t), KM_SLEEP); + os = kmem_zalloc(sizeof (objset_t), KM_PUSHPAGE); os->os_dsl_dataset = ds; os->os_spa = spa; os->os_rootbp = bp; @@ -848,7 +848,7 @@ snapshot_check(void *arg1, void *arg2, dmu_tx_t *tx) if (strlen(sn->htag) + MAX_TAG_PREFIX_LEN >= MAXNAMELEN) return (E2BIG); - sn->ha = kmem_alloc(sizeof (struct dsl_ds_holdarg), KM_SLEEP); + sn->ha = kmem_alloc(sizeof(struct dsl_ds_holdarg), KM_PUSHPAGE); sn->ha->temphold = B_TRUE; sn->ha->htag = sn->htag; } @@ -1182,17 +1182,6 @@ dmu_objset_is_dirty(objset_t *os, uint64_t txg) !list_is_empty(&os->os_free_dnodes[txg & TXG_MASK])); } -boolean_t -dmu_objset_is_dirty_anywhere(objset_t *os) -{ - int t; - - for (t = 0; t < TXG_SIZE; t++) - if (dmu_objset_is_dirty(os, t)) - return (B_TRUE); - return (B_FALSE); -} - static objset_used_cb_t *used_cbs[DMU_OST_NUMTYPES]; void @@ -1584,39 +1573,10 @@ dmu_snapshot_list_next(objset_t *os, int namelen, char *name, return (0); } -/* - * Determine the objset id for a given snapshot name. - */ int -dmu_snapshot_id(objset_t *os, const char *snapname, uint64_t *idp) +dmu_snapshot_lookup(objset_t *os, const char *name, uint64_t *value) { - dsl_dataset_t *ds = os->os_dsl_dataset; - zap_cursor_t cursor; - zap_attribute_t attr; - int error; - - if (ds->ds_phys->ds_snapnames_zapobj == 0) - return (ENOENT); - - zap_cursor_init(&cursor, ds->ds_dir->dd_pool->dp_meta_objset, - ds->ds_phys->ds_snapnames_zapobj); - - error = zap_cursor_move_to_key(&cursor, snapname, MT_EXACT); - if (error) { - zap_cursor_fini(&cursor); - return (error); - } - - error = zap_cursor_retrieve(&cursor, &attr); - if (error) { - zap_cursor_fini(&cursor); - return (error); - } - - *idp = attr.za_first_integer; - zap_cursor_fini(&cursor); - - return (0); + return dsl_dataset_snap_lookup(os->os_dsl_dataset, name, value); } int @@ -1712,7 +1672,7 @@ dmu_objset_find_spa(spa_t *spa, const char *name, } thisobj = dd->dd_phys->dd_head_dataset_obj; - attr = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP); + attr = kmem_alloc(sizeof (zap_attribute_t), KM_PUSHPAGE); dp = dd->dd_pool; /*