diff options
Diffstat (limited to 'fs/hfsplus/extents.c')
| -rw-r--r-- | fs/hfsplus/extents.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/hfsplus/extents.c b/fs/hfsplus/extents.c index eba76eab6d6..a94f0f779d5 100644 --- a/fs/hfsplus/extents.c +++ b/fs/hfsplus/extents.c @@ -95,7 +95,7 @@ static void __hfsplus_ext_write_extent(struct inode *inode,  			      HFSPLUS_IS_RSRC(inode) ?  				HFSPLUS_TYPE_RSRC : HFSPLUS_TYPE_DATA); -	res = hfs_brec_find(fd); +	res = hfs_brec_find(fd, hfs_find_rec_by_key);  	if (hip->extent_state & HFSPLUS_EXT_NEW) {  		if (res != -ENOENT)  			return; @@ -154,7 +154,7 @@ static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd,  	hfsplus_ext_build_key(fd->search_key, cnid, block, type);  	fd->key->ext.cnid = 0; -	res = hfs_brec_find(fd); +	res = hfs_brec_find(fd, hfs_find_rec_by_key);  	if (res && res != -ENOENT)  		return res;  	if (fd->key->ext.cnid != fd->search_key->ext.cnid ||  |