Home
last modified time | relevance | path

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

/linux-4.1.27/fs/xfs/
Dxfs_super.c177 char *this_char, *value; in xfs_parseargs() local
218 while ((this_char = strsep(&options, ",")) != NULL) { in xfs_parseargs()
219 if (!*this_char) in xfs_parseargs()
221 if ((value = strchr(this_char, '=')) != NULL) in xfs_parseargs()
224 if (!strcmp(this_char, MNTOPT_LOGBUFS)) { in xfs_parseargs()
227 this_char); in xfs_parseargs()
232 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) { in xfs_parseargs()
235 this_char); in xfs_parseargs()
240 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) { in xfs_parseargs()
243 this_char); in xfs_parseargs()
[all …]
/linux-4.1.27/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.1.27/mm/
Dshmem.c2741 char *this_char, *value, *rest; in shmem_parse_options() local
2747 this_char = options; in shmem_parse_options()
2763 if (!*this_char) in shmem_parse_options()
2765 if ((value = strchr(this_char,'=')) != NULL) { in shmem_parse_options()
2770 this_char); in shmem_parse_options()
2774 if (!strcmp(this_char,"size")) { in shmem_parse_options()
2787 } else if (!strcmp(this_char,"nr_blocks")) { in shmem_parse_options()
2791 } else if (!strcmp(this_char,"nr_inodes")) { in shmem_parse_options()
2795 } else if (!strcmp(this_char,"mode")) { in shmem_parse_options()
2801 } else if (!strcmp(this_char,"uid")) { in shmem_parse_options()
[all …]