Resolve stat conflict with stat()

This commit is contained in:
Brian Behlendorf 2008-12-18 09:03:02 -08:00
parent 194244b80b
commit c37308fc20
1 changed files with 3 additions and 3 deletions

View File

@ -960,11 +960,11 @@ dmu_objset_fsid_guid(objset_t *os)
} }
void void
dmu_objset_fast_stat(objset_t *os, dmu_objset_stats_t *stat) dmu_objset_fast_stat(objset_t *os, dmu_objset_stats_t *st)
{ {
stat->dds_type = os->os->os_phys->os_type; st->dds_type = os->os->os_phys->os_type;
if (os->os->os_dsl_dataset) if (os->os->os_dsl_dataset)
dsl_dataset_fast_stat(os->os->os_dsl_dataset, stat); dsl_dataset_fast_stat(os->os->os_dsl_dataset, st);
} }
void void