All of lore.kernel.org
 help / color / mirror / Atom feed
* [linux-lvm] LV size maximum
@ 2001-09-05  9:33 Jan-Benedict Glaw
  2001-09-05  9:53 ` svetljo
  2001-09-05 10:24 ` Ragnar Kjørstad
  0 siblings, 2 replies; 16+ messages in thread
From: Jan-Benedict Glaw @ 2001-09-05  9:33 UTC (permalink / raw)
  To: linux-lvm

Hi!

I'm to build some storage pool for an in-company network. It
will exceed 1TB in some time, so I'd like to get some proper
information on this *before* I get into trouble:-) So, my
final question is: How big may an LV be?

The FAQ tells me (in Q9) something of 2TB, but lvextend INFOs
me of a maximum of 1TB. Where's the real limit? My understanding
is that limitation is coming from kernel to handle all data
in chunks of 512Bytes. Is the maximum number of 512Byte blocks
per device to be increased in some time?

MfG, JBG

-- 
Jan-Benedict Glaw . jbglaw@lug-owl.de . +49-172-7608481

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

* Re: [linux-lvm] LV size maximum
  2001-09-05  9:33 [linux-lvm] LV size maximum Jan-Benedict Glaw
@ 2001-09-05  9:53 ` svetljo
  2001-09-05 10:09   ` Jan-Benedict Glaw
  2001-09-05 10:24 ` Ragnar Kjørstad
  1 sibling, 1 reply; 16+ messages in thread
From: svetljo @ 2001-09-05  9:53 UTC (permalink / raw)
  To: linux-lvm



this is a part of the german lvm HOW-TO

Q: Why can i not have a Logical volume biger than 256Gb ?

 A:  This is NO absolute limit but it depends on the physical extent 
size you configured at volume group creation time. Please use option -s 
of the vgcreate command to give a larger physical extent size. For 
example with a physical extent size of 524288 KB (512 MB) you are able 
to map a logical volume of 32 Terabyte. Remember that current Linux 
kernels are limited to 1 Terabyte.


Jan-Benedict Glaw wrote:

>Hi!
>
>I'm to build some storage pool for an in-company network. It
>will exceed 1TB in some time, so I'd like to get some proper
>information on this *before* I get into trouble:-) So, my
>final question is: How big may an LV be?
>
>The FAQ tells me (in Q9) something of 2TB, but lvextend INFOs
>me of a maximum of 1TB. Where's the real limit? My understanding
>is that limitation is coming from kernel to handle all data
>in chunks of 512Bytes. Is the maximum number of 512Byte blocks
>per device to be increased in some time?
>
>MfG, JBG
>

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

* Re: [linux-lvm] LV size maximum
  2001-09-05  9:53 ` svetljo
@ 2001-09-05 10:09   ` Jan-Benedict Glaw
  2001-09-05 10:38     ` svetljo
  0 siblings, 1 reply; 16+ messages in thread
From: Jan-Benedict Glaw @ 2001-09-05 10:09 UTC (permalink / raw)
  To: linux-lvm

On Wed, 2001-09-05 11:53:45 +0200, svetljo <galia@st-peter.stw.uni-erlangen.de>
wrote in message <3B95F629.1050909@st-peter.stw.uni-erlangen.de>:
> Jan-Benedict Glaw wrote:
> > The FAQ tells me (in Q9) something of 2TB, but lvextend INFOs
> > me of a maximum of 1TB. Where's the real limit? My understanding
> > is that limitation is coming from kernel to handle all data
> > in chunks of 512Bytes. Is the maximum number of 512Byte blocks
> > per device to be increased in some time?

> this is a part of the german lvm HOW-TO
> 
> Q: Why can i not have a Logical volume biger than 256Gb ?
> 
>  A:  This is NO absolute limit but it depends on the physical extent 
> size you configured at volume group creation time. Please use option -s 
> of the vgcreate command to give a larger physical extent size. For 
> example with a physical extent size of 524288 KB (512 MB) you are able 
> to map a logical volume of 32 Terabyte. Remember that current Linux 
> kernels are limited to 1 Terabyte.

That doesn't exactly help me. I already know that text. My
problem is that there are mentioned different maximum values
for the size:

FAQ:		2TB on 32bit machines and 512 bytes block size

(Where do you read of 1TB???)

My final question is/was: Is the limit (on kernel's side) to
be raised in some *near* future?

MfG, JBG

-- 
Jan-Benedict Glaw . jbglaw@lug-owl.de . +49-172-7608481

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

* Re: [linux-lvm] LV size maximum
  2001-09-05  9:33 [linux-lvm] LV size maximum Jan-Benedict Glaw
  2001-09-05  9:53 ` svetljo
@ 2001-09-05 10:24 ` Ragnar Kjørstad
  2001-09-05 18:11   ` Andreas Dilger
  1 sibling, 1 reply; 16+ messages in thread
From: Ragnar Kjørstad @ 2001-09-05 10:24 UTC (permalink / raw)
  To: linux-lvm

On Wed, Sep 05, 2001 at 11:33:07AM +0200, Jan-Benedict Glaw wrote:
> I'm to build some storage pool for an in-company network. It
> will exceed 1TB in some time, so I'd like to get some proper
> information on this *before* I get into trouble:-) So, my
> final question is: How big may an LV be?

Linux uses 32 bit integers to calculate the number of sectors - but some
drivers uses unsigned and some signed - so it depends on the drivers if
you can do 2 TB or only 1. LVM is 1 TB max.

> The FAQ tells me (in Q9) something of 2TB, but lvextend INFOs
> me of a maximum of 1TB. Where's the real limit? My understanding
> is that limitation is coming from kernel to handle all data
> in chunks of 512Bytes. Is the maximum number of 512Byte blocks
> per device to be increased in some time?

Ben LaHaise has provided patches to make the sector numbers 64 bit in
linux (configured at compile-time). The problem is that there are so
many things that need to be fixed:
* generic block layer
* lvm
* md
* nbd
* scsi layer
* ide layer
* each individual scsi driver

Ben LaHaise fixed the generic block layer, md and nbd. (all tested
successfully - except for some minor details) He has also provided a
patch for the scsi layer, but this didn't work properly when we tested
it. There are also patches for some scsi drivers floating around (look
for a message from Alan Cox on lkml in the "64 bit scsi read/write"
thread). My guess (hope) is that linux-2.6 will support 64 bit sector 
numbers in every layer.

If you don't need each PV to be >1TB, only the LVs, all you really need
is the generic block layer fixes and fixes for lvm. Such patches are
likely to be available much sooner (but probably not in the main
kernel).

My guess is that you will be able to extend an old LV to more than 1 TB
when the patches are in place, without having to do backup/restore, if
you only choose a big enough extent size. (because the ondisk formats
deal with extents, not sectors). Can anyone more familiar with the
format please confirm this?



-- 
Ragnar Kjørstad
Big Storage

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

* Re: [linux-lvm] LV size maximum
  2001-09-05 10:09   ` Jan-Benedict Glaw
@ 2001-09-05 10:38     ` svetljo
  0 siblings, 0 replies; 16+ messages in thread
From: svetljo @ 2001-09-05 10:38 UTC (permalink / raw)
  To: linux-lvm

>
>
>
>FAQ:		2TB on 32bit machines and 512 bytes block size
>
>(Where do you read of 1TB???)
>
http://tech.sistina.com/cgi-bin/lvm-faqprocessor.cgi?q=Why%20are%20my%20logical%20volumes%20limited%20to%20256%20GB%20in%20size%3F

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

* Re: [linux-lvm] LV size maximum
  2001-09-05 10:24 ` Ragnar Kjørstad
@ 2001-09-05 18:11   ` Andreas Dilger
  2001-09-05 18:32     ` [linux-lvm] lvcreate segfaults John Marquart
  0 siblings, 1 reply; 16+ messages in thread
From: Andreas Dilger @ 2001-09-05 18:11 UTC (permalink / raw)
  To: linux-lvm

On Sep 05, 2001  12:24 +0200, Ragnar Kj?rstad wrote:
> My guess is that you will be able to extend an old LV to more than 1 TB
> when the patches are in place, without having to do backup/restore, if
> you only choose a big enough extent size. (because the ondisk formats
> deal with extents, not sectors). Can anyone more familiar with the
> format please confirm this?

There is a current limit of 65536 LEs/LV so you need to work out LE/PE
size for the maximum LV size you want.  For 2TB (=40 bits) LV you need
16MB (= 40 - 16 = 24 bits) PE size.  Scale accordingly.  32MB PE size
is not a bad choice in any case, but as you get larger you also have
wastage of 3*PEsize/2 per LV with the new LVM tools.

Cheers, Andreas
-- 
Andreas Dilger  \ "If a man ate a pound of pasta and a pound of antipasto,
                 \  would they cancel out, leaving him still hungry?"
http://www-mddsp.enel.ucalgary.ca/People/adilger/               -- Dogbert

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

* [linux-lvm] lvcreate segfaults
  2001-09-05 18:11   ` Andreas Dilger
@ 2001-09-05 18:32     ` John Marquart
  2001-09-05 18:57       ` John Marquart
  2001-09-05 20:37       ` AJ Lewis
  0 siblings, 2 replies; 16+ messages in thread
From: John Marquart @ 2001-09-05 18:32 UTC (permalink / raw)
  To: linux-lvm

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1005 bytes --]

Good afternoon,
	I am running LVM 1.0.1rc2 on  2.4.8 kernel ontop of a IBM
Serverraid 4Mx RAID5 filesystem.  I am trying to create a new lv using
"lvcreate -n foo -L 4M rootvg" - however that command insists on giving me
a segfault.  

Attached are the complete outputs of the above lvreate command w/ the -v
and -d flags.  excerpts (the last few lines) are listed below:

----lvcreate ... -v----
lvcreate -- setting up logical volume
lvcreate -- setting read ahead sectors
lvcreate -- creating logical volume VGDA in kernel
Segmentation fault (core dumped)

----lvcreate ... -d----
<1> lv_setup_for_create -- pv_reserve_pe returned: 0   pe_last: 1  pe: 0
<1> lv_setup_for_create -- pe: 0
<1> lv_setup_for_create -- LEAVING with ret: 0
<1> lvm_dont_interrupt -- CALLED
<1> lvm_dont_interrupt -- LEAVING
Segmentation fault (core dumped)
-----------------------------------


If there is any other info I can provide - please let me know.  I only
attached what seemed most pertinent.

thanks,
-jamie / vaix

[-- Attachment #2: Type: TEXT/PLAIN, Size: 1090 bytes --]

Script started on Wed Sep  5 13:24:37 2001
[root@letrs-tst 1.0.1-rc2]# lc\b \bvcreate -n foo -L 4M rootvgt\b \b -v
lvcreate -- checking volume group name "rootvg"
lvcreate -- checking volume group existence
lvcreate -- checking volume group activity
lvcreate -- checking logical volume path "/dev/rootvg/foo"
lvcreate -- checking stripe count
lvcreate -- checking stripe size
lvcreate -- locking logical volume manager
lvcreate -- getting volume group status from VGDA in kernel
lvcreate -- checking stripe size against volume group physical extent size
lvcreate -- reading volume group data of "rootvg"
lvcreate -- checking logical volume maximum size
lvcreate -- checking volume group free space
lvcreate -- checking stripe count against physical volume count
lvcreate -- checking for maximum logical volume count
lvcreate -- setting up logical volume
lvcreate -- setting read ahead sectors
lvcreate -- creating logical volume VGDA in kernel
Segmentation fault (core dumped)
[root@letrs-tst 1.0.1-rc2]# exit

Script done on Wed Sep  5 13:24:55 2001

[-- Attachment #3: Type: TEXT/PLAIN, Size: 236130 bytes --]

Script started on Wed Sep  5 13:24:59 2001
[root@letrs-tst 1.0.1-rc2]# lvcreate -n foo  0-\b \b\b \b=\b \b-L 4M rootvg -d
<1> vg_check_name -- CALLED with VG: rootvg
<22> lvm_check_chars -- CALLED with name: "rootvg"
<22> lvm_check_chars -- LEAVING with ret: 0
<1> vg_check_name -- LEAVING with ret: 0
<1> lvm_tab_vg_check_exist -- CALLED with vg_name: "rootvg"
<22> vg_check_name -- CALLED with VG: rootvg
<333> lvm_check_chars -- CALLED with name: "rootvg"
<333> lvm_check_chars -- LEAVING with ret: 0
<22> vg_check_name -- LEAVING with ret: 0
<22> lvm_tab_read -- CALLED
<22> lvm_tab_read -- LEAVING with ret: 0  data: 804EC08  size: 7
<22> vg_cfgrestore -- CALLED
<333> vg_check_name -- CALLED with VG: rootvg
<4444> lvm_check_chars -- CALLED with name: "rootvg"
<4444> lvm_check_chars -- LEAVING with ret: 0
<333> vg_check_name -- LEAVING with ret: 0
<333> vg_check_consistency -- CALLED
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<333> vg_check_consistency -- LEAVING with ret: 0
<333> pv_check_consistency -- CALLED
<4444> pv_check_name -- CALLED with "/dev/sdd"
<55555> lvm_check_chars -- CALLED with name: "/dev/sdd"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> lvm_check_dev -- CALLED
<55555> lvm_check_partitioned_dev -- CALLED
<666666> lvm_get_device_type called
<666666> lvm_get_device_type leaving with 1
<55555> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<4444> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_new -- CALLED
<4444> pv_check_new -- LEAVING with ret: 0
<333> pv_check_consistency -- LEAVING with ret: 0
<333> lv_check_consistency -- CALLED
<4444> lv_check_name -- CALLED with lv_name: "/dev/rootvg/opt_lv"
<55555> lvm_check_chars -- CALLED with name: "/dev/rootvg/opt_lv"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_check_name -- LEAVING with ret: 0
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<333> lv_check_consistency -- LEAVING with ret: 0
<333> lv_check_consistency -- CALLED
<4444> lv_check_name -- CALLED with lv_name: "/dev/rootvg/data_lv"
<55555> lvm_check_chars -- CALLED with name: "/dev/rootvg/data_lv"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_check_name -- LEAVING with ret: 0
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<333> lv_check_consistency -- LEAVING with ret: 0
<333> vg_setup_pointers_for_snapshots -- CALLED
<333> vg_setup_pointers_for_snapshots -- LEAVING
<333> vg_check_consistency_with_pv_and_lv -- CALLED
<4444> vg_check_consistency -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> vg_check_consistency -- LEAVING with ret: 0
<4444> pv_check_consistency_all_pv -- CALLED
<55555> vg_check_consistency -- CALLED
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> vg_check_consistency -- LEAVING with ret: 0
<55555> pv_check_consistency -- CALLED
<666666> pv_check_name -- CALLED with "/dev/sdd"
<7777777> lvm_check_chars -- CALLED with name: "/dev/sdd"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<7777777> lvm_check_dev -- CALLED
<88888888> lvm_check_partitioned_dev -- CALLED
<999999999> lvm_get_device_type called
<999999999> lvm_get_device_type leaving with 1
<88888888> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<7777777> lvm_check_dev -- LEAVING with ret: 1
<666666> pv_check_name -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<666666> lvm_check_dev -- CALLED
<7777777> lvm_check_partitioned_dev -- CALLED
<88888888> lvm_get_device_type called
<88888888> lvm_get_device_type leaving with 1
<7777777> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<666666> lvm_check_dev -- LEAVING with ret: 1
<666666> pv_check_new -- CALLED
<666666> pv_check_new -- LEAVING with ret: 0
<55555> pv_check_consistency -- LEAVING with ret: 0
<4444> pv_check_consistency_all_pv -- LEAVING with ret: 0
<4444> lv_check_consistency_all_lv -- CALLED vg->lv_max: 256
<4444> lv_check_consistency_all_lv -- vg->lv[0]: 804EE30  name: /dev/rootvg/opt_lv
<55555> lv_check_consistency -- CALLED
<666666> lv_check_name -- CALLED with lv_name: "/dev/rootvg/opt_lv"
<7777777> lvm_check_chars -- CALLED with name: "/dev/rootvg/opt_lv"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<666666> lv_check_name -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> lv_check_consistency -- LEAVING with ret: 0
<4444> lv_check_consistency_all_lv -- vg->lv[1]: 8054070  name: /dev/rootvg/data_lv
<55555> lv_check_consistency -- CALLED
<666666> lv_check_name -- CALLED with lv_name: "/dev/rootvg/data_lv"
<7777777> lvm_check_chars -- CALLED with name: "/dev/rootvg/data_lv"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<666666> lv_check_name -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> lv_check_consistency -- LEAVING with ret: 0
<4444> lv_check_consistency_all_lv -- vg->lv[2]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[3]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[4]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[5]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[6]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[7]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[8]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[9]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[10]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[11]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[12]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[13]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[14]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[15]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[16]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[17]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[18]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[19]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[20]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[21]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[22]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[23]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[24]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[25]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[26]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[27]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[28]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[29]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[30]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[31]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[32]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[33]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[34]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[35]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[36]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[37]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[38]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[39]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[40]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[41]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[42]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[43]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[44]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[45]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[46]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[47]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[48]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[49]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[50]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[51]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[52]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[53]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[54]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[55]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[56]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[57]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[58]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[59]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[60]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[61]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[62]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[63]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[64]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[65]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[66]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[67]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[68]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[69]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[70]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[71]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[72]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[73]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[74]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[75]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[76]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[77]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[78]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[79]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[80]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[81]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[82]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[83]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[84]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[85]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[86]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[87]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[88]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[89]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[90]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[91]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[92]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[93]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[94]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[95]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[96]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[97]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[98]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[99]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[100]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[101]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[102]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[103]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[104]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[105]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[106]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[107]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[108]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[109]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[110]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[111]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[112]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[113]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[114]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[115]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[116]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[117]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[118]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[119]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[120]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[121]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[122]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[123]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[124]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[125]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[126]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[127]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[128]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[129]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[130]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[131]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[132]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[133]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[134]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[135]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[136]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[137]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[138]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[139]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[140]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[141]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[142]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[143]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[144]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[145]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[146]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[147]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[148]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[149]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[150]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[151]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[152]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[153]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[154]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[155]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[156]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[157]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[158]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[159]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[160]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[161]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[162]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[163]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[164]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[165]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[166]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[167]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[168]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[169]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[170]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[171]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[172]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[173]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[174]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[175]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[176]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[177]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[178]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[179]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[180]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[181]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[182]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[183]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[184]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[185]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[186]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[187]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[188]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[189]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[190]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[191]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[192]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[193]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[194]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[195]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[196]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[197]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[198]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[199]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[200]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[201]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[202]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[203]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[204]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[205]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[206]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[207]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[208]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[209]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[210]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[211]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[212]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[213]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[214]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[215]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[216]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[217]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[218]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[219]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[220]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[221]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[222]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[223]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[224]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[225]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[226]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[227]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[228]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[229]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[230]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[231]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[232]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[233]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[234]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[235]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[236]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[237]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[238]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[239]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[240]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[241]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[242]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[243]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[244]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[245]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[246]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[247]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[248]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[249]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[250]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[251]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[252]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[253]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[254]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[255]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- LEAVING with ret: 0
<333> vg_check_consistency_with_pv_and_lv -- LEAVING with ret: 0
<22> vg_cfgrestore -- LEAVING with ret: 0
<1> lvm_tab_vg_check_exist -- before vg.pv_cur check with vg.pv_cur: 1  pv_count: 1
<22> vg_free -- CALLED
<22> vg_free -- entering PV loop
<22> vg_free -- entering LV loop
<22> vg_free -- LEAVING with ret: 0
<1> lvm_tab_vg_check_exist -- LEAVING with ret: 1
<1> vg_check_active -- CALLED with VG: rootvg
<22> vg_check_name -- CALLED with VG: rootvg
<333> lvm_check_chars -- CALLED with name: "rootvg"
<333> lvm_check_chars -- LEAVING with ret: 0
<22> vg_check_name -- LEAVING with ret: 0
<22> vg_status -- CALLED with VG: rootvg
<333> vg_check_name -- CALLED with VG: rootvg
<4444> lvm_check_chars -- CALLED with name: "rootvg"
<4444> lvm_check_chars -- LEAVING with ret: 0
<333> vg_check_name -- LEAVING with ret: 0
<22> vg_status -- LEAVING with ret: 0
<1> vg_check_active -- LEAVING with ret: 1
<1> lv_check_name -- CALLED with lv_name: "/dev/rootvg/foo"
<22> lvm_check_chars -- CALLED with name: "/dev/rootvg/foo"
<22> lvm_check_chars -- LEAVING with ret: 0
<22> vg_check_name -- CALLED with VG: rootvg
<333> lvm_check_chars -- CALLED with name: "rootvg"
<333> lvm_check_chars -- LEAVING with ret: 0
<22> vg_check_name -- LEAVING with ret: 0
<1> lv_check_name -- LEAVING with ret: 0
<1> lvm_tab_lv_check_exist -- CALLED with "/dev/rootvg/foo"
<22> lv_check_name -- CALLED with lv_name: "/dev/rootvg/foo"
<333> lvm_check_chars -- CALLED with name: "/dev/rootvg/foo"
<333> lvm_check_chars -- LEAVING with ret: 0
<333> vg_check_name -- CALLED with VG: rootvg
<4444> lvm_check_chars -- CALLED with name: "rootvg"
<4444> lvm_check_chars -- LEAVING with ret: 0
<333> vg_check_name -- LEAVING with ret: 0
<22> lv_check_name -- LEAVING with ret: 0
<22> vg_name_of_lv -- CALLED with lv_name: "/dev/rootvg/foo"
<333> lv_check_name -- CALLED with lv_name: "/dev/rootvg/foo"
<4444> lvm_check_chars -- CALLED with name: "/dev/rootvg/foo"
<4444> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<333> lv_check_name -- LEAVING with ret: 0
<333> vg_check_name -- CALLED with VG: rootvg
<4444> lvm_check_chars -- CALLED with name: "rootvg"
<4444> lvm_check_chars -- LEAVING with ret: 0
<333> vg_check_name -- LEAVING with ret: 0
<22> vg_name_of_lv -- LEAVING with ret "rootvg"
<22> lvm_tab_vg_read_with_pv_and_lv -- CALLED vg_name: rootvg
<333> vg_check_name -- CALLED with VG: rootvg
<4444> lvm_check_chars -- CALLED with name: "rootvg"
<4444> lvm_check_chars -- LEAVING with ret: 0
<333> vg_check_name -- LEAVING with ret: 0
<333> vg_cfgrestore -- CALLED
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> vg_check_consistency -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> vg_check_consistency -- LEAVING with ret: 0
<4444> pv_check_consistency -- CALLED
<55555> pv_check_name -- CALLED with "/dev/sdd"
<666666> lvm_check_chars -- CALLED with name: "/dev/sdd"
<666666> lvm_check_chars -- LEAVING with ret: 0
<666666> lvm_check_dev -- CALLED
<7777777> lvm_check_partitioned_dev -- CALLED
<88888888> lvm_get_device_type called
<88888888> lvm_get_device_type leaving with 1
<7777777> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<666666> lvm_check_dev -- LEAVING with ret: 1
<55555> pv_check_name -- LEAVING with ret: 0
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<55555> pv_check_new -- CALLED
<55555> pv_check_new -- LEAVING with ret: 0
<4444> pv_check_consistency -- LEAVING with ret: 0
<4444> lv_check_consistency -- CALLED
<55555> lv_check_name -- CALLED with lv_name: "/dev/rootvg/opt_lv"
<666666> lvm_check_chars -- CALLED with name: "/dev/rootvg/opt_lv"
<666666> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> lv_check_name -- LEAVING with ret: 0
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_check_consistency -- LEAVING with ret: 0
<4444> lv_check_consistency -- CALLED
<55555> lv_check_name -- CALLED with lv_name: "/dev/rootvg/data_lv"
<666666> lvm_check_chars -- CALLED with name: "/dev/rootvg/data_lv"
<666666> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> lv_check_name -- LEAVING with ret: 0
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_check_consistency -- LEAVING with ret: 0
<4444> vg_setup_pointers_for_snapshots -- CALLED
<4444> vg_setup_pointers_for_snapshots -- LEAVING
<4444> vg_check_consistency_with_pv_and_lv -- CALLED
<55555> vg_check_consistency -- CALLED
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> vg_check_consistency -- LEAVING with ret: 0
<55555> pv_check_consistency_all_pv -- CALLED
<666666> vg_check_consistency -- CALLED
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<666666> vg_check_consistency -- LEAVING with ret: 0
<666666> pv_check_consistency -- CALLED
<7777777> pv_check_name -- CALLED with "/dev/sdd"
<88888888> lvm_check_chars -- CALLED with name: "/dev/sdd"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<88888888> lvm_check_dev -- CALLED
<999999999> lvm_check_partitioned_dev -- CALLED
<AAAAAAAAAA> lvm_get_device_type called
<AAAAAAAAAA> lvm_get_device_type leaving with 1
<999999999> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<88888888> lvm_check_dev -- LEAVING with ret: 1
<7777777> pv_check_name -- LEAVING with ret: 0
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<7777777> lvm_check_dev -- CALLED
<88888888> lvm_check_partitioned_dev -- CALLED
<999999999> lvm_get_device_type called
<999999999> lvm_get_device_type leaving with 1
<88888888> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<7777777> lvm_check_dev -- LEAVING with ret: 1
<7777777> pv_check_new -- CALLED
<7777777> pv_check_new -- LEAVING with ret: 0
<666666> pv_check_consistency -- LEAVING with ret: 0
<55555> pv_check_consistency_all_pv -- LEAVING with ret: 0
<55555> lv_check_consistency_all_lv -- CALLED vg->lv_max: 256
<55555> lv_check_consistency_all_lv -- vg->lv[0]: 804F7E8  name: /dev/rootvg/opt_lv
<666666> lv_check_consistency -- CALLED
<7777777> lv_check_name -- CALLED with lv_name: "/dev/rootvg/opt_lv"
<88888888> lvm_check_chars -- CALLED with name: "/dev/rootvg/opt_lv"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<88888888> vg_check_name -- CALLED with VG: rootvg
<999999999> lvm_check_chars -- CALLED with name: "rootvg"
<999999999> lvm_check_chars -- LEAVING with ret: 0
<88888888> vg_check_name -- LEAVING with ret: 0
<7777777> lv_check_name -- LEAVING with ret: 0
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<666666> lv_check_consistency -- LEAVING with ret: 0
<55555> lv_check_consistency_all_lv -- vg->lv[1]: 8054A28  name: /dev/rootvg/data_lv
<666666> lv_check_consistency -- CALLED
<7777777> lv_check_name -- CALLED with lv_name: "/dev/rootvg/data_lv"
<88888888> lvm_check_chars -- CALLED with name: "/dev/rootvg/data_lv"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<88888888> vg_check_name -- CALLED with VG: rootvg
<999999999> lvm_check_chars -- CALLED with name: "rootvg"
<999999999> lvm_check_chars -- LEAVING with ret: 0
<88888888> vg_check_name -- LEAVING with ret: 0
<7777777> lv_check_name -- LEAVING with ret: 0
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<666666> lv_check_consistency -- LEAVING with ret: 0
<55555> lv_check_consistency_all_lv -- vg->lv[2]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[3]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[4]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[5]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[6]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[7]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[8]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[9]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[10]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[11]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[12]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[13]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[14]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[15]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[16]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[17]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[18]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[19]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[20]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[21]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[22]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[23]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[24]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[25]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[26]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[27]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[28]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[29]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[30]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[31]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[32]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[33]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[34]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[35]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[36]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[37]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[38]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[39]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[40]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[41]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[42]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[43]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[44]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[45]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[46]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[47]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[48]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[49]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[50]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[51]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[52]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[53]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[54]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[55]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[56]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[57]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[58]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[59]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[60]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[61]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[62]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[63]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[64]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[65]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[66]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[67]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[68]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[69]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[70]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[71]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[72]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[73]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[74]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[75]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[76]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[77]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[78]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[79]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[80]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[81]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[82]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[83]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[84]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[85]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[86]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[87]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[88]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[89]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[90]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[91]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[92]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[93]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[94]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[95]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[96]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[97]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[98]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[99]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[100]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[101]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[102]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[103]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[104]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[105]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[106]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[107]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[108]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[109]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[110]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[111]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[112]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[113]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[114]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[115]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[116]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[117]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[118]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[119]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[120]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[121]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[122]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[123]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[124]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[125]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[126]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[127]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[128]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[129]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[130]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[131]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[132]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[133]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[134]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[135]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[136]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[137]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[138]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[139]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[140]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[141]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[142]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[143]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[144]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[145]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[146]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[147]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[148]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[149]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[150]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[151]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[152]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[153]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[154]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[155]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[156]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[157]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[158]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[159]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[160]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[161]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[162]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[163]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[164]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[165]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[166]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[167]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[168]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[169]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[170]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[171]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[172]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[173]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[174]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[175]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[176]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[177]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[178]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[179]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[180]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[181]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[182]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[183]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[184]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[185]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[186]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[187]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[188]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[189]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[190]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[191]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[192]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[193]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[194]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[195]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[196]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[197]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[198]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[199]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[200]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[201]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[202]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[203]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[204]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[205]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[206]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[207]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[208]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[209]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[210]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[211]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[212]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[213]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[214]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[215]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[216]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[217]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[218]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[219]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[220]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[221]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[222]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[223]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[224]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[225]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[226]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[227]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[228]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[229]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[230]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[231]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[232]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[233]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[234]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[235]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[236]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[237]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[238]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[239]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[240]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[241]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[242]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[243]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[244]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[245]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[246]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[247]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[248]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[249]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[250]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[251]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[252]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[253]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[254]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- vg->lv[255]: 0  name: (null)
<55555> lv_check_consistency_all_lv -- LEAVING with ret: 0
<4444> vg_check_consistency_with_pv_and_lv -- LEAVING with ret: 0
<333> vg_cfgrestore -- LEAVING with ret: 0
<22> lvm_tab_vg_read_with_pv_and_lv -- LEAVING with ret: 0
<1> lvm_tab_lv_check_exist -- LEAVING with ret: 0
<1> lv_check_check_stripesize -- CALLED
<1> lv_check_check_stripesize -- LEAVING with ret: 0
<1> lvm_get_iop_version -- CALLED
<22> lvm_check_special -- CALLED
<22> lvm_check_special -- LEAVING
<1> lvm_get_iop_version -- AFTER ioctl ret: 0
<1> lvm_get_iop_version -- LEAVING with ret: 10
<1> lvm_lock -- CALLED
<22> lvm_check_special -- CALLED
<22> lvm_check_special -- LEAVING
<1> lvm_lock -- LEAVING with ret: 0
<1> vg_status_with_pv_and_lv -- CALLED with vg_name: "rootvg"
<22> vg_status -- CALLED with VG: rootvg
<333> vg_check_name -- CALLED with VG: rootvg
<4444> lvm_check_chars -- CALLED with name: "rootvg"
<4444> lvm_check_chars -- LEAVING with ret: 0
<333> vg_check_name -- LEAVING with ret: 0
<22> vg_status -- LEAVING with ret: 0
<22> pv_status_all_pv_of_vg -- CALLED
<333> vg_check_name -- CALLED with VG: rootvg
<4444> lvm_check_chars -- CALLED with name: "rootvg"
<4444> lvm_check_chars -- LEAVING with ret: 0
<333> vg_check_name -- LEAVING with ret: 0
<333> lvm_dir_cache -- CALLED
<4444> lvm_add_dir_cache -- CALLED with /dev/sda
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> lvm_add_dir_cache -- LEAVING with ret: ADDED
<4444> lvm_add_dir_cache -- CALLED with /dev/sda4
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> lvm_add_dir_cache -- LEAVING with ret: ADDED
<4444> lvm_add_dir_cache -- CALLED with /dev/sdb
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> lvm_add_dir_cache -- LEAVING with ret: ADDED
<4444> lvm_add_dir_cache -- CALLED with /dev/sdb1
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> lvm_add_dir_cache -- LEAVING with ret: ADDED
<4444> lvm_add_dir_cache -- CALLED with /dev/sdc
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> lvm_add_dir_cache -- LEAVING with ret: ADDED
<4444> lvm_add_dir_cache -- CALLED with /dev/sdc1
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> lvm_add_dir_cache -- LEAVING with ret: ADDED
<4444> lvm_add_dir_cache -- CALLED with /dev/sdc2
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> lvm_add_dir_cache -- LEAVING with ret: ADDED
<4444> lvm_add_dir_cache -- CALLED with /dev/sdd
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> lvm_add_dir_cache -- LEAVING with ret: ADDED
<4444> lvm_add_dir_cache -- CALLED with /dev/sdd1
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> lvm_add_dir_cache -- LEAVING with ret: ADDED
<333> lvm_dir_cache -- LEAVING with ret: 9
<22> pv_status_all_pv_of_vg -- calling pv_status with rootvg  /dev/sda
<333> pv_status -- CALLED with VG rootvg, PV: "/dev/sda"
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> pv_check_name -- CALLED with "/dev/sda"
<55555> lvm_check_chars -- CALLED with name: "/dev/sda"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<333> pv_status -- LEAVING with ret: -6
<22> pv_status_all_pv_of_vg -- calling pv_status with rootvg  /dev/sda4
<333> pv_status -- CALLED with VG rootvg, PV: "/dev/sda4"
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> pv_check_name -- CALLED with "/dev/sda4"
<55555> lvm_check_chars -- CALLED with name: "/dev/sda4"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<333> pv_status -- LEAVING with ret: -6
<22> pv_status_all_pv_of_vg -- calling pv_status with rootvg  /dev/sdb
<333> pv_status -- CALLED with VG rootvg, PV: "/dev/sdb"
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> pv_check_name -- CALLED with "/dev/sdb"
<55555> lvm_check_chars -- CALLED with name: "/dev/sdb"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<333> pv_status -- LEAVING with ret: -6
<22> pv_status_all_pv_of_vg -- calling pv_status with rootvg  /dev/sdb1
<333> pv_status -- CALLED with VG rootvg, PV: "/dev/sdb1"
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> pv_check_name -- CALLED with "/dev/sdb1"
<55555> lvm_check_chars -- CALLED with name: "/dev/sdb1"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<333> pv_status -- LEAVING with ret: -6
<22> pv_status_all_pv_of_vg -- calling pv_status with rootvg  /dev/sdc
<333> pv_status -- CALLED with VG rootvg, PV: "/dev/sdc"
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> pv_check_name -- CALLED with "/dev/sdc"
<55555> lvm_check_chars -- CALLED with name: "/dev/sdc"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<333> pv_status -- LEAVING with ret: -6
<22> pv_status_all_pv_of_vg -- calling pv_status with rootvg  /dev/sdc1
<333> pv_status -- CALLED with VG rootvg, PV: "/dev/sdc1"
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> pv_check_name -- CALLED with "/dev/sdc1"
<55555> lvm_check_chars -- CALLED with name: "/dev/sdc1"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<333> pv_status -- LEAVING with ret: -6
<22> pv_status_all_pv_of_vg -- calling pv_status with rootvg  /dev/sdc2
<333> pv_status -- CALLED with VG rootvg, PV: "/dev/sdc2"
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> pv_check_name -- CALLED with "/dev/sdc2"
<55555> lvm_check_chars -- CALLED with name: "/dev/sdc2"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<333> pv_status -- LEAVING with ret: -6
<22> pv_status_all_pv_of_vg -- calling pv_status with rootvg  /dev/sdd
<333> pv_status -- CALLED with VG rootvg, PV: "/dev/sdd"
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> pv_check_name -- CALLED with "/dev/sdd"
<55555> lvm_check_chars -- CALLED with name: "/dev/sdd"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<333> pv_status -- LEAVING with ret: 0
<22> pv_status_all_pv_of_vg -- pv_status is o.k. --> allocating memory
<22> pv_status_all_pv_of_vg -- calling pv_status with rootvg  /dev/sdd1
<333> pv_status -- CALLED with VG rootvg, PV: "/dev/sdd1"
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> pv_check_name -- CALLED with "/dev/sdd1"
<55555> lvm_check_chars -- CALLED with name: "/dev/sdd1"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<333> pv_status -- LEAVING with ret: -6
<22> pv_status_all_pv_of_vg -- LEAVING with ret: 0
<22> lv_status_all_lv_of_vg -- CALLED with VG rootvg
<333> vg_check_name -- CALLED with VG: rootvg
<4444> lvm_check_chars -- CALLED with name: "rootvg"
<4444> lvm_check_chars -- LEAVING with ret: 0
<333> vg_check_name -- LEAVING with ret: 0
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: 0
<4444> lv_status_byindex_internal -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: 0
<4444> lv_status_byindex_internal -- LEAVING with ret: 0
<333> lv_status_byindex -- LEAVING with ret: 0
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: 0
<4444> lv_status_byindex_internal -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: 0
<4444> lv_status_byindex_internal -- LEAVING with ret: 0
<333> lv_status_byindex -- LEAVING with ret: 0
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<333> lv_status_byindex -- CALLED
<4444> lv_status_byindex_internal -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_status_byindex_internal -- AFTER ioctl ret: -6
<4444> lv_status_byindex_internal -- LEAVING with ret: -6
<333> lv_status_byindex -- LEAVING with ret: -6
<22> lv_status_all_lv_of_vg -- LEAVING with ret: 0
<22> vg_setup_pointers_for_snapshots -- CALLED
<22> vg_setup_pointers_for_snapshots -- LEAVING
<1> vg_status_with_pv_and_lv -- LEAVING with ret: 0
<1> lvm_tab_vg_read_with_pv_and_lv -- CALLED vg_name: rootvg
<22> vg_check_name -- CALLED with VG: rootvg
<333> lvm_check_chars -- CALLED with name: "rootvg"
<333> lvm_check_chars -- LEAVING with ret: 0
<22> vg_check_name -- LEAVING with ret: 0
<22> vg_cfgrestore -- CALLED
<333> vg_check_name -- CALLED with VG: rootvg
<4444> lvm_check_chars -- CALLED with name: "rootvg"
<4444> lvm_check_chars -- LEAVING with ret: 0
<333> vg_check_name -- LEAVING with ret: 0
<333> vg_check_consistency -- CALLED
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<333> vg_check_consistency -- LEAVING with ret: 0
<333> pv_check_consistency -- CALLED
<4444> pv_check_name -- CALLED with "/dev/sdd"
<55555> lvm_check_chars -- CALLED with name: "/dev/sdd"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_name -- LEAVING with ret: 0
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> lvm_check_dev -- CALLED
<55555> lvm_check_partitioned_dev -- CALLED
<666666> lvm_get_device_type called
<666666> lvm_get_device_type leaving with 1
<55555> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<4444> lvm_check_dev -- LEAVING with ret: 1
<4444> pv_check_new -- CALLED
<4444> pv_check_new -- LEAVING with ret: 0
<333> pv_check_consistency -- LEAVING with ret: 0
<333> lv_check_consistency -- CALLED
<4444> lv_check_name -- CALLED with lv_name: "/dev/rootvg/opt_lv"
<55555> lvm_check_chars -- CALLED with name: "/dev/rootvg/opt_lv"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_check_name -- LEAVING with ret: 0
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<333> lv_check_consistency -- LEAVING with ret: 0
<333> lv_check_consistency -- CALLED
<4444> lv_check_name -- CALLED with lv_name: "/dev/rootvg/data_lv"
<55555> lvm_check_chars -- CALLED with name: "/dev/rootvg/data_lv"
<55555> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> lv_check_name -- LEAVING with ret: 0
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<333> lv_check_consistency -- LEAVING with ret: 0
<333> vg_setup_pointers_for_snapshots -- CALLED
<333> vg_setup_pointers_for_snapshots -- LEAVING
<333> vg_check_consistency_with_pv_and_lv -- CALLED
<4444> vg_check_consistency -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<4444> vg_check_consistency -- LEAVING with ret: 0
<4444> pv_check_consistency_all_pv -- CALLED
<55555> vg_check_consistency -- CALLED
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> vg_check_consistency -- LEAVING with ret: 0
<55555> pv_check_consistency -- CALLED
<666666> pv_check_name -- CALLED with "/dev/sdd"
<7777777> lvm_check_chars -- CALLED with name: "/dev/sdd"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<7777777> lvm_check_dev -- CALLED
<88888888> lvm_check_partitioned_dev -- CALLED
<999999999> lvm_get_device_type called
<999999999> lvm_get_device_type leaving with 1
<88888888> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<7777777> lvm_check_dev -- LEAVING with ret: 1
<666666> pv_check_name -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<666666> lvm_check_dev -- CALLED
<7777777> lvm_check_partitioned_dev -- CALLED
<88888888> lvm_get_device_type called
<88888888> lvm_get_device_type leaving with 1
<7777777> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<666666> lvm_check_dev -- LEAVING with ret: 1
<666666> pv_check_new -- CALLED
<666666> pv_check_new -- LEAVING with ret: 0
<55555> pv_check_consistency -- LEAVING with ret: 0
<4444> pv_check_consistency_all_pv -- LEAVING with ret: 0
<4444> lv_check_consistency_all_lv -- CALLED vg->lv_max: 256
<4444> lv_check_consistency_all_lv -- vg->lv[0]: 805BCB0  name: /dev/rootvg/opt_lv
<55555> lv_check_consistency -- CALLED
<666666> lv_check_name -- CALLED with lv_name: "/dev/rootvg/opt_lv"
<7777777> lvm_check_chars -- CALLED with name: "/dev/rootvg/opt_lv"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<666666> lv_check_name -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> lv_check_consistency -- LEAVING with ret: 0
<4444> lv_check_consistency_all_lv -- vg->lv[1]: 8060EF0  name: /dev/rootvg/data_lv
<55555> lv_check_consistency -- CALLED
<666666> lv_check_name -- CALLED with lv_name: "/dev/rootvg/data_lv"
<7777777> lvm_check_chars -- CALLED with name: "/dev/rootvg/data_lv"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<666666> lv_check_name -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> lv_check_consistency -- LEAVING with ret: 0
<4444> lv_check_consistency_all_lv -- vg->lv[2]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[3]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[4]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[5]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[6]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[7]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[8]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[9]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[10]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[11]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[12]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[13]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[14]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[15]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[16]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[17]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[18]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[19]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[20]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[21]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[22]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[23]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[24]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[25]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[26]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[27]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[28]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[29]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[30]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[31]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[32]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[33]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[34]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[35]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[36]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[37]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[38]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[39]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[40]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[41]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[42]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[43]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[44]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[45]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[46]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[47]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[48]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[49]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[50]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[51]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[52]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[53]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[54]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[55]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[56]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[57]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[58]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[59]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[60]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[61]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[62]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[63]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[64]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[65]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[66]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[67]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[68]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[69]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[70]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[71]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[72]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[73]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[74]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[75]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[76]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[77]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[78]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[79]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[80]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[81]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[82]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[83]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[84]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[85]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[86]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[87]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[88]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[89]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[90]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[91]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[92]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[93]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[94]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[95]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[96]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[97]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[98]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[99]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[100]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[101]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[102]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[103]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[104]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[105]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[106]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[107]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[108]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[109]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[110]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[111]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[112]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[113]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[114]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[115]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[116]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[117]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[118]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[119]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[120]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[121]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[122]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[123]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[124]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[125]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[126]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[127]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[128]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[129]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[130]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[131]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[132]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[133]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[134]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[135]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[136]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[137]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[138]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[139]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[140]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[141]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[142]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[143]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[144]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[145]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[146]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[147]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[148]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[149]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[150]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[151]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[152]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[153]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[154]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[155]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[156]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[157]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[158]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[159]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[160]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[161]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[162]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[163]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[164]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[165]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[166]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[167]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[168]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[169]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[170]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[171]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[172]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[173]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[174]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[175]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[176]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[177]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[178]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[179]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[180]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[181]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[182]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[183]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[184]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[185]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[186]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[187]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[188]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[189]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[190]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[191]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[192]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[193]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[194]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[195]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[196]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[197]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[198]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[199]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[200]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[201]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[202]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[203]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[204]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[205]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[206]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[207]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[208]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[209]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[210]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[211]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[212]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[213]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[214]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[215]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[216]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[217]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[218]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[219]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[220]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[221]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[222]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[223]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[224]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[225]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[226]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[227]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[228]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[229]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[230]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[231]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[232]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[233]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[234]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[235]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[236]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[237]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[238]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[239]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[240]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[241]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[242]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[243]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[244]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[245]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[246]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[247]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[248]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[249]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[250]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[251]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[252]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[253]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[254]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- vg->lv[255]: 0  name: (null)
<4444> lv_check_consistency_all_lv -- LEAVING with ret: 0
<333> vg_check_consistency_with_pv_and_lv -- LEAVING with ret: 0
<22> vg_cfgrestore -- LEAVING with ret: 0
<1> lvm_tab_vg_read_with_pv_and_lv -- LEAVING with ret: 0
<1> lv_setup_for_create -- CALLED  rootvg  8192  foo
<22> vg_check_name -- CALLED with VG: rootvg
<333> lvm_check_chars -- CALLED with name: "rootvg"
<333> lvm_check_chars -- LEAVING with ret: 0
<22> vg_check_name -- LEAVING with ret: 0
<1> lv_setup_for_create -- l: 2
<1> lv_setup_for_create -- vg_this->lv[2]: 8061128
<1> lv_setup_for_create -- creating /dev/rootvg/foo  3
<22> lvm_tab_get_free_blk_dev -- CALLED
<333> lvm_tab_vg_check_exist_all_vg -- CALLED
<4444> lvm_tab_read -- CALLED
<4444> lvm_tab_read -- LEAVING with ret: 0  data: 804EC18  size: 7
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<333> lvm_tab_vg_check_exist_all_vg -- LEAVING with ret: 0
<333> lvm_tab_vg_check_exist -- CALLED with vg_name: "rootvg"
<4444> vg_check_name -- CALLED with VG: rootvg
<55555> lvm_check_chars -- CALLED with name: "rootvg"
<55555> lvm_check_chars -- LEAVING with ret: 0
<4444> vg_check_name -- LEAVING with ret: 0
<4444> lvm_tab_read -- CALLED
<4444> lvm_tab_read -- LEAVING with ret: 0  data: 8055638  size: 7
<4444> vg_cfgrestore -- CALLED
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<55555> vg_check_consistency -- CALLED
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> vg_check_consistency -- LEAVING with ret: 0
<55555> pv_check_consistency -- CALLED
<666666> pv_check_name -- CALLED with "/dev/sdd"
<7777777> lvm_check_chars -- CALLED with name: "/dev/sdd"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<7777777> lvm_check_dev -- CALLED
<88888888> lvm_check_partitioned_dev -- CALLED
<999999999> lvm_get_device_type called
<999999999> lvm_get_device_type leaving with 1
<88888888> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<7777777> lvm_check_dev -- LEAVING with ret: 1
<666666> pv_check_name -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<666666> lvm_check_dev -- CALLED
<7777777> lvm_check_partitioned_dev -- CALLED
<88888888> lvm_get_device_type called
<88888888> lvm_get_device_type leaving with 1
<7777777> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<666666> lvm_check_dev -- LEAVING with ret: 1
<666666> pv_check_new -- CALLED
<666666> pv_check_new -- LEAVING with ret: 0
<55555> pv_check_consistency -- LEAVING with ret: 0
<55555> lv_check_consistency -- CALLED
<666666> lv_check_name -- CALLED with lv_name: "/dev/rootvg/opt_lv"
<7777777> lvm_check_chars -- CALLED with name: "/dev/rootvg/opt_lv"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<666666> lv_check_name -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> lv_check_consistency -- LEAVING with ret: 0
<55555> lv_check_consistency -- CALLED
<666666> lv_check_name -- CALLED with lv_name: "/dev/rootvg/data_lv"
<7777777> lvm_check_chars -- CALLED with name: "/dev/rootvg/data_lv"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<666666> lv_check_name -- LEAVING with ret: 0
<666666> vg_check_name -- CALLED with VG: rootvg
<7777777> lvm_check_chars -- CALLED with name: "rootvg"
<7777777> lvm_check_chars -- LEAVING with ret: 0
<666666> vg_check_name -- LEAVING with ret: 0
<55555> lv_check_consistency -- LEAVING with ret: 0
<55555> vg_setup_pointers_for_snapshots -- CALLED
<55555> vg_setup_pointers_for_snapshots -- LEAVING
<55555> vg_check_consistency_with_pv_and_lv -- CALLED
<666666> vg_check_consistency -- CALLED
<7777777> vg_check_name -- CALLED with VG: rootvg
<88888888> lvm_check_chars -- CALLED with name: "rootvg"
<88888888> lvm_check_chars -- LEAVING with ret: 0
<7777777> vg_check_name -- LEAVING with ret: 0
<666666> vg_check_consistency -- LEAVING with ret: 0
<666666> pv_check_consistency_all_pv -- CALLED
<7777777> vg_check_consistency -- CALLED
<88888888> vg_check_name -- CALLED with VG: rootvg
<999999999> lvm_check_chars -- CALLED with name: "rootvg"
<999999999> lvm_check_chars -- LEAVING with ret: 0
<88888888> vg_check_name -- LEAVING with ret: 0
<7777777> vg_check_consistency -- LEAVING with ret: 0
<7777777> pv_check_consistency -- CALLED
<88888888> pv_check_name -- CALLED with "/dev/sdd"
<999999999> lvm_check_chars -- CALLED with name: "/dev/sdd"
<999999999> lvm_check_chars -- LEAVING with ret: 0
<999999999> lvm_check_dev -- CALLED
<AAAAAAAAAA> lvm_check_partitioned_dev -- CALLED
<BBBBBBBBBBB> lvm_get_device_type called
<BBBBBBBBBBB> lvm_get_device_type leaving with 1
<AAAAAAAAAA> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<999999999> lvm_check_dev -- LEAVING with ret: 1
<88888888> pv_check_name -- LEAVING with ret: 0
<88888888> vg_check_name -- CALLED with VG: rootvg
<999999999> lvm_check_chars -- CALLED with name: "rootvg"
<999999999> lvm_check_chars -- LEAVING with ret: 0
<88888888> vg_check_name -- LEAVING with ret: 0
<88888888> lvm_check_dev -- CALLED
<999999999> lvm_check_partitioned_dev -- CALLED
<AAAAAAAAAA> lvm_get_device_type called
<AAAAAAAAAA> lvm_get_device_type leaving with 1
<999999999> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<88888888> lvm_check_dev -- LEAVING with ret: 1
<88888888> pv_check_new -- CALLED
<88888888> pv_check_new -- LEAVING with ret: 0
<7777777> pv_check_consistency -- LEAVING with ret: 0
<666666> pv_check_consistency_all_pv -- LEAVING with ret: 0
<666666> lv_check_consistency_all_lv -- CALLED vg->lv_max: 256
<666666> lv_check_consistency_all_lv -- vg->lv[0]: 8061568  name: /dev/rootvg/opt_lv
<7777777> lv_check_consistency -- CALLED
<88888888> lv_check_name -- CALLED with lv_name: "/dev/rootvg/opt_lv"
<999999999> lvm_check_chars -- CALLED with name: "/dev/rootvg/opt_lv"
<999999999> lvm_check_chars -- LEAVING with ret: 0
<999999999> vg_check_name -- CALLED with VG: rootvg
<AAAAAAAAAA> lvm_check_chars -- CALLED with name: "rootvg"
<AAAAAAAAAA> lvm_check_chars -- LEAVING with ret: 0
<999999999> vg_check_name -- LEAVING with ret: 0
<88888888> lv_check_name -- LEAVING with ret: 0
<88888888> vg_check_name -- CALLED with VG: rootvg
<999999999> lvm_check_chars -- CALLED with name: "rootvg"
<999999999> lvm_check_chars -- LEAVING with ret: 0
<88888888> vg_check_name -- LEAVING with ret: 0
<7777777> lv_check_consistency -- LEAVING with ret: 0
<666666> lv_check_consistency_all_lv -- vg->lv[1]: 80667A8  name: /dev/rootvg/data_lv
<7777777> lv_check_consistency -- CALLED
<88888888> lv_check_name -- CALLED with lv_name: "/dev/rootvg/data_lv"
<999999999> lvm_check_chars -- CALLED with name: "/dev/rootvg/data_lv"
<999999999> lvm_check_chars -- LEAVING with ret: 0
<999999999> vg_check_name -- CALLED with VG: rootvg
<AAAAAAAAAA> lvm_check_chars -- CALLED with name: "rootvg"
<AAAAAAAAAA> lvm_check_chars -- LEAVING with ret: 0
<999999999> vg_check_name -- LEAVING with ret: 0
<88888888> lv_check_name -- LEAVING with ret: 0
<88888888> vg_check_name -- CALLED with VG: rootvg
<999999999> lvm_check_chars -- CALLED with name: "rootvg"
<999999999> lvm_check_chars -- LEAVING with ret: 0
<88888888> vg_check_name -- LEAVING with ret: 0
<7777777> lv_check_consistency -- LEAVING with ret: 0
<666666> lv_check_consistency_all_lv -- vg->lv[2]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[3]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[4]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[5]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[6]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[7]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[8]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[9]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[10]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[11]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[12]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[13]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[14]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[15]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[16]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[17]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[18]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[19]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[20]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[21]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[22]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[23]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[24]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[25]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[26]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[27]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[28]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[29]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[30]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[31]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[32]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[33]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[34]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[35]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[36]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[37]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[38]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[39]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[40]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[41]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[42]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[43]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[44]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[45]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[46]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[47]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[48]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[49]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[50]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[51]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[52]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[53]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[54]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[55]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[56]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[57]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[58]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[59]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[60]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[61]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[62]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[63]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[64]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[65]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[66]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[67]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[68]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[69]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[70]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[71]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[72]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[73]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[74]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[75]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[76]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[77]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[78]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[79]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[80]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[81]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[82]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[83]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[84]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[85]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[86]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[87]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[88]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[89]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[90]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[91]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[92]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[93]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[94]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[95]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[96]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[97]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[98]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[99]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[100]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[101]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[102]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[103]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[104]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[105]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[106]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[107]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[108]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[109]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[110]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[111]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[112]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[113]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[114]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[115]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[116]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[117]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[118]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[119]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[120]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[121]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[122]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[123]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[124]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[125]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[126]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[127]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[128]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[129]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[130]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[131]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[132]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[133]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[134]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[135]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[136]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[137]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[138]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[139]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[140]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[141]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[142]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[143]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[144]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[145]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[146]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[147]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[148]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[149]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[150]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[151]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[152]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[153]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[154]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[155]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[156]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[157]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[158]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[159]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[160]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[161]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[162]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[163]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[164]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[165]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[166]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[167]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[168]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[169]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[170]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[171]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[172]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[173]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[174]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[175]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[176]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[177]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[178]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[179]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[180]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[181]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[182]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[183]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[184]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[185]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[186]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[187]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[188]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[189]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[190]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[191]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[192]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[193]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[194]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[195]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[196]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[197]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[198]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[199]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[200]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[201]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[202]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[203]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[204]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[205]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[206]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[207]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[208]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[209]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[210]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[211]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[212]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[213]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[214]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[215]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[216]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[217]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[218]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[219]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[220]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[221]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[222]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[223]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[224]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[225]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[226]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[227]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[228]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[229]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[230]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[231]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[232]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[233]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[234]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[235]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[236]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[237]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[238]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[239]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[240]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[241]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[242]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[243]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[244]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[245]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[246]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[247]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[248]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[249]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[250]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[251]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[252]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[253]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[254]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- vg->lv[255]: 0  name: (null)
<666666> lv_check_consistency_all_lv -- LEAVING with ret: 0
<55555> vg_check_consistency_with_pv_and_lv -- LEAVING with ret: 0
<4444> vg_cfgrestore -- LEAVING with ret: 0
<333> lvm_tab_vg_check_exist -- before vg.pv_cur check with vg.pv_cur: 1  pv_count: 1
<333> lvm_tab_vg_check_exist -- LEAVING with ret: 1
<333> vg_free -- CALLED
<333> vg_free -- entering PV loop
<333> vg_free -- entering LV loop
<333> vg_free -- LEAVING with ret: 0
<22> lvm_tab_get_free_blk_dev -- LEAVING with ret: 14850
<1> lv_setup_for_create -- lv_size: 8192
<22> pv_reserve_pe -- CALLED: pv->pv_dev: 08:48  lv_num: 3  le_num: 0  pv->pe_total: 33946
<22> pv_reserve_pe -- empty PE 16640
<333> lv_check_on_pv -- CALLED
<4444> pv_check_consistency -- CALLED
<55555> pv_check_name -- CALLED with "/dev/sdd"
<666666> lvm_check_chars -- CALLED with name: "/dev/sdd"
<666666> lvm_check_chars -- LEAVING with ret: 0
<666666> lvm_check_dev -- CALLED
<7777777> lvm_check_partitioned_dev -- CALLED
<88888888> lvm_get_device_type called
<88888888> lvm_get_device_type leaving with 1
<7777777> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<666666> lvm_check_dev -- LEAVING with ret: 1
<55555> pv_check_name -- LEAVING with ret: 0
<55555> vg_check_name -- CALLED with VG: rootvg
<666666> lvm_check_chars -- CALLED with name: "rootvg"
<666666> lvm_check_chars -- LEAVING with ret: 0
<55555> vg_check_name -- LEAVING with ret: 0
<55555> lvm_check_dev -- CALLED
<666666> lvm_check_partitioned_dev -- CALLED
<7777777> lvm_get_device_type called
<7777777> lvm_get_device_type leaving with 1
<666666> lvm_check_partitioned_dev -- LEAVING with ret: TRUE
<55555> lvm_check_dev -- LEAVING with ret: 1
<55555> pv_check_new -- CALLED
<55555> pv_check_new -- LEAVING with ret: 0
<4444> pv_check_consistency -- LEAVING with ret: 0
<333> lv_check_on_pv -- LEAVING with ret: 0
<22> pv_reserve_pe -- LEAVING with ret: 0
<1> lv_setup_for_create -- pv_reserve_pe returned: 0   pe_last: 1  pe: 0
<1> lv_setup_for_create -- pe: 0
<1> lv_setup_for_create -- LEAVING with ret: 0
<1> lvm_dont_interrupt -- CALLED
<1> lvm_dont_interrupt -- LEAVING
Segmentation fault (core dumped)
[root@letrs-tst 1.0.1-rc2]# exit

Script done on Wed Sep  5 13:25:17 2001

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

* Re: [linux-lvm] lvcreate segfaults
  2001-09-05 18:32     ` [linux-lvm] lvcreate segfaults John Marquart
@ 2001-09-05 18:57       ` John Marquart
  2001-09-05 20:37       ` AJ Lewis
  1 sibling, 0 replies; 16+ messages in thread
From: John Marquart @ 2001-09-05 18:57 UTC (permalink / raw)
  To: linux-lvm

One piece of info i forgot - not sure its relevance - but this is a SMP
machine running 2 zeon processors.

-j

On Wed, 5 Sep 2001, John Marquart wrote:

> Good afternoon,
> 	I am running LVM 1.0.1rc2 on  2.4.8 kernel ontop of a IBM
> Serverraid 4Mx RAID5 filesystem.  I am trying to create a new lv using
> "lvcreate -n foo -L 4M rootvg" - however that command insists on giving me
> a segfault.  
> 
> Attached are the complete outputs of the above lvreate command w/ the -v
> and -d flags.  excerpts (the last few lines) are listed below:
> 
> ----lvcreate ... -v----
> lvcreate -- setting up logical volume
> lvcreate -- setting read ahead sectors
> lvcreate -- creating logical volume VGDA in kernel
> Segmentation fault (core dumped)
> 
> ----lvcreate ... -d----
> <1> lv_setup_for_create -- pv_reserve_pe returned: 0   pe_last: 1  pe: 0
> <1> lv_setup_for_create -- pe: 0
> <1> lv_setup_for_create -- LEAVING with ret: 0
> <1> lvm_dont_interrupt -- CALLED
> <1> lvm_dont_interrupt -- LEAVING
> Segmentation fault (core dumped)
> -----------------------------------
> 
> 
> If there is any other info I can provide - please let me know.  I only
> attached what seemed most pertinent.
> 
> thanks,
> -jamie / vaix
> 


John "Jamie" Marquart		|     This message posted 100% MS free.
Digital Library SysAdmin	|  Work: 812-856-5174   Pager: 812-334-6018
Indiana University Libraries	|  ICQ: 1131494	 	D'net Team:  6265

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

* Re: [linux-lvm] lvcreate segfaults
  2001-09-05 18:32     ` [linux-lvm] lvcreate segfaults John Marquart
  2001-09-05 18:57       ` John Marquart
@ 2001-09-05 20:37       ` AJ Lewis
  2001-09-05 22:42         ` John Marquart
  2001-09-06  8:00         ` Joe Thornber
  1 sibling, 2 replies; 16+ messages in thread
From: AJ Lewis @ 2001-09-05 20:37 UTC (permalink / raw)
  To: linux-lvm

[-- Attachment #1: Type: text/plain, Size: 7140 bytes --]

On Wed, Sep 05, 2001 at 01:32:34PM -0500, John Marquart wrote:
> Good afternoon,
> 	I am running LVM 1.0.1rc2 on  2.4.8 kernel ontop of a IBM
> Serverraid 4Mx RAID5 filesystem.  I am trying to create a new lv using
> "lvcreate -n foo -L 4M rootvg" - however that command insists on giving me
> a segfault.  

Here is a patch that should fix this problem.  It has already been applied
to the CVS.  just save this to a file and apply it to the 1.0.1-rc2 source
with the -p0 flag after cd'ing to the 1.0.1-rc2 directory.

Index: tools/lib/liblvm.h
===================================================================
RCS file: /var/cvs/LVM/tools/lib/liblvm.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -b -B -r1.26 -r1.27
--- tools/lib/liblvm.h	2001/08/29 13:13:25	1.26
+++ tools/lib/liblvm.h	2001/09/03 08:14:05	1.27
@@ -214,7 +214,7 @@
 int  vg_create_dir_and_group ( vg_t *);
 int  vg_create_dir_and_group_and_nodes ( vg_t *, int);
 void vg_deactivate ( char *);
-inline int vg_extend ( char *, pv_t *, vg_t *);
+int vg_extend ( char *, pv_t *, vg_t *);
 int  vg_free ( vg_t *, int);
 char *vg_name_of_lv ( char *);
 int  vg_remove ( char *);
@@ -222,7 +222,7 @@
 int  vg_read ( char *, vg_t **);
 int  vg_read_from_pv ( char *, vg_t **);
 int  vg_read_with_pv_and_lv ( char *, vg_t **);
-inline int vg_reduce ( char *, pv_t *, vg_t *);
+int vg_reduce ( char *, pv_t *, vg_t *);
 int  vg_remove_dir_and_group_and_nodes ( char *);
 int  vg_set_extendable ( char*);
 void vg_setup_pointers_for_snapshots ( vg_t*);
@@ -317,10 +317,10 @@
 lv_t      *lv_copy_from_disk ( lv_disk_t *);
 lv_disk_t *lv_copy_to_disk ( lv_t *);
 int    lv_count_pe ( pv_t *, int);
-inline int lv_create ( vg_t *, lv_t *, char *);
+int lv_create ( vg_t *, lv_t *, char *);
 int    lv_create_name ( char *, char *, int);
 int    lv_create_node ( lv_t *);
-inline int lv_extend ( vg_t *, lv_t *, char *);
+int lv_extend ( vg_t *, lv_t *, char *);
 int    lv_get_index_by_kdev_t ( vg_t *, kdev_t);
 int    lv_get_index_by_minor ( vg_t *, int);
 int    lv_get_index_by_name ( vg_t *, char *);
@@ -335,9 +335,9 @@
 int    lv_read_COW_table ( vg_t * vg, lv_t * lv);
 int    lv_read_with_pe ( char *, char *, lv_t **);
 int    lv_read_all_lv ( char *, lv_t ***, int);
-inline int lv_reduce ( vg_t *, lv_t *, char *);
+int lv_reduce ( vg_t *, lv_t *, char *);
 int    lv_release ( vg_t *, char *);
-inline int lv_remove ( vg_t *, lv_t *, char *);
+int lv_remove ( vg_t *, lv_t *, char *);
 int    lv_rename ( char *, lv_t *);
 int    lv_setup_for_create ( char *, vg_t **, char *, int *,
                              uint, uint, uint, uint, uint, uint, char **);
Index: tools/lib/lv_create_remove.c
===================================================================
RCS file: /var/cvs/LVM/tools/lib/lv_create_remove.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -B -r1.3 -r1.4
--- tools/lib/lv_create_remove.c	2001/04/24 14:29:21	1.3
+++ tools/lib/lv_create_remove.c	2001/09/03 08:14:05	1.4
@@ -39,12 +39,12 @@
 int lv_create_remove ( vg_t *, lv_t *, char *, int);
 
 
-inline int lv_create ( vg_t *vg, lv_t *lv, char *lv_name) {
+int lv_create ( vg_t *vg, lv_t *lv, char *lv_name) {
    return lv_create_remove ( vg, lv, lv_name, LV_CREATE);
 }
 
 
-inline int lv_remove ( vg_t *vg, lv_t *lv, char *lv_name) {
+int lv_remove ( vg_t *vg, lv_t *lv, char *lv_name) {
    return lv_create_remove ( vg, lv, lv_name, LV_REMOVE);
 }
 
Index: tools/lib/lv_extend_reduce.c
===================================================================
RCS file: /var/cvs/LVM/tools/lib/lv_extend_reduce.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -B -r1.3 -r1.4
--- tools/lib/lv_extend_reduce.c	2001/04/24 14:29:21	1.3
+++ tools/lib/lv_extend_reduce.c	2001/09/03 08:14:05	1.4
@@ -36,15 +36,15 @@
 #include <liblvm.h>
 
 /* internal function */
-inline int lv_extend_reduce ( vg_t *, lv_t *, char *, int);
+int lv_extend_reduce ( vg_t *, lv_t *, char *, int);
 
 
-inline int lv_extend ( vg_t *vg, lv_t *lv, char *lv_name) {
+int lv_extend ( vg_t *vg, lv_t *lv, char *lv_name) {
    return lv_extend_reduce ( vg, lv, lv_name, LV_EXTEND);
 }
 
 
-inline int lv_reduce ( vg_t *vg, lv_t *lv, char *lv_name) {
+int lv_reduce ( vg_t *vg, lv_t *lv, char *lv_name) {
    return lv_extend_reduce ( vg, lv, lv_name, LV_REDUCE);
 }
 
Index: tools/lib/system_id.c
===================================================================
RCS file: /var/cvs/LVM/tools/lib/system_id.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -B -r1.3 -r1.4
--- tools/lib/system_id.c	2001/04/24 14:29:21	1.3
+++ tools/lib/system_id.c	2001/09/03 08:14:05	1.4
@@ -36,7 +36,7 @@
 #include <liblvm.h>
 #include <sys/utsname.h>
 
-inline int system_id_set ( char *system_id) {
+int system_id_set ( char *system_id) {
    int ret = 0;
    struct utsname uts;
 
@@ -52,7 +52,7 @@
 }
 
 
-inline int system_id_set_exported ( char *system_id) {
+int system_id_set_exported ( char *system_id) {
    int ret = 0;
    struct utsname uts;
 
@@ -69,7 +69,7 @@
 }
 
 
-inline int system_id_set_imported ( char *system_id) {
+int system_id_set_imported ( char *system_id) {
    int ret = 0;
 
    debug_enter ( "system_id_set_imported -- CALLED\n");
@@ -84,7 +84,7 @@
 }
 
 
-inline int system_id_check_exported ( char *system_id) {
+int system_id_check_exported ( char *system_id) {
    int ret = UNDEF;
 
    debug_enter ( "system_id_check_exported -- CALLED\n");
@@ -101,7 +101,7 @@
 }
 
 
-inline int system_id_check_imported ( char *system_id) {
+int system_id_check_imported ( char *system_id) {
    int ret = UNDEF;
 
    debug_enter ( "system_id_check_imported -- CALLED\n");
Index: tools/lib/vg_extend_reduce.c
===================================================================
RCS file: /var/cvs/LVM/tools/lib/vg_extend_reduce.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -B -r1.3 -r1.4
--- tools/lib/vg_extend_reduce.c	2001/04/24 14:29:21	1.3
+++ tools/lib/vg_extend_reduce.c	2001/09/03 08:14:05	1.4
@@ -39,12 +39,12 @@
 int vg_extend_reduce ( char *, pv_t *, vg_t *, int);
 
 
-inline int vg_extend ( char *vg_name, pv_t *pv, vg_t *vg) {
+int vg_extend ( char *vg_name, pv_t *pv, vg_t *vg) {
    return vg_extend_reduce ( vg_name, pv, vg, VG_EXTEND);
 }
 
 
-inline int vg_reduce ( char *vg_name, pv_t *pv, vg_t *vg) {
+int vg_reduce ( char *vg_name, pv_t *pv, vg_t *vg) {
    return vg_extend_reduce ( vg_name, pv, vg, VG_REDUCE);
 }
 

Regards,
-- 
AJ Lewis
Sistina Software Inc.                  Voice:  612-638-0500
1313 5th St SE, Suite 111              Fax:    612-638-0500
Minneapolis, MN 55414                  E-Mail: lewis@sistina.com
http://www.sistina.com

Current GPG fingerprint = 60F3 160D C0D5 2C4B 751B  4FF9 6F67 E9BC 44CD DE95

-----Begin Obligatory Humorous Quote----------------------------------------
File not found. Should I fake it? (Y/N)
-----End Obligatory Humorous Quote------------------------------------------

[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]

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

* Re: [linux-lvm] lvcreate segfaults
  2001-09-05 20:37       ` AJ Lewis
@ 2001-09-05 22:42         ` John Marquart
  2001-09-06  8:00         ` Joe Thornber
  1 sibling, 0 replies; 16+ messages in thread
From: John Marquart @ 2001-09-05 22:42 UTC (permalink / raw)
  To: linux-lvm

Alas alas,
        This patch seemed to have changed the problem mroe then anything
else.
 
I am still getting segfaults - however this time in a different place.
 
(from gdb ./lvcreate w/ set args = rootvg -L4M -nfoo):
-----
Starting program: /usr/src/LVM/1.0.1-rc2/./tools/lvcreate rootvg -L4M
-nfoo
 
Program received signal SIGSEGV, Segmentation fault. lv_create (vg=0x4,
lv=0xbffffae4,
    lv_name=0xbffffaf8 "\023.Rt~A`z\217\003\021\034'") at
lv_create_remove.c:42
42      int lv_create ( vg_t *vg, lv_t *lv, char *lv_name) {     

-----

As far as I can tell - the only significant difference between this putput
and the pre-patched output - is that it is now int lv_create instead of
inline int lv_create.

If there is any other info I can provide - as always - please ask.

-j

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

* Re: [linux-lvm] lvcreate segfaults
  2001-09-05 20:37       ` AJ Lewis
  2001-09-05 22:42         ` John Marquart
@ 2001-09-06  8:00         ` Joe Thornber
  2001-09-06 12:32           ` AJ Lewis
  1 sibling, 1 reply; 16+ messages in thread
From: Joe Thornber @ 2001-09-06  8:00 UTC (permalink / raw)
  To: linux-lvm

AJ,

On Wed, Sep 05, 2001 at 03:37:03PM -0500, AJ Lewis wrote:
> On Wed, Sep 05, 2001 at 01:32:34PM -0500, John Marquart wrote:
> > Good afternoon,
> > 	I am running LVM 1.0.1rc2 on  2.4.8 kernel ontop of a IBM
> > Serverraid 4Mx RAID5 filesystem.  I am trying to create a new lv using
> > "lvcreate -n foo -L 4M rootvg" - however that command insists on giving me
> > a segfault.  
> 
> Here is a patch that should fix this problem.  It has already been applied
> to the CVS.  just save this to a file and apply it to the 1.0.1-rc2 source
> with the -p0 flag after cd'ing to the 1.0.1-rc2 directory.

I don't think this patch fixes it, it's just a tidy up.

- Joe

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

* Re: [linux-lvm] lvcreate segfaults
  2001-09-06  8:00         ` Joe Thornber
@ 2001-09-06 12:32           ` AJ Lewis
  2001-09-07 16:05             ` John Marquart
  0 siblings, 1 reply; 16+ messages in thread
From: AJ Lewis @ 2001-09-06 12:32 UTC (permalink / raw)
  To: linux-lvm

[-- Attachment #1: Type: text/plain, Size: 1588 bytes --]

On Thu, Sep 06, 2001 at 09:00:25AM +0100, Joe Thornber wrote:
> On Wed, Sep 05, 2001 at 03:37:03PM -0500, AJ Lewis wrote:
> > On Wed, Sep 05, 2001 at 01:32:34PM -0500, John Marquart wrote:
> > > 	I am running LVM 1.0.1rc2 on  2.4.8 kernel ontop of a IBM
> > > Serverraid 4Mx RAID5 filesystem.  I am trying to create a new lv using
> > > "lvcreate -n foo -L 4M rootvg" - however that command insists on giving me
> > > a segfault.  
> > 
> > Here is a patch that should fix this problem.  It has already been applied
> > to the CVS.  just save this to a file and apply it to the 1.0.1-rc2 source
> > with the -p0 flag after cd'ing to the 1.0.1-rc2 directory.
> 
> I don't think this patch fixes it, it's just a tidy up.

Hmm...was looking at this:
http://lists.sistina.com/pipermail/lvm-devel/2001-September/000637.html

Sounded like changing the inlines fixed the seg-fault for this guy.  

John,
you could also try the patch referred to from that e-mail, but it doesn't
sound like it's the same problem i guess...

Regards,
-- 
AJ Lewis
Sistina Software Inc.                  Voice:  612-638-0500
1313 5th St SE, Suite 111              Fax:    612-638-0500
Minneapolis, MN 55414                  E-Mail: lewis@sistina.com
http://www.sistina.com

Current GPG fingerprint = 60F3 160D C0D5 2C4B 751B  4FF9 6F67 E9BC 44CD DE95

-----Begin Obligatory Humorous Quote----------------------------------------
Programming graphics in X is like finding sqrt(pi) using Roman numerals.
-----End Obligatory Humorous Quote------------------------------------------

[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]

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

* RE: [linux-lvm] lvcreate segfaults
@ 2001-09-07 15:59 Robert_Macaulay
  2001-09-07 16:17 ` Benjamin Reed
  0 siblings, 1 reply; 16+ messages in thread
From: Robert_Macaulay @ 2001-09-07 15:59 UTC (permalink / raw)
  To: linux-lvm

I'm having the same problem as well. gdb on the core file shows

 lv_create (vg=0xb, lv=0xbffffab4,
    lv_name=0xbffffae4
"uuy?\003uy?(uy?Guy?iuy?suy?6?y?U?y?o?y?\204?y?\233?y?|?y?E?y?O?y???y?i?y?u?
y?\nyy?\eyy?)yy?4yy??yy?Eyy?Uyy?") at lv_create_remove.c:42
42      inline int lv_create ( vg_t *vg, lv_t *lv, char *lv_name) {

I haven't changed the inlines yet since it's a production system, and it
didn't seem to help for John

> -----Original Message-----
> From: John Marquart [mailto:jomarqua@indiana.edu]
> Sent: Wednesday, September 05, 2001 5:42 PM
> To: linux-lvm@sistina.com
> Subject: Re: [linux-lvm] lvcreate segfaults
> 
> 
> Alas alas,
>         This patch seemed to have changed the problem mroe 
> then anything
> else.
>  
> I am still getting segfaults - however this time in a different place.
>  
> (from gdb ./lvcreate w/ set args = rootvg -L4M -nfoo):
> -----
> Starting program: /usr/src/LVM/1.0.1-rc2/./tools/lvcreate rootvg -L4M
> -nfoo
>  
> Program received signal SIGSEGV, Segmentation fault. 
> lv_create (vg=0x4,
> lv=0xbffffae4,
>     lv_name=0xbffffaf8 "\023.Rt~A`z\217\003\021\034'") at
> lv_create_remove.c:42
> 42      int lv_create ( vg_t *vg, lv_t *lv, char *lv_name) {     
> 
> -----
> 
> As far as I can tell - the only significant difference 
> between this putput
> and the pre-patched output - is that it is now int lv_create 
> instead of
> inline int lv_create.
> 
> If there is any other info I can provide - as always - please ask.
> 
> -j
> 
> 
> _______________________________________________
> linux-lvm mailing list
> linux-lvm@sistina.com
> http://lists.sistina.com/mailman/listinfo/linux-lvm
> read the LVM HOW-TO at http://www.sistina.com/lvm/Pages/howto.html
> 

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

* Re: [linux-lvm] lvcreate segfaults
  2001-09-06 12:32           ` AJ Lewis
@ 2001-09-07 16:05             ` John Marquart
  2001-09-10 16:08               ` AJ Lewis
  0 siblings, 1 reply; 16+ messages in thread
From: John Marquart @ 2001-09-07 16:05 UTC (permalink / raw)
  To: linux-lvm

Thanks AJ,
	Me and my trusty ddd had figured out the same thing - that an
extra printf inserted into the function fixed it.  It is a darn weird bug
though.
	Thanks for the link - made a much nicer cleaner patch then my
own. :)

-john


On Thu, 6 Sep 2001, AJ Lewis wrote:

> On Thu, Sep 06, 2001 at 09:00:25AM +0100, Joe Thornber wrote:
> > On Wed, Sep 05, 2001 at 03:37:03PM -0500, AJ Lewis wrote:
> > > On Wed, Sep 05, 2001 at 01:32:34PM -0500, John Marquart wrote:
> > > > 	I am running LVM 1.0.1rc2 on  2.4.8 kernel ontop of a IBM
> > > > Serverraid 4Mx RAID5 filesystem.  I am trying to create a new lv using
> > > > "lvcreate -n foo -L 4M rootvg" - however that command insists on giving me
> > > > a segfault.  
> > > 
> > > Here is a patch that should fix this problem.  It has already been applied
> > > to the CVS.  just save this to a file and apply it to the 1.0.1-rc2 source
> > > with the -p0 flag after cd'ing to the 1.0.1-rc2 directory.
> > 
> > I don't think this patch fixes it, it's just a tidy up.
> 
> Hmm...was looking at this:
> http://lists.sistina.com/pipermail/lvm-devel/2001-September/000637.html
> 
> Sounded like changing the inlines fixed the seg-fault for this guy.  
> 
> John,
> you could also try the patch referred to from that e-mail, but it doesn't
> sound like it's the same problem i guess...
> 
> Regards,
> -- 
> AJ Lewis
> Sistina Software Inc.                  Voice:  612-638-0500
> 1313 5th St SE, Suite 111              Fax:    612-638-0500
> Minneapolis, MN 55414                  E-Mail: lewis@sistina.com
> http://www.sistina.com
> 
> Current GPG fingerprint = 60F3 160D C0D5 2C4B 751B  4FF9 6F67 E9BC 44CD DE95
> 
> -----Begin Obligatory Humorous Quote----------------------------------------
> Programming graphics in X is like finding sqrt(pi) using Roman numerals.
> -----End Obligatory Humorous Quote------------------------------------------
> 


John "Jamie" Marquart		|     This message posted 100% MS free.
Digital Library SysAdmin	|  Work: 812-856-5174   Pager: 812-334-6018
Indiana University Libraries	|  ICQ: 1131494	 	D'net Team:  6265

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

* Re: [linux-lvm] lvcreate segfaults
  2001-09-07 15:59 Robert_Macaulay
@ 2001-09-07 16:17 ` Benjamin Reed
  0 siblings, 0 replies; 16+ messages in thread
From: Benjamin Reed @ 2001-09-07 16:17 UTC (permalink / raw)
  To: linux-lvm

> > As far as I can tell - the only significant difference 
> > between this putput
> > and the pre-patched output - is that it is now int lv_create 
> > instead of
> > inline int lv_create.
> > 
> > If there is any other info I can provide - as always - please ask.

Not sure if it helps, but I had problems on RH71 with
lvcreate segfaulting, switching to the compat-* compiler
(egcs 2.91) instead of the default gcc-2.96 fixed my
problem, so I would expect it to be something in the
newer, more anal, gcc-3-style compiler.

-- 
Ben Reed a.k.a. Ranger Rick (ranger@befunk.com)
http://defiance.dyndns.org/ / http://radio.scenespot.org/
The devil's in the broad, sweeping generalizations.

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

* Re: [linux-lvm] lvcreate segfaults
  2001-09-07 16:05             ` John Marquart
@ 2001-09-10 16:08               ` AJ Lewis
  0 siblings, 0 replies; 16+ messages in thread
From: AJ Lewis @ 2001-09-10 16:08 UTC (permalink / raw)
  To: linux-lvm

[-- Attachment #1: Type: text/plain, Size: 1094 bytes --]

On Fri, Sep 07, 2001 at 11:05:34AM -0500, John Marquart wrote:
> Thanks AJ,
> 	Me and my trusty ddd had figured out the same thing - that an
> extra printf inserted into the function fixed it.  It is a darn weird bug
> though.
> 	Thanks for the link - made a much nicer cleaner patch then my
> own. :)

Hmm...sounds like there must be a race condition in there somewhere...very
odd.  That's the only thing I can think of that would make the difference,
since the printf could serialize the code somewhat...and it was a dual-proc
machine, so...

Regards,
-- 
AJ Lewis
Sistina Software Inc.                  Voice:  612-638-0500
1313 5th St SE, Suite 111              Fax:    612-638-0500
Minneapolis, MN 55414                  E-Mail: lewis@sistina.com
http://www.sistina.com

Current GPG fingerprint = 60F3 160D C0D5 2C4B 751B  4FF9 6F67 E9BC 44CD DE95

-----Begin Obligatory Humorous Quote----------------------------------------
"We succeed because our competitors are idiots" - anonymous
-----End Obligatory Humorous Quote------------------------------------------

[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]

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

end of thread, other threads:[~2001-09-10 16:08 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-09-05  9:33 [linux-lvm] LV size maximum Jan-Benedict Glaw
2001-09-05  9:53 ` svetljo
2001-09-05 10:09   ` Jan-Benedict Glaw
2001-09-05 10:38     ` svetljo
2001-09-05 10:24 ` Ragnar Kjørstad
2001-09-05 18:11   ` Andreas Dilger
2001-09-05 18:32     ` [linux-lvm] lvcreate segfaults John Marquart
2001-09-05 18:57       ` John Marquart
2001-09-05 20:37       ` AJ Lewis
2001-09-05 22:42         ` John Marquart
2001-09-06  8:00         ` Joe Thornber
2001-09-06 12:32           ` AJ Lewis
2001-09-07 16:05             ` John Marquart
2001-09-10 16:08               ` AJ Lewis
  -- strict thread matches above, loose matches on Subject: below --
2001-09-07 15:59 Robert_Macaulay
2001-09-07 16:17 ` Benjamin Reed

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.