Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ZFSin/zfs/cmd/zpool/zpool_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8889,7 +8889,7 @@ main(int argc, char **argv)
(void) printf("dumping core by request\n");
abort();
}
TraceWrite("Zpool main funct ended [%s:%d]", __func__, __LINE__);
TraceWrite("Zpool main funct ended.ret=%d [%s:%d]", ret, __func__, __LINE__);
TraceClose();
mutex_destroy(&log_lock);
return (ret);
Expand Down
3 changes: 2 additions & 1 deletion ZFSin/zfs/lib/libzfs/libzfs_import.c
Original file line number Diff line number Diff line change
Expand Up @@ -2257,6 +2257,7 @@ zpool_find_import_win(libzfs_handle_t *hdl, importargs_t *iarg)
} // while SetupDiEnumDeviceInterfaces

TraceWrite("After enumerating devices [%s:%d]", __func__, __LINE__);
#if 0
/* Now lets iterate the partitions (volumes) */
HANDLE vol;
vol = FindFirstVolume(rdsk, sizeof(rdsk));
Expand Down Expand Up @@ -2285,7 +2286,7 @@ zpool_find_import_win(libzfs_handle_t *hdl, importargs_t *iarg)
}

TraceWrite("After processing the Volumes [%s:%d]", __func__, __LINE__);

#endif
/*
* create a thread pool to do all of this in parallel;
* rn_nozpool is not protected, so this is racy in that
Expand Down