• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfs/

Lines Matching refs:string

29 #include <linux/string.h>
98 /* Mount options that take string arguments */
945 * Error-check and convert a string of mount options from user space into
946 * a data structure. The whole mount string is processed; bad options are
953 char *p, *string, *secdata;
959 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
1090 string = match_strdup(args);
1091 if (string == NULL)
1093 rc = strict_strtoul(string, 10, &option);
1094 kfree(string);
1100 string = match_strdup(args);
1101 if (string == NULL)
1103 rc = strict_strtoul(string, 10, &option);
1104 kfree(string);
1110 string = match_strdup(args);
1111 if (string == NULL)
1113 rc = strict_strtoul(string, 10, &option);
1114 kfree(string);
1120 string = match_strdup(args);
1121 if (string == NULL)
1123 rc = strict_strtoul(string, 10, &option);
1124 kfree(string);
1130 string = match_strdup(args);
1131 if (string == NULL)
1133 rc = strict_strtoul(string, 10, &option);
1134 kfree(string);
1140 string = match_strdup(args);
1141 if (string == NULL)
1143 rc = strict_strtoul(string, 10, &option);
1144 kfree(string);
1150 string = match_strdup(args);
1151 if (string == NULL)
1153 rc = strict_strtoul(string, 10, &option);
1154 kfree(string);
1160 string = match_strdup(args);
1161 if (string == NULL)
1163 rc = strict_strtoul(string, 10, &option);
1164 kfree(string);
1170 string = match_strdup(args);
1171 if (string == NULL)
1173 rc = strict_strtoul(string, 10, &option);
1174 kfree(string);
1180 string = match_strdup(args);
1181 if (string == NULL)
1183 rc = strict_strtoul(string, 10, &option);
1184 kfree(string);
1190 string = match_strdup(args);
1191 if (string == NULL)
1193 rc = strict_strtoul(string, 10, &option);
1194 kfree(string);
1201 string = match_strdup(args);
1202 if (string == NULL)
1204 rc = strict_strtoul(string, 10, &option);
1205 kfree(string);
1211 string = match_strdup(args);
1212 if (string == NULL)
1214 rc = strict_strtoul(string, 10, &option);
1215 kfree(string);
1221 string = match_strdup(args);
1222 if (string == NULL)
1224 rc = strict_strtoul(string, 10, &option);
1225 kfree(string);
1233 string = match_strdup(args);
1234 if (string == NULL)
1236 rc = strict_strtoul(string, 10, &option);
1237 kfree(string);
1260 string = match_strdup(args);
1261 if (string == NULL)
1263 rc = strict_strtoul(string, 10, &option);
1264 kfree(string);
1276 string = match_strdup(args);
1277 if (string == NULL)
1279 rc = nfs_parse_security_flavors(string, mnt);
1280 kfree(string);
1288 string = match_strdup(args);
1289 if (string == NULL)
1291 token = match_token(string,
1301 kfree(string);
1308 kfree(string);
1314 xprt_load_transport(string);
1315 kfree(string);
1320 kfree(string);
1325 string = match_strdup(args);
1326 if (string == NULL)
1328 token = match_token(string,
1330 kfree(string);
1352 string = match_strdup(args);
1353 if (string == NULL)
1356 rpc_pton(string, strlen(string),
1360 kfree(string);
1365 string = match_strdup(args);
1366 if (string == NULL)
1369 mnt->client_address = string;
1372 string = match_strdup(args);
1373 if (string == NULL)
1376 mnt->mount_server.hostname = string;
1379 string = match_strdup(args);
1380 if (string == NULL)
1383 rpc_pton(string, strlen(string),
1387 kfree(string);
1392 string = match_strdup(args);
1393 if (string == NULL)
1395 token = match_token(string,
1397 kfree(string);
1416 string = match_strdup(args);
1417 if (string == NULL)
1420 mnt->fscache_uniq = string;
1834 * converting back to the full string selinux understands.