From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755596Ab1COXHF (ORCPT ); Tue, 15 Mar 2011 19:07:05 -0400 Received: from mail.linux-iscsi.org ([67.23.28.174]:39387 "EHLO linux-iscsi.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751366Ab1COXHA (ORCPT ); Tue, 15 Mar 2011 19:07:00 -0400 Subject: Re: [RFC-v2 11/12] iscsi-target: Add misc utility and debug logic From: "Nicholas A. Bellinger" To: Christoph Hellwig Cc: linux-scsi , linux-kernel , James Bottomley , Mike Christie , Hannes Reinecke , FUJITA Tomonori , Boaz Harrosh , Stephen Rothwell , Douglas Gilbert In-Reply-To: <20110315102720.GC24496@lst.de> References: <1300103829-10337-1-git-send-email-nab@linux-iscsi.org> <1300103829-10337-12-git-send-email-nab@linux-iscsi.org> <20110315102720.GC24496@lst.de> Content-Type: text/plain Date: Tue, 15 Mar 2011 15:59:56 -0700 Message-Id: <1300229996.28255.322.camel@haakon2.linux-iscsi.org> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2011-03-15 at 11:27 +0100, Christoph Hellwig wrote: > On Mon, Mar 14, 2011 at 04:57:08AM -0700, Nicholas A. Bellinger wrote: > > +++ b/drivers/target/iscsi/iscsi_debug.h > > @@ -0,0 +1,113 @@ > > +#ifndef ISCSI_DEBUG_H > > +#define ISCSI_DEBUG_H > > + > > +/* > > + * Debugging Support > > + */ > > + > > +#define TRACE_DEBUG 0x00000001 /* Verbose debugging */ > > +#define TRACE_SCSI 0x00000002 /* Stuff related to SCSI Mid-layer */ > > Please use trace events for this kind of debugging. > , will have a closer look at Documentation/trace/events.txt > > + spin_lock_bh(&conn->cmd_lock); > > + list_add_tail(&cmd->i_list, &conn->conn_cmd_list); > > + spin_unlock_bh(&conn->cmd_lock); > > + > > + atomic_inc(&conn->active_cmds); > > Seems like this counter is always maintained together with the list, > so it should be a non-atomic type under cmd_lock. > This counter (was) purely information and unused beyond the atomic_inc() + atomic_dec(). Removing now.. --nab