Displaying 2 results from an estimated 2 matches for "buffer_journaled".
2001 May 16
1
Re: [linux-lvm] lvm deadlock with 2.4.x kernel?
...idate_buffers() being called which then triggers
refile_buffer() on a journaled buffer, which appears clean in all other
ways according to the checks in refile_buffer().
The following is what I've got in __invalidate_buffers() right now.
if (!bh->b_count && !buffer_journaled(bh) &&
(destroy_dirty_buffers || !buffer_dirty(bh)))
put_last_free(bh);
if (slept)
goto again;
Stephen suggested something along the above a bit ago, except he uses
bh->b_...
2001 Nov 06
1
reiserfs and ext3 in 2.2.20
I am trying to compile 2.2.20 with both ext3 and reiserfs (to easily
migrate from reiserfs to ext3 :-)
All patches merge nicly, but compile fails because "buffer_journaled"
is defined by both reiserfs and ext3. I looked at the "2.2.14 ext3 +
reiserfs incompatibility"-thread on the kernel list and figured out
that renaming "buffer_journaled" in fs/buffer.c and include/linux/fs.h
to "buffer_journaled_ext" seems to works as someone men...