Displaying 2 results from an estimated 2 matches for "dmu_pool_directory_object".
2010 Jan 19
8
Panic running a scrub
...ave the dump and the
/var/adm/messages containing the trace.
Is there any point in submitting a bug report?
The panic starts with:
Jan 19 13:27:13 host6 ^Mpanic[cpu1]/thread=2a1009f5c80:
Jan 19 13:27:13 host6 unix: [ID 403854 kern.notice] assertion failed: 0 == zap_update(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_SCRUB_BOOKMARK, sizeof (uint64_t), 4, &dp->dp_scrub_bookmark, tx), file: ../../common/fs/zfs/dsl_scrub.c, line: 853
FWIW when the system came back up, it resilvered with no
problem and now I''m rerunning the scrub.
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...um = dnode_get(mdn, objnum, 0, dn, stack)))
+ if (errnum = dnode_get(mdn, objnum, 0, dn, stack))
return (errnum);
*path = ch;
@@ -843,8 +932,8 @@ get_default_bootfsobj(dnode_phys_t *mosm
dnode_phys_t *dn = (dnode_phys_t *)stack;
stack += DNODE_SIZE;
- if ((errnum = dnode_get(mosmdn, DMU_POOL_DIRECTORY_OBJECT,
- DMU_OT_OBJECT_DIRECTORY, dn, stack)))
+ if (errnum = dnode_get(mosmdn, DMU_POOL_DIRECTORY_OBJECT,
+ DMU_OT_OBJECT_DIRECTORY, dn, stack))
return (errnum);
/*
@@ -854,7 +943,7 @@ get_default_bootfsobj(dnode_phys_t *mosm
if (zap_lookup(dn, DMU_POOL_PROPS, &objnum, stack))
re...