From f947cd2f438d9d6b5c3ba0a07d9e2e2698150064 Mon Sep 17 00:00:00 2001 From: Joe Eykholt Date: Thu, 10 Jun 2010 18:38:58 +0000 Subject: [PATCH] Fix compile error by removing debug prints of deleted fields. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1756 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- fcst/ft_cmd.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fcst/ft_cmd.c b/fcst/ft_cmd.c index c10df6079..ccca70c6d 100644 --- a/fcst/ft_cmd.c +++ b/fcst/ft_cmd.c @@ -166,16 +166,12 @@ void ft_cmd_tm_dump(struct scst_mgmt_cmd *mcmd, const char *caller) mcmd->cmd_finish_wait_count, mcmd->cmd_done_wait_count, mcmd->completed_cmd_count); buf[0] = '\0'; - if (mcmd->completed) - ft_cmd_flag(buf, sizeof(buf), "comp"); if (mcmd->needs_unblocking) ft_cmd_flag(buf, sizeof(buf), "needs_unblock"); if (mcmd->lun_set) ft_cmd_flag(buf, sizeof(buf), "lun_set"); if (mcmd->cmd_sn_set) ft_cmd_flag(buf, sizeof(buf), "cmd_sn_set"); - if (mcmd->affected_cmds_done_called) - ft_cmd_flag(buf, sizeof(buf), "cmds_done"); printk(KERN_INFO "%s flags %s\n", prefix, buf); if (mcmd->cmd_to_abort) ft_cmd_dump(mcmd->cmd_to_abort, caller);