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;
453 if (fsloc->locations)
465 fsloc->locations = kcalloc(fsloc->locations_count,
468 if (!fsloc->locations)
477 fsloc->locations[i].hosts = kstrdup(buf, GFP_KERNEL);
478 if (!fsloc->locations[i].hosts)
486 fsloc->locations[i].path = kstrdup(buf, GFP_KERNEL);
487 if (!fsloc->locations[i].path)
816 new->ex_fslocs.locations = NULL;
839 new->ex_fslocs.locations = item->ex_fslocs.locations;
840 item->ex_fslocs.locations = NULL;
1327 seq_escape(m, fsloc->locations[0].path, ",;@ \t\n\\");
1329 seq_escape(m, fsloc->locations[0].hosts, ",;@ \t\n\\");
1332 seq_escape(m, fsloc->locations[i].path, ",;@ \t\n\\");
1334 seq_escape(m, fsloc->locations[i].hosts, ",;@ \t\n\\");