linux-lvm.redhat.com archive mirror
 help / color / mirror / Atom feed
From: Anssi Hannula <anssi.hannula@iki.fi>
To: linux-lvm@redhat.com
Subject: Re: [linux-lvm] Internal error: Referenced LV pvmove0 not listed in VG
Date: Wed, 24 Apr 2019 20:10:11 +0300	[thread overview]
Message-ID: <3ec9acca2f8161282341f561c3c7c988@iki.fi> (raw)
In-Reply-To: <eacb8d5110c2c658fa83dbd589fd6fbf@iki.fi>

Anssi Hannula kirjoitti 2019-04-24 02:06:
> Hi all,
> 
> I'm getting the following error when trying to run a pvmove command:
> 
> # pvmove -v /dev/md0:18122768-19076597
>     Cluster mirror log daemon not included in build.
>     Archiving volume group "delta" metadata (seqno 72).
>     Creating logical volume pvmove0
>     activation/volume_list configuration setting not defined: Checking
> only host tags for delta/home_r.
>     Moving 167398 extents of logical volume delta/home_r.
>     activation/volume_list configuration setting not defined: Checking
> only host tags for delta/data_r.
>   Internal error: Referenced LV pvmove0 not listed in VG delta.
> 
> This is with git master, but I see the same on 2.02.177.
[...]

Here is a short reproducer:

------clip------
#!/bin/sh

set -ex

mkdir -p lvmtestdir
mount -t tmpfs none lvmtestdir
cd lvmtestdir

truncate --size=$((156275497728*512)) testimg1
truncate --size=$((46883372928*512)) testimg2

dev1="$(losetup -f --show testimg1)"
dev2="$(losetup -f --show testimg2)"

pvcreate "$dev1"
pvcreate "$dev2"

vgcreate TESTVG "$dev1" "$dev2"

lvcreate --name=lv0 -l $((1048576+167398)) TESTVG \
	"$dev1":0+655360 \
	"$dev1":17037866+393216 \
	"$dev1":18909200+167398
lvcreate --name=lv1 -l $((16382506+1478118)) TESTVG \
	"$dev1":917504+16120362 \
	"$dev1":655360+262144 \
	"$dev1":17431082+1478118

# ERROR
pvmove -v "$dev1":18122768-19076597 || :

# cleanup
vgremove --force TESTVG
losetup -d "$dev1"
losetup -d "$dev2"
cd ..
sleep 1 # lvmtestdir busy?
umount lvmtestdir
------clip------


-- 
Anssi Hannula

  reply	other threads:[~2019-04-24 17:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-23 23:06 [linux-lvm] Internal error: Referenced LV pvmove0 not listed in VG Anssi Hannula
2019-04-24 17:10 ` Anssi Hannula [this message]
2019-04-24 18:05   ` David Teigland
2019-04-24 18:41     ` Anssi Hannula

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3ec9acca2f8161282341f561c3c7c988@iki.fi \
    --to=anssi.hannula@iki.fi \
    --cc=linux-lvm@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).