aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/drbd
diff options
context:
space:
mode:
authorLars Ellenberg <lars.ellenberg@linbit.com>2010-03-03 02:44:11 +0100
committerPhilipp Reisner <philipp.reisner@linbit.com>2010-03-11 16:04:05 +0100
commitc42b6cf4b38c9726d4b46c48d04197c9ca74d773 (patch)
tree12f1f314a38e582903cad09eb102ad6336030449 /drivers/block/drbd
parent4589d7f829951c1713ef5a4ad1a9bb563da329b5 (diff)
downloadkernel_samsung_smdk4412-c42b6cf4b38c9726d4b46c48d04197c9ca74d773.zip
kernel_samsung_smdk4412-c42b6cf4b38c9726d4b46c48d04197c9ca74d773.tar.gz
kernel_samsung_smdk4412-c42b6cf4b38c9726d4b46c48d04197c9ca74d773.tar.bz2
drbd: add missing drbd command names to avoid <NULL> in error messages
cmdname() should map command number to its human readable representation. The string table was incomplete, though. Maybe rather do a switch() block, and let the compiler help us to keep it complete? Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'drivers/block/drbd')
-rw-r--r--drivers/block/drbd/drbd_int.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h
index 1aae724..844206c 100644
--- a/drivers/block/drbd/drbd_int.h
+++ b/drivers/block/drbd/drbd_int.h
@@ -261,6 +261,9 @@ static inline const char *cmdname(enum drbd_packets cmd)
[P_OV_REQUEST] = "OVRequest",
[P_OV_REPLY] = "OVReply",
[P_OV_RESULT] = "OVResult",
+ [P_CSUM_RS_REQUEST] = "CsumRSRequest",
+ [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
+ [P_COMPRESSED_BITMAP] = "CBitmap",
[P_MAX_CMD] = NULL,
};