From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from elvis.franken.de (elvis.franken.de [193.175.24.41]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 757CF210192; Fri, 21 Mar 2025 09:38:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.175.24.41 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742549910; cv=none; b=DeECEZD6gYAlo24mf1bOd2JnmgdXu2jNSnmXZoJc8E3HStHfYyaxj9HGMXXmFJ/whzF1rO4dcl1vzm6uOFIclDC0wAFl1JJzbyHmcJTTjX4llET+BoCIn48RFIGdQkhdXeHHauvvERk0Bu2ASYwOZy2JzroiF65H2zdNZi48QJU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742549910; c=relaxed/simple; bh=1huO00OkX0Vakm7rr7rzZ8OBPfeAzXVRpl8jPbeH2ZA=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=TGOGMzbqkBvGCshiFhcS1uPeLrK9N75PC185NJdiq2dXfxcfetJVRdPFw6lXnoMMaCpzFyO1hQC/JVvBvg/1aBViam7YQqwUEVO9/OF9Ep9BJyMGNB6LSs+IiWI9MUW9akm5bo3uLjyTywLEurkMwcr5DvzQk9NF8MzW/IXr2dY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=alpha.franken.de; spf=pass smtp.mailfrom=alpha.franken.de; arc=none smtp.client-ip=193.175.24.41 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=alpha.franken.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=alpha.franken.de Received: from uucp by elvis.franken.de with local-rmail (Exim 3.36 #1) id 1tvYpU-0006y1-00; Fri, 21 Mar 2025 10:38:16 +0100 Received: by alpha.franken.de (Postfix, from userid 1000) id F2DD4C0135; Fri, 21 Mar 2025 10:38:01 +0100 (CET) Date: Fri, 21 Mar 2025 10:38:01 +0100 From: Thomas Bogendoerfer To: Marco Crivellari Cc: Frederic Weisbecker , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org, Anna-Maria Behnsen , Thomas Gleixner , Peter Zijlstra , Huacai Chen , "Maciej W . Rozycki" Subject: Re: [PATCH v6 1/1] MIPS: Fix idle VS timer enqueue Message-ID: References: <20250315194002.13778-1-marco.crivellari@suse.com> <20250315194002.13778-2-marco.crivellari@suse.com> Precedence: bulk X-Mailing-List: linux-mips@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Thu, Mar 20, 2025 at 09:44:23AM +0100, Marco Crivellari wrote: > Hi, > > yesterday I made this changes: > > @@ -128,7 +128,11 @@ LEAF(__r4k_wait) > */ > wait > /* End of idle interrupt region. */ > -1: > +SYM_INNER_LABEL(__r4k_wait_exit, SYM_L_LOCAL) do we really need that for a symbol local to that file ? > + /* Check idle interrupt region size. */ > + .ifne __r4k_wait_exit - __r4k_wait - 36 I have to say, that I prefer my .if statement, since this clearly spells out the comparision in the expression. Is there a reason for your version ? Thomas. -- Crap can work. Given enough thrust pigs will fly, but it's not necessarily a good idea. [ RFC1925, 2.3 ]