All of lore.kernel.org
 help / color / mirror / Atom feed
* [linux-lvm] pvmove: moving a mirror logical volume not supported?
@ 2006-09-06  9:14 Jens Wilke
  2006-09-06 16:19 ` Alasdair G Kergon
  0 siblings, 1 reply; 4+ messages in thread
From: Jens Wilke @ 2006-09-06  9:14 UTC (permalink / raw)
  To: linux-lvm

Hello!

When trying to do a pvmove on a mirrored logical volume
I get the message "No data to move..."

pvmove /dev/dasdx1
  Skipping mirror LV m1m
  Skipping mirror LV m1m_mlog
  Skipping mirror image LV m1m_mimage_0
  Skipping mirror image LV m1m_mimage_1
  No data to move for main

Looking in the pvmove code reveals that mirror lvs are
intentionally skipped:

--snip--
		if (lv->status & MIRRORED) {
			log_print("Skipping mirror LV %s", lv->name);
			continue;
		}
		if (lv->status & MIRROR_LOG) {
			log_print("Skipping mirror log LV %s", lv->name);
			continue;
		}
		if (lv->status & MIRROR_IMAGE) {
			log_print("Skipping mirror image LV %s", lv->name);
			continue;
		}
--snip--

What is the reason for this?

Best,

Jens

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

end of thread, other threads:[~2006-09-07 15:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-06  9:14 [linux-lvm] pvmove: moving a mirror logical volume not supported? Jens Wilke
2006-09-06 16:19 ` Alasdair G Kergon
2006-09-07 10:47   ` Morten Torstensen
2006-09-07 15:35   ` Jens Wilke

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.