Re: [Ocfs2-devel] [PATCH 4/4] Implement "GROUP_ADD" for online resize.take 3

2007-12-14 Thread Joel Becker
On Fri, Dec 14, 2007 at 03:56:41PM +0800, Tao Ma wrote: > 2. For every new groups, tunefs.ocfs2 will call OCFS2_IOC_GROUP_ADD >to add them one by one. The new group descriptor is initialized >in userspace, we only check it in the kernel and update the >global_bitap, super blocks etc.

[Ocfs2-devel] [PATCH 4/4] Implement "GROUP_ADD" for online resize.take 3

2007-12-14 Thread Tao Ma
Modification from V2 to V3: 1. Modify the call sequence for ocfs2_commit_trans so that we will always call it after a successful start_trans. 2. As we need to update the group's bg_next_group in the kernel, move the group read in the main function and add the writeout of this group also. 3. A