search for: dl_dx_root_bh

Displaying 3 results from an estimated 3 matches for "dl_dx_root_bh".

2009 Oct 22
0
[PATCH] indexed-dirs: fix brelse order in ocfs2_find_entry_dx()
...ntry_dx(const char *name, int namelen, ret = ocfs2_read_inode_block(dir, &di_bh); if (ret) { mlog_errno(ret); - goto out; + goto out_di; } di = (struct ocfs2_dinode *)di_bh->b_data; @@ -1070,8 +1070,9 @@ static int ocfs2_find_entry_dx(const char *name, int namelen, lookup->dl_dx_root_bh = dx_root_bh; dx_root_bh = NULL; out: - brelse(di_bh); brelse(dx_root_bh); +out_di: + brelse(di_bh); return ret; } -- Coly Li SuSE Labs
2009 Jan 30
8
[PATCH 0/7] ocfs2: Directory indexing support
The following patches implement indexed directory support in Ocfs2, mostly according to the design doc I wrote up a while ago: http://oss.oracle.com/osswiki/OCFS2/DesignDocs/IndexedDirectories The patches have been rebased on top of 2.6.29-rc2. It should be trivial to put them into merge_window. Things are what I'd call complete now. I'd like to get these into the merge_window branch
2009 Mar 17
33
[git patches] Ocfs2 updates for 2.6.30
Hi, The following patches comprise the bulk of Ocfs2 updates for the 2.6.30 merge window. Aside from larger, more involved fixes, we're adding the following features, which I will describe in the order their patches are mailed. Sunil's exported some more state to our debugfs files, and consolidated some other aspects of our debugfs infrastructure. This will further aid us in debugging