Home | History | Annotate | Download | only in zfs

Lines Matching defs:osname

3201 	char *osname, *p;
3231 osname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
3232 if (snprintf(osname, MAXPATHLEN, "%s/", name) >= MAXPATHLEN) {
3234 kmem_free(osname, MAXPATHLEN);
3237 p = osname + strlen(osname);
3238 len = MAXPATHLEN - (p - osname);
3244 if (!dataset_name_hidden(osname))
3245 (void) dmu_objset_prefetch(osname, NULL);
3250 while (dmu_dir_list_next(os, MAXPATHLEN - (p - osname), p, NULL,
3253 (void)zvol_create_minors(osname);
3262 kmem_free(osname, MAXPATHLEN);