Lines Matching refs:tmp
110 struct file_system_type ** tmp; in unregister_filesystem() local
113 tmp = &file_systems; in unregister_filesystem()
114 while (*tmp) { in unregister_filesystem()
115 if (fs == *tmp) { in unregister_filesystem()
116 *tmp = fs->next; in unregister_filesystem()
122 tmp = &(*tmp)->next; in unregister_filesystem()
134 struct file_system_type * tmp; in fs_index() local
145 for (tmp=file_systems, index=0 ; tmp ; tmp=tmp->next, index++) { in fs_index()
146 if (strcmp(tmp->name, name->name) == 0) { in fs_index()
158 struct file_system_type * tmp; in fs_name() local
162 for (tmp = file_systems; tmp; tmp = tmp->next, index--) { in fs_name()
164 if (try_module_get(tmp->owner)) in fs_name()
174 len = strlen(tmp->name) + 1; in fs_name()
175 res = copy_to_user(buf, tmp->name, len) ? -EFAULT : 0; in fs_name()
176 put_filesystem(tmp); in fs_name()
182 struct file_system_type * tmp; in fs_maxindex() local
186 for (tmp = file_systems, index = 0 ; tmp ; tmp = tmp->next, index++) in fs_maxindex()
243 struct file_system_type * tmp; in filesystems_proc_show() local
246 tmp = file_systems; in filesystems_proc_show()
247 while (tmp) { in filesystems_proc_show()
249 (tmp->fs_flags & FS_REQUIRES_DEV) ? "" : "nodev", in filesystems_proc_show()
250 tmp->name); in filesystems_proc_show()
251 tmp = tmp->next; in filesystems_proc_show()