Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Wed, 18 Sep 2002 19:02:54 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Wed, 18 Sep 2002 19:02:54 -0400 Received: from smtpzilla5.xs4all.nl ([194.109.127.141]:12552 "EHLO smtpzilla5.xs4all.nl") by vger.kernel.org with ESMTP id ; Wed, 18 Sep 2002 19:02:53 -0400 Date: Thu, 19 Sep 2002 01:07:16 +0200 (CEST) From: Roman Zippel X-X-Sender: roman@serv To: Rusty Russell cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH] In-kernel module loader 3/7 In-Reply-To: <20020918021714.E9A292C13A@lists.samba.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 756 Lines: 26 Hi, On Wed, 18 Sep 2002, Rusty Russell wrote: > +/* Stopping interrupts faster than atomics on many archs (and more > + easily optimized if they're not) */ > +static inline void bigref_inc(struct bigref *ref) > +{ > + unsigned long flags; > + struct bigref_percpu *cpu; > + > + local_irq_save(flags); > + cpu = &ref->ref[smp_processor_id()]; > + if (likely(!cpu->slow_mode)) > + cpu->counter++; Did you benchmark this? On most UP machines an inc/dec should be cheaper than irq enable/disable. bye, Roman - 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/