Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S272584AbTHKOlZ (ORCPT ); Mon, 11 Aug 2003 10:41:25 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S272605AbTHKOlZ (ORCPT ); Mon, 11 Aug 2003 10:41:25 -0400 Received: from mx1.redhat.com ([66.187.233.31]:16912 "EHLO mx1.redhat.com") by vger.kernel.org with ESMTP id S272584AbTHKOlS (ORCPT ); Mon, 11 Aug 2003 10:41:18 -0400 To: "Richard B. Johnson" cc: David Woodhouse , Dinesh Gandhewar , mlist-linux-kernel@nntp-server.caltech.edu Subject: Re: volatile variable In-Reply-To: Message from "Richard B. Johnson" of "Mon, 11 Aug 2003 10:06:36 EDT." User-Agent: EMH/1.14.1 SEMI/1.14.4 (Hosorogi) FLIM/1.14.4 (=?ISO-8859-4?Q?Kashiharajing=FE-mae?=) APEL/10.4 Emacs/21.2 (i386-redhat-linux-gnu) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.4 - "Hosorogi") Content-Type: text/plain; charset=US-ASCII Date: Mon, 11 Aug 2003 15:40:45 +0100 Message-ID: <30059.1060612845@warthog.warthog> From: David Howells Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2172 Lines: 56 > > Just in case there are people reading this who don't realise that > > Richard is trolling -- do not ever use sleep_on() and friends. They > > _will_ introduce bugs, and hence they _will_ be removed from the kernel > > some time in the (hopefully not-so-distant) future. > > That's an excellent idea:-) It'd also be nice to sort out all the interruptible vs non-interruptible problems previously discussed. > The linux-2.4.20 contains 516 references to "sleep_on" in the > `drivers` tree. This is hardly a function or macro that will > be removed. That doesn't mean it won't be either - maybe in 2.7. > Any driver that makes its own 'sleep until' function is fundamentally > broken. Yes... they should call schedule() in the correct way to avoid races. > If course, older drivers do 'know' about schedule(), but that doesn't make > them correct. That doesn't make them incorrect, either. > > Again, this is incorrect. If you look at the declaration of schedule(), > you will note "asmlinkage void schedule(void);". Now look up > "asmlinkage" > #define asmlinkage CPP_ASMLINKAGE __attribute__((regparm(0))) That's just because schedule() needs to be called from assembly (entry.S). This merely nails the ABI in place for those functions that need to be called from assembly code, so that if someone decides they want to tell the C compiler to use more or less registers for argument passing, then they don't have to fix up all the .S files too. > The regparm(0) atttibute tells gcc that schedule() will get any/all > of its parameters in registers. No it doesn't. It says schedule() will get zero arguments in registers (on the i386 arch anyway). It does, however, mean that EAX, EDX and ECX will all be clobbered - probably. > Since schedule() receives no parameters, that means that, as far as gcc is > concerned, it cannot modify anything. No it doesn't. It just means schedule() takes no parameters. David - 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/