All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure
@ 2008-01-04 14:55 Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 1/11] Correct 'const' for _lv_mimage_in_sync() Jun'ichi Nomura
                   ` (12 more replies)
  0 siblings, 13 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 14:55 UTC (permalink / raw)
  To: lvm-devel

These patchset includes bugfixes and feature updates to
the recently committed lvconvert changes.

Bug fixes
[ 1/11] Correct 'const' for _lv_mimage_in_sync()
[ 2/11] Don't start polldaemon if conversion failed in early stage
[ 3/11] Multiple fixes about to-corelog conversion
[ 4/11] Fix possible mirror image corruption 
[ 5/11] Don't insert temporary layer for corelog mirror
[ 6/11] init_mirror_in_sync(0) for corelog mirror addition
[ 7/11] Fix semantic consistency of mirrorlog option

Feature updates
[ 8/11] Add internal 'CONVERTING' flag for LVs under conversion
[ 9/11] Add a new attr field char for the CONVERTING LV
[10/11] Warn if lvconvert needs activation to complete conversion
[11/11] Start lvconvert polldaemon on activation (like pvmove)

Other things I would like to work on next are:
  - Generalization of seg->mirrored_seg as upward link
    from LV to seg(s) which use the LV.
  - Review and fix remove_mirror_images() so that 'removable_pvs'
    filtering works on stacked mirror.
  - Review the suspend code path. I think 'noflush' should be
    avoided for lower-level mirrors. Otherwise the upper-level mirror
    can't suspend.
  - Remaining patches from the last post:
    https://www.redhat.com/archives/lvm-devel/2007-December/msg00045.html
     [11/13] Add 'lv_mirrors' field to reporting functions
     [12/13] Remove hardcoded "_mlog" name from deptree construction
     [13/13] Allow disk logs for temporary resync mirror
  - Creating a script for 'make check'

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America



^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 1/11] Correct 'const' for _lv_mimage_in_sync()
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
@ 2008-01-04 15:12 ` Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 2/11] Don't start polldaemon if conversion failed in early stage Jun'ichi Nomura
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:12 UTC (permalink / raw)
  To: lvm-devel

The patch removes this warning:

report/report.c:315: warning: passing argument 1 of '_lv_mimage_in_sync' discards qualifiers from pointer target type

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: fix-const-correctness-for-lv_mimage_in_sync.patch
Type: text/x-patch
Size: 597 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/4e2c5353/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 2/11] Don't start polldaemon if conversion failed in early stage
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 1/11] Correct 'const' for _lv_mimage_in_sync() Jun'ichi Nomura
@ 2008-01-04 15:12 ` Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 3/11] Multiple fixes about to-corelog conversion Jun'ichi Nomura
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:12 UTC (permalink / raw)
  To: lvm-devel

If lvconvert fails in the early stage, we shouldn't invoke
polldaemon.

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: fix-dont-poll-if-failed.patch
Type: text/x-patch
Size: 517 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/2e852642/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 3/11] Multiple fixes about to-corelog conversion
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 1/11] Correct 'const' for _lv_mimage_in_sync() Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 2/11] Don't start polldaemon if conversion failed in early stage Jun'ichi Nomura
@ 2008-01-04 15:12 ` Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 4/11] Fix possible mirror image corruption Jun'ichi Nomura
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:12 UTC (permalink / raw)
  To: lvm-devel

_remove_mirror_images() is the core function used for both
mirror image removal and mirror log removal.
However, it has some bugs and to-corelog conversion didn't work
at all.

The patches fixes them at once.
Please see the patch header for detailed information about
each bug.

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: fix-corelog-convert.patch
Type: text/x-patch
Size: 4452 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/2f648174/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 4/11] Fix possible mirror image corruption
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
                   ` (2 preceding siblings ...)
  2008-01-04 15:12 ` [PATCH lvconvert 3/11] Multiple fixes about to-corelog conversion Jun'ichi Nomura
@ 2008-01-04 15:12 ` Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 5/11] Don't insert temporary layer for corelog mirror Jun'ichi Nomura
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:12 UTC (permalink / raw)
  To: lvm-devel

collapse_mirrored_lv() is a function to move mimage LVs from
temporary sync layer to the original LV after sync completion.
However, the code did resume_lv between the removal of mimage LVs
and addition of them. As a result, it's possible to make the
mimage LVs out-of-sync while mirror log says in-sync.

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: fix-atomic-remove-and-merge.patch
Type: text/x-patch
Size: 5279 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/e6a4d298/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 5/11] Don't insert temporary layer for corelog mirror
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
                   ` (3 preceding siblings ...)
  2008-01-04 15:12 ` [PATCH lvconvert 4/11] Fix possible mirror image corruption Jun'ichi Nomura
@ 2008-01-04 15:12 ` Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 6/11] init_mirror_in_sync(0) for corelog mirror addition Jun'ichi Nomura
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:12 UTC (permalink / raw)
  To: lvm-devel

lvconvert inserts a temporary layer so that it can sync newly added
mirrors while keeping the original mirror in-sync.
However, LVM2 manages in-sync status for corelog mirror by
the global _mirror_in_sync variable.
So the insertion just duplicates the sync effort.

If the original mirror is corelog, we can just add mimage LV to it
and restart sync.

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: fix-dont-insert-tmplayer-for-corelog-mirror.patch
Type: text/x-patch
Size: 1834 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/ebdb32d8/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 6/11] init_mirror_in_sync(0) for corelog mirror addition
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
                   ` (4 preceding siblings ...)
  2008-01-04 15:12 ` [PATCH lvconvert 5/11] Don't insert temporary layer for corelog mirror Jun'ichi Nomura
@ 2008-01-04 15:12 ` Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 7/11] Fix semantic consistency of mirrorlog option Jun'ichi Nomura
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:12 UTC (permalink / raw)
  To: lvm-devel

Since corelog mirror is controlled by the global _mirror_in_sync,
lv_add_mirrors() should explicitly reset it when adding mirrors
with corelog.
Otherwise, it might be set 'in-sync' in some other places and
skip sync process.

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: fix-init-sync-status-for-corelog.patch
Type: text/x-patch
Size: 844 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/c58e3f54/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 7/11] Fix semantic consistency of mirrorlog option
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
                   ` (5 preceding siblings ...)
  2008-01-04 15:12 ` [PATCH lvconvert 6/11] init_mirror_in_sync(0) for corelog mirror addition Jun'ichi Nomura
@ 2008-01-04 15:12 ` Jun'ichi Nomura
  2008-01-04 15:12 ` [PATCH lvconvert 8/11] Add internal 'CONVERTING' flag for LVs under conversion Jun'ichi Nomura
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:12 UTC (permalink / raw)
  To: lvm-devel

'--mirrorlog'/'--corelog' options of lvconvert are used to
add/remove disklog of mirrored LV.
However, it had different meanings for "adding mirrors to mirror",
i.e. the options specify whether to use disklog for conversion.
The patch corrects it.

-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: fix-semantic-consistency-of-mirrorlog-option.patch
Type: text/x-patch
Size: 2103 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/53355b99/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 8/11] Add internal 'CONVERTING' flag for LVs under conversion
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
                   ` (6 preceding siblings ...)
  2008-01-04 15:12 ` [PATCH lvconvert 7/11] Fix semantic consistency of mirrorlog option Jun'ichi Nomura
@ 2008-01-04 15:12 ` Jun'ichi Nomura
  2008-01-04 15:13 ` [PATCH lvconvert 9/11] Add a new attr field char for the CONVERTING LV Jun'ichi Nomura
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:12 UTC (permalink / raw)
  To: lvm-devel

Add 'CONVERTING' flag for LVs under conversion.
Reporting code and daemon restarting code will use it.

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: lvconvert-add-flag.patch
Type: text/x-patch
Size: 2571 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/6377cdc4/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 9/11] Add a new attr field char for the CONVERTING LV
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
                   ` (7 preceding siblings ...)
  2008-01-04 15:12 ` [PATCH lvconvert 8/11] Add internal 'CONVERTING' flag for LVs under conversion Jun'ichi Nomura
@ 2008-01-04 15:13 ` Jun'ichi Nomura
  2008-01-04 15:13 ` [PATCH lvconvert 10/11] Warn if lvconvert needs activation to complete conversion Jun'ichi Nomura
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:13 UTC (permalink / raw)
  To: lvm-devel

The patch changes the reporting format to show the conversion
structure.

# lvs -o+convert_lv vg
  LV    VG   Attr   LSize Origin Snap%  Move Log Copy%  Convert          
  lvol0 vg   cwi--- 1.00G                               lvol0_mimagetmp_2

'c' in the 'Attr' field means 'LV under conversion'.
'Convert' field points to the temporary LV for the conversion.

Might be better to add a new char for Attr field than
using volume-type char.

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: lvconvert-add-attr-char-for-converting.patch
Type: text/x-patch
Size: 3974 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/ed53e075/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 10/11] Warn if lvconvert needs activation to complete conversion
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
                   ` (8 preceding siblings ...)
  2008-01-04 15:13 ` [PATCH lvconvert 9/11] Add a new attr field char for the CONVERTING LV Jun'ichi Nomura
@ 2008-01-04 15:13 ` Jun'ichi Nomura
  2008-01-04 15:13 ` [PATCH lvconvert 11/11] Start lvconvert polldaemon on activation (like pvmove) Jun'ichi Nomura
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:13 UTC (permalink / raw)
  To: lvm-devel

lvconvert requires activation of the LV, when it adds mirrors to
already mirrored LV. The patch makes it to print a message when
the LV was not activated.
(Alternative may force activation on lvconvert.)

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: lvconvert-check-active.patch
Type: text/x-patch
Size: 974 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/b3f50ed3/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 11/11] Start lvconvert polldaemon on activation (like pvmove)
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
                   ` (9 preceding siblings ...)
  2008-01-04 15:13 ` [PATCH lvconvert 10/11] Warn if lvconvert needs activation to complete conversion Jun'ichi Nomura
@ 2008-01-04 15:13 ` Jun'ichi Nomura
  2008-01-10 18:40 ` [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Alasdair G Kergon
  2008-01-10 20:36 ` Jun'ichi Nomura
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-04 15:13 UTC (permalink / raw)
  To: lvm-devel

polldaemon should be invoked on activation
if the LV is under conversion.

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America
-------------- next part --------------
A non-text attachment was scrubbed...
Name: lvconvert-start-polling-on-activation.patch
Type: text/x-patch
Size: 2390 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/lvm-devel/attachments/20080104/c729f9a8/attachment.bin>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
                   ` (10 preceding siblings ...)
  2008-01-04 15:13 ` [PATCH lvconvert 11/11] Start lvconvert polldaemon on activation (like pvmove) Jun'ichi Nomura
@ 2008-01-10 18:40 ` Alasdair G Kergon
  2008-01-10 19:53   ` Jun'ichi Nomura
  2008-01-10 20:36 ` Jun'ichi Nomura
  12 siblings, 1 reply; 15+ messages in thread
From: Alasdair G Kergon @ 2008-01-10 18:40 UTC (permalink / raw)
  To: lvm-devel

On Fri, Jan 04, 2008 at 09:55:20AM -0500, Jun'ichi Nomura wrote:
> Bug fixes
> [ 1/11] Correct 'const' for _lv_mimage_in_sync()
> [ 2/11] Don't start polldaemon if conversion failed in early stage
> [ 3/11] Multiple fixes about to-corelog conversion
> [ 4/11] Fix possible mirror image corruption 
> [ 5/11] Don't insert temporary layer for corelog mirror
> [ 6/11] init_mirror_in_sync(0) for corelog mirror addition
> [ 7/11] Fix semantic consistency of mirrorlog option
> 
> Feature updates
> [ 8/11] Add internal 'CONVERTING' flag for LVs under conversion
> [ 9/11] Add a new attr field char for the CONVERTING LV
> [10/11] Warn if lvconvert needs activation to complete conversion

Not sure here - should we perform the activation immediately?

> [11/11] Start lvconvert polldaemon on activation (like pvmove)
 
All applied, thanks.

Alasdair
-- 
agk at redhat.com



^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure
  2008-01-10 18:40 ` [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Alasdair G Kergon
@ 2008-01-10 19:53   ` Jun'ichi Nomura
  0 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-10 19:53 UTC (permalink / raw)
  To: lvm-devel

Alasdair G Kergon wrote:
> On Fri, Jan 04, 2008 at 09:55:20AM -0500, Jun'ichi Nomura wrote:
>> [10/11] Warn if lvconvert needs activation to complete conversion
> 
> Not sure here - should we perform the activation immediately?

I think it's ok to leave it for the users decision.
IMO, if the LV is not active when lvconvert is executed,
there is likely a reason the LV is not activated.

It followed the way linear-to-mirror conversion used to work.
If linear inactive LV is converted to mirror, syncing doesn't
start until it's activated.
(With that regard, maybe I should have let lvconvert take
  '--wait' rather than '--background' and return immediately
 by default.)

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America



^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure
  2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
                   ` (11 preceding siblings ...)
  2008-01-10 18:40 ` [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Alasdair G Kergon
@ 2008-01-10 20:36 ` Jun'ichi Nomura
  12 siblings, 0 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2008-01-10 20:36 UTC (permalink / raw)
  To: lvm-devel

Jun'ichi Nomura wrote:
> Other things I would like to work on next are:
..
>   - Review and fix remove_mirror_images() so that 'removable_pvs'
>     filtering works on stacked mirror.

For remove_mirror_images() to properly work with stacked
mirror, I'm going to allow "mirror" segment with 1 area.

'removable_pvs' is used for selectively removing mimage LVs.
Especially, it's important for mirror reconfiguration
after device failure.
However, the current code can't handle the case where
"_mimagetmp" LV turns to become single.

I've been thinking about this situation:

  1 mirror is added to 2-way mirrored LV

      lv0
        +-- lv0_mimagetmp_2
        |      +-- lv0_mimage_0
        |      +-- lv0_mimage_1
        |      +-- lv0_mlog
        +-- lv0_mimage_2

  lv0_mimage_2 is still syncing.
  lv0_mlog contains sync status between lv0_mimage_0 and
  lv0_mimage_1.

If lv0_mimage_1 is removed, what should we do?

What the current code will do is:

      lv0
        +-- lv0_mimagetmp_2
        +-- lv0_mimage_2

Of course, it's not correct.

IMO, first, the lv0_mimage_1 is removed and lv0_mlog is
set to mark in-sync,

      lv0
        +-- lv0_mimagetmp_2
        |      +-- lv0_mimage_0
        |      +-- lv0_mlog
        +-- lv0_mimage_2

then, polldaemon converts it after sync completion,

      lv0
        +-- lv0_mimage_0
        +-- lv0_mimage_2
        +-- lv0_mlog

So in the intermediate state, "mirror" segment will have
only 1 area. There's already a code related to pvmove that
uses "linear" target for "mirror" segment.
It's not enough to convert to "linear" segment because
that makes mirror parameters (log LV, region size, etc.) lost.

>   - Review the suspend code path. I think 'noflush' should be
>     avoided for lower-level mirrors. Otherwise the upper-level mirror
>     can't suspend.

Suspend is done top-down. So 'noflush' should not be a problem.

Thanks,
-- 
Jun'ichi Nomura, NEC Corporation of America



^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2008-01-10 20:36 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-04 14:55 [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Jun'ichi Nomura
2008-01-04 15:12 ` [PATCH lvconvert 1/11] Correct 'const' for _lv_mimage_in_sync() Jun'ichi Nomura
2008-01-04 15:12 ` [PATCH lvconvert 2/11] Don't start polldaemon if conversion failed in early stage Jun'ichi Nomura
2008-01-04 15:12 ` [PATCH lvconvert 3/11] Multiple fixes about to-corelog conversion Jun'ichi Nomura
2008-01-04 15:12 ` [PATCH lvconvert 4/11] Fix possible mirror image corruption Jun'ichi Nomura
2008-01-04 15:12 ` [PATCH lvconvert 5/11] Don't insert temporary layer for corelog mirror Jun'ichi Nomura
2008-01-04 15:12 ` [PATCH lvconvert 6/11] init_mirror_in_sync(0) for corelog mirror addition Jun'ichi Nomura
2008-01-04 15:12 ` [PATCH lvconvert 7/11] Fix semantic consistency of mirrorlog option Jun'ichi Nomura
2008-01-04 15:12 ` [PATCH lvconvert 8/11] Add internal 'CONVERTING' flag for LVs under conversion Jun'ichi Nomura
2008-01-04 15:13 ` [PATCH lvconvert 9/11] Add a new attr field char for the CONVERTING LV Jun'ichi Nomura
2008-01-04 15:13 ` [PATCH lvconvert 10/11] Warn if lvconvert needs activation to complete conversion Jun'ichi Nomura
2008-01-04 15:13 ` [PATCH lvconvert 11/11] Start lvconvert polldaemon on activation (like pvmove) Jun'ichi Nomura
2008-01-10 18:40 ` [PATCH lvconvert 0/11] Additional fixes and changes to lvconvert restructure Alasdair G Kergon
2008-01-10 19:53   ` Jun'ichi Nomura
2008-01-10 20:36 ` Jun'ichi Nomura

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.