From: Jonathan Earl Brassow Date: Tue, 13 Sep 2011 13:57:02 +0000 (+0000) Subject: reorder some status flag printing in gdbinit file. X-Git-Tag: v2_02_91~575 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=08c50a291ea987b3bd49ab23a1e5bfa908bfabd9;p=lvm2.git reorder some status flag printing in gdbinit file. --- diff --git a/scripts/gdbinit b/scripts/gdbinit index 8eb42d61a..0088017bc 100644 --- a/scripts/gdbinit +++ b/scripts/gdbinit @@ -189,6 +189,21 @@ define __status set $_s_status = $_s_status & ~0x0000000400000000LU printf " RAID_IMAGE" end +# if ($_s_status & MIRRORED) + if ($_s_status & 0x00008000U) + set $_s_status = $_s_status & ~0x00008000U + printf " MIRRORED" + end +# if ($_s_status & MIRROR_LOG) + if ($_s_status & 0x00020000U) + set $_s_status = $_s_status & ~0x00020000U + printf " MIRROR_LOG" + end +# if ($_s_status & MIRROR_IMAGE) + if ($_s_status & 0x00040000U) + set $_s_status = $_s_status & ~0x00040000U + printf " MIRROR_IMAGE" + end # if ($_s_status & VISIBLE_LV) if ($_s_status & 0x00000040U) printf " VISIBLE_LV" @@ -226,21 +241,6 @@ define __status set $_s_status = $_s_status & ~0x00004000U printf " LOCKED" end -# if ($_s_status & MIRRORED) - if ($_s_status & 0x00008000U) - set $_s_status = $_s_status & ~0x00008000U - printf " MIRRORED" - end -# if ($_s_status & MIRROR_LOG) - if ($_s_status & 0x00020000U) - set $_s_status = $_s_status & ~0x00020000U - printf " MIRROR_LOG" - end -# if ($_s_status & MIRROR_IMAGE) - if ($_s_status & 0x00040000U) - set $_s_status = $_s_status & ~0x00040000U - printf " MIRROR_IMAGE" - end # if ($_s_status & LV_NOTSYNCED) if ($_s_status & 0x00080000U) set $_s_status = $_s_status & ~0x00080000U