]> sourceware.org Git - lvm2.git/commitdiff
Adjust gdbinit script to new RAID status flag values.
authorJonathan Earl Brassow <jbrassow@redhat.com>
Thu, 8 Sep 2011 22:19:45 +0000 (22:19 +0000)
committerJonathan Earl Brassow <jbrassow@redhat.com>
Thu, 8 Sep 2011 22:19:45 +0000 (22:19 +0000)
scripts/gdbinit

index d542b01038dcbee3488ff0cb9ce9f5947dc6e670..8eb42d61a667a90494d0524cab7b5d133f454ecf 100644 (file)
@@ -27,8 +27,8 @@ printf " - \n"
 printf "Use 'help <command>' for more info\n"
 printf "\n\n"
 printf "Popular breakpoints:\n"
-printf "break _split_mirror_images\n"
-printf "run --splitmirrors 2 -n new vg/lv\n"
+printf "break _raid_add_images\n"
+printf "run --type raid1 -m 1 vg/lv\n"
 printf "\n\n"
 
 set follow-fork-mode child
@@ -175,18 +175,18 @@ define __status
 #      Constants defined in metadata-exported.h
 
 #      if ($_s_status & RAID)
-       if ($_s_status & 0x00000001U)
-               set $_s_status = $_s_status & ~0x00000001U
+       if ($_s_status & 0x0000000100000000LU)
+               set $_s_status = $_s_status & ~0x0000000100000000LU
                printf " RAID"
        end
 #      if ($_s_status & RAID_META)
-       if ($_s_status & 0x00000002U)
-               set $_s_status = $_s_status & ~0x00000002U
+       if ($_s_status & 0x0000000200000000LU)
+               set $_s_status = $_s_status & ~0x0000000200000000LU
                printf " RAID_META"
        end
 #      if ($_s_status & RAID_IMAGE)
-       if ($_s_status & 0x00000004U)
-               set $_s_status = $_s_status & ~0x00000004U
+       if ($_s_status & 0x0000000400000000LU)
+               set $_s_status = $_s_status & ~0x0000000400000000LU
                printf " RAID_IMAGE"
        end
 #      if ($_s_status & VISIBLE_LV)
This page took 0.034303 seconds and 5 git commands to generate.