From 9cbe774be28192963f2e02ecf9443d725e854f41 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Wed, 1 May 2013 16:25:22 +0200 Subject: [PATCH] super-show: make the version annotation more terse --- bcache-super-show.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/bcache-super-show.c b/bcache-super-show.c index 04e27268..7ebb3952 100644 --- a/bcache-super-show.c +++ b/bcache-super-show.c @@ -97,20 +97,16 @@ int main(int argc, char **argv) printf("sb.version\t\t%" PRIu64, sb.version); switch (sb.version) { + // These are handled the same by the kernel case BCACHE_SB_VERSION_CDEV: + case BCACHE_SB_VERSION_CDEV_WITH_UUID: printf(" [cache device]\n"); break; - case BCACHE_SB_VERSION_CDEV_WITH_UUID: - printf(" [cache device (new UUID format)]\n"); - break; - + // The second adds data offset support case BCACHE_SB_VERSION_BDEV: - printf(" [backing device]\n"); - break; - case BCACHE_SB_VERSION_BDEV_WITH_OFFSET: - printf(" [backing device with data offset]\n"); + printf(" [backing device]\n"); break; default: