search for: dlimit

Displaying 1 result from an estimated 1 matches for "dlimit".

Did you mean: limit
2003 Jan 16
0
[PATCH] Using qstr in ext3_get_parent()
...gs & 1) { @@ -706,15 +705,15 @@ */ static inline int search_dirblock(struct buffer_head * bh, struct inode *dir, - struct dentry *dentry, + struct qstr *entry, unsigned long offset, struct ext3_dir_entry_2 ** res_dir) { struct ext3_dir_entry_2 * de; char * dlimit; int de_len; - const char *name = dentry->d_name.name; - int namelen = dentry->d_name.len; + const char *name = entry->name; + int namelen = entry->len; de = (struct ext3_dir_entry_2 *) bh->b_data; dlimit = bh->b_data + dir->i_sb->s_blocksize; @@ -755,8 +754,8 @@ *...