Home
last modified time | relevance | path

Searched refs:this_char (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/fs/xfs/
Dxfs_super.c179 char *this_char, *value; in xfs_parseargs() local
220 while ((this_char = strsep(&options, ",")) != NULL) { in xfs_parseargs()
221 if (!*this_char) in xfs_parseargs()
223 if ((value = strchr(this_char, '=')) != NULL) in xfs_parseargs()
226 if (!strcmp(this_char, MNTOPT_LOGBUFS)) { in xfs_parseargs()
229 this_char); in xfs_parseargs()
234 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) { in xfs_parseargs()
237 this_char); in xfs_parseargs()
242 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) { in xfs_parseargs()
245 this_char); in xfs_parseargs()
[all …]
/linux-4.4.14/fs/reiserfs/
Dbitmap.c568 char *this_char, *value; in reiserfs_parse_alloc_options() local
573 while ((this_char = strsep(&options, ":")) != NULL) { in reiserfs_parse_alloc_options()
574 if ((value = strchr(this_char, '=')) != NULL) in reiserfs_parse_alloc_options()
577 if (!strcmp(this_char, "concentrating_formatted_nodes")) { in reiserfs_parse_alloc_options()
591 if (!strcmp(this_char, "displacing_large_files")) { in reiserfs_parse_alloc_options()
598 if (!strcmp(this_char, "displacing_new_packing_localities")) { in reiserfs_parse_alloc_options()
603 if (!strcmp(this_char, "old_hashed_relocation")) { in reiserfs_parse_alloc_options()
608 if (!strcmp(this_char, "new_hashed_relocation")) { in reiserfs_parse_alloc_options()
613 if (!strcmp(this_char, "dirid_groups")) { in reiserfs_parse_alloc_options()
617 if (!strcmp(this_char, "oid_groups")) { in reiserfs_parse_alloc_options()
[all …]
/linux-4.4.14/mm/
Dshmem.c2750 char *this_char, *value, *rest; in shmem_parse_options() local
2756 this_char = options; in shmem_parse_options()
2772 if (!*this_char) in shmem_parse_options()
2774 if ((value = strchr(this_char,'=')) != NULL) { in shmem_parse_options()
2779 this_char); in shmem_parse_options()
2783 if (!strcmp(this_char,"size")) { in shmem_parse_options()
2796 } else if (!strcmp(this_char,"nr_blocks")) { in shmem_parse_options()
2800 } else if (!strcmp(this_char,"nr_inodes")) { in shmem_parse_options()
2804 } else if (!strcmp(this_char,"mode")) { in shmem_parse_options()
2810 } else if (!strcmp(this_char,"uid")) { in shmem_parse_options()
[all …]