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()
163 if (index <= 0 && try_module_get(tmp->owner)) in fs_name()
166 if (!tmp) in fs_name()
170 len = strlen(tmp->name) + 1; in fs_name()
171 res = copy_to_user(buf, tmp->name, len) ? -EFAULT : 0; in fs_name()
172 put_filesystem(tmp); in fs_name()
178 struct file_system_type * tmp; in fs_maxindex() local
182 for (tmp = file_systems, index = 0 ; tmp ; tmp = tmp->next, index++) in fs_maxindex()
239 struct file_system_type * tmp; in filesystems_proc_show() local
242 tmp = file_systems; in filesystems_proc_show()
243 while (tmp) { in filesystems_proc_show()
245 (tmp->fs_flags & FS_REQUIRES_DEV) ? "" : "nodev", in filesystems_proc_show()
246 tmp->name); in filesystems_proc_show()
247 tmp = tmp->next; in filesystems_proc_show()