Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 5 Aug 2002 17:32:07 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 5 Aug 2002 17:32:07 -0400 Received: from ns.suse.de ([213.95.15.193]:15627 "EHLO Cantor.suse.de") by vger.kernel.org with ESMTP id ; Mon, 5 Aug 2002 17:32:06 -0400 Date: Mon, 5 Aug 2002 23:35:42 +0200 From: Andi Kleen To: Jamie Lokier Cc: Andi Kleen , Linus Torvalds , linux-kernel@vger.kernel.org Subject: Re: context switch vs. signal delivery [was: Re: Accelerating user mode linux] Message-ID: <20020805233542.A12753@wotan.suse.de> References: <20020805163910.C7130@kushida.apsleyroad.org.suse.lists.linux.kernel> <20020805223006.A8773@kushida.apsleyroad.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020805223006.A8773@kushida.apsleyroad.org> User-Agent: Mutt/1.3.22.1i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1148 Lines: 28 On Mon, Aug 05, 2002 at 10:30:06PM +0100, Jamie Lokier wrote: > Andi Kleen wrote: > > + err |= setup_sigcontext(&frame->sc, &frame->fpstate, regs, set->sig[0], > > + (ka->sa.sa_flags&SA_NOFP)); > > > err |= setup_sigcontext(&frame->uc.uc_mcontext, &frame->fpstate, > > - regs, set->sig[0]); > > + regs, set->sig[0], !!(ka->sa.sa_flags&SA_NOFP)); > > 1: Why the inconsistency between the two ways the SA_NOFP flag is checked? I don't remember. Probably there was some reason in an earlier version of the code. The !! could be probably removed now. > > 2: What happens when the user's signal handler decides it wants to save > the FPU state itself (after all) and proceed with some FPU use. Will > sigreturn restore the user-saved FPU state? Just curious. Nope it won't because there is no saved state. The previous context's FPU state will be silently corrupted. -Andi - 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/