Lines Matching defs:locations
319 struct nfsd4_fs_location *locations = fsloc->locations;
322 if (!locations)
326 kfree(locations[i].path);
327 kfree(locations[i].hosts);
330 kfree(locations);
331 fsloc->locations = NULL;
424 if (fsloc->locations)
436 fsloc->locations = kcalloc(fsloc->locations_count,
439 if (!fsloc->locations)
448 fsloc->locations[i].hosts = kstrdup(buf, GFP_KERNEL);
449 if (!fsloc->locations[i].hosts)
457 fsloc->locations[i].path = kstrdup(buf, GFP_KERNEL);
458 if (!fsloc->locations[i].path)
739 new->ex_fslocs.locations = NULL;
761 new->ex_fslocs.locations = item->ex_fslocs.locations;
762 item->ex_fslocs.locations = NULL;
1225 seq_escape(m, fsloc->locations[0].path, ",;@ \t\n\\");
1227 seq_escape(m, fsloc->locations[0].hosts, ",;@ \t\n\\");
1230 seq_escape(m, fsloc->locations[i].path, ",;@ \t\n\\");
1232 seq_escape(m, fsloc->locations[i].hosts, ",;@ \t\n\\");