Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752793AbZAKIeU (ORCPT ); Sun, 11 Jan 2009 03:34:20 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751006AbZAKIeG (ORCPT ); Sun, 11 Jan 2009 03:34:06 -0500 Received: from 8bytes.org ([88.198.83.132]:33477 "EHLO 8bytes.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750836AbZAKIeF (ORCPT ); Sun, 11 Jan 2009 03:34:05 -0500 Date: Sun, 11 Jan 2009 09:34:02 +0100 From: Joerg Roedel To: Ingo Molnar Cc: iommu@lists.linux-foundation.org, mingo@redhat.com, linux-kernel@vger.kernel.org, netdev@vger.kernel.org Subject: Re: [PATCH 08/16] dma-debug: add core checking functions Message-ID: <20090111083402.GN9466@8bytes.org> References: <1231517970-20288-1-git-send-email-joerg.roedel@amd.com> <1231517970-20288-9-git-send-email-joerg.roedel@amd.com> <20090110231127.GK17917@elte.hu> <20090111075752.GI9466@8bytes.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090111075752.GI9466@8bytes.org> User-Agent: Mutt/1.5.13 (2006-08-11) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1844 Lines: 43 On Sun, Jan 11, 2009 at 08:57:52AM +0100, Joerg Roedel wrote: > On Sun, Jan 11, 2009 at 12:11:27AM +0100, Ingo Molnar wrote: > > > > * Joerg Roedel wrote: > > > > > +#define err_printk(dev, format, arg...) do { \ > > > + error_count += 1; \ > > > + if (show_all_errors || show_num_errors > 0) { \ > > > + WARN(1, "%s %s: " format, \ > > > + dev_driver_string(dev), \ > > > + dev_name(dev) , ## arg); \ > > > + } \ > > > + if (!show_all_errors && show_num_errors > 0) \ > > > + show_num_errors -= 1; \ > > > > Note that the arithmetics here is SMP-unsafe: we only hold the hash bucket > > so if two errors hit at once on two CPUs then the error tracking variables > > can be accessed at once. > > > > I'd suggest a simple global lock for this error case (taken inside the > > hash bucket lock), to be on the safe side. > > > > Also, please dont use a macro for this - printk details can be passed in > > to helper inlines/functions too. > > Yeah, this is not SMP-safe, I know. But debugfs does not support > atomic_t so I made the variables u32. But at least a race condition has > not a too bad impact. What may habben is that error_count misses a error > or the show_num_errors become negative. > But if we really want to avoid this I think its better to add atomic_t > support to debugfs. What do you think? Even a global lock will not really help here because show_num_errors and show_all_errors can be set using debugfs. Either we live with the small race (with limited impact) or I add atomic_t support to debugfs. Joerg -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/