From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id ABF011B2508 for ; Thu, 29 Aug 2024 15:17:10 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.142.43.55 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724944633; cv=none; b=pwuPk9gxN5ktbKoUU2F+FgVFgCHZAVcTOhoohk6MG0LGRZc/bviDOfmMqIAP70upBGtmNI4GtxHrGd7HuM/DklcxyeycfrbfCyb0kWllzE0IM45sxRstGNLar/5Cb4TlLGnbPTfTOw3UNfsBWQRIO9f+pTpPNRdwA3EQ0vFWfaY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724944633; c=relaxed/simple; bh=E1ThtY7dYkz8jhMBtVJkhGk28p5kUWPz/84rkilNeRE=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=l77N21pq+PDP9db5r8vEcws/NCz1fI/O4bne+qZy/KEElSovCXyTrEfubqVH1SVp7a3fQC97H3Lpy9csTNIGW9BNsOPdn/m098ikFQn+8L91a0ZA9p221nSDSIXJH8ymWPj1WDHwfbLgxs4THdmk40B//FgW2/viJeCNc/eQ0GU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de; spf=pass smtp.mailfrom=linutronix.de; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=IieZnOf3; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=QE343aTR; arc=none smtp.client-ip=193.142.43.55 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linutronix.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="IieZnOf3"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="QE343aTR" From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1724944628; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=+HIWJdTm6Lg4JwEr6FBxLaoN1ehx3bxzT6MJWYZ/9WI=; b=IieZnOf33G56CRuFt+PGA/WEUnBl76T45Duhtognam+/oWI3VA8s70Tp74ECQkWdkzPsxj kLyUqeetdV/V0a4gALCXTnk7BjYdDGGqmyz988V2b9cvnO40bBm9H7m5R6pSNBZFdykIFJ v7k8bjLYildbJpdcKdIl1CyAQoMgKreMI4zpNo5PdpVLS+X1yvD5LIjnzsQ1U+xQ1SQgfr cQXBV2yTGAd8lWGBp7+y5ERjFrZrlKWf26A3pb5Ro9p0AKT7bsJKxH6kxzYXAGrEe5I+0D GYZd9BAYDCPSWpVD7r5r+dM+yJAvwWfkadlY/9dlnuAj7nF26HaDLocQmqbxNQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1724944629; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=+HIWJdTm6Lg4JwEr6FBxLaoN1ehx3bxzT6MJWYZ/9WI=; b=QE343aTRr+EL2dhzFMrHfyv+lg+8EResQ+24XoGT4pfxuY9STennHp7GYlX1uwgIbl46wL Gq97BfF7+AsfqMDA== To: Yuesong Li , anna-maria@linutronix.de, frederic@kernel.org Cc: linux-kernel@vger.kernel.org, opensource.kernel@vivo.com, Yuesong Li Subject: Re: [PATCH v1] kernel:time:hrtimer: Use helper function hrtimer_is_queued() In-Reply-To: <20240821094633.161298-1-liyuesong@vivo.com> References: <20240821094633.161298-1-liyuesong@vivo.com> Date: Thu, 29 Aug 2024 17:17:08 +0200 Message-ID: <874j739x57.ffs@tglx> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain On Wed, Aug 21 2024 at 17:46, Yuesong Li wrote: Please add a proper subsystem prefix to the subject. git log --oneline $FILE gives you a decent hint > The helper function hrtimer_is_queued() checks whether the timer is > on one of the queues. Replace the raw check. Why? What's the benefit of this change? Thanks, tglx