search for: dl_name

Displaying 1 result from an estimated 1 matches for "dl_name".

Did you mean: d_name
2006 Aug 25
4
Looking for confirmation.
.... fsx wasn''t able to break my port, but the test you can find here: http://people.freebsd.org/~kan/fsstress.tar.gz broke it. My kernel panics on this assertion (zfs_dir.c): 749: mutex_exit(&dzp->z_lock); 750: 751: error = zap_remove(zp->z_zfsvfs->z_os, dzp->z_id, dl->dl_name, tx); 752-> ASSERT(error == 0); 753: 754: if (reaped_ptr != NULL) zap_remove() returns ENOENT, which is returned because mze_find() returns NULL. I changed this assertion to printf and I don''t see any other problems with this test-suite - ZFS is stable. What I''m looking for i...