Lines Matching refs:options
144 char *buf, *devname = NULL, *options = NULL; in afs_mntpt_do_automount() local
161 options = (char *) get_zeroed_page(GFP_KERNEL); in afs_mntpt_do_automount()
162 if (!options) in afs_mntpt_do_automount()
184 memcpy(options, "cell=", 5); in afs_mntpt_do_automount()
185 strcpy(options + 5, super->volume->cell->name); in afs_mntpt_do_automount()
187 strcat(options, ",rwpath"); in afs_mntpt_do_automount()
190 _debug("--- attempting mount %s -o %s ---", devname, options); in afs_mntpt_do_automount()
191 mnt = vfs_kern_mount(&afs_fs_type, 0, devname, options); in afs_mntpt_do_automount()
195 free_page((unsigned long) options); in afs_mntpt_do_automount()
204 if (options) in afs_mntpt_do_automount()
205 free_page((unsigned long) options); in afs_mntpt_do_automount()