Displaying 1 result from an estimated 1 matches for "ext2_fs_i".
Did you mean:
ext2_fs
2001 Aug 20
1
[tytso@mit.edu: Re: Your ext2 optimisation for readdir+stat]
...to found;
ext2_put_page(page);
- }
+ if (++n >= npages)
+ n = 0;
+ } while (n != start);
return NULL;
found:
*res_page = page;
+ dir->u.ext2_i.i_dir_start_lookup = n;
return de;
}
===================================================================
RCS file: include/linux/RCS/ext2_fs_i.h,v
retrieving revision 1.1
diff -u -r1.1 include/linux/ext2_fs_i.h
--- include/linux/ext2_fs_i.h 2001/08/18 11:10:48 1.1
+++ include/linux/ext2_fs_i.h 2001/08/18 11:11:18
@@ -34,6 +34,7 @@
__u32 i_next_alloc_goal;
__u32 i_prealloc_block;
__u32 i_prealloc_count;
+ __u32 i_dir_start_lookup;...